Hello, things were going fine in my project until I started getting an error while compiling.
Inside the oMartialArtist object create event I have this code.
Inaccurate Compiler Error
Object: oMartialArtist_PreCreate at line 3 : Assignment operator expected
Inside the oMartialArtist object create event I have this code.
GML:
// Variables for movement
move_speed = 2; // Speed of movement
image_speed = 0.1; // Slower speed of the animation
is_moving = false; // Indicates if the character is moving
// Initialize health variables
max_health = 100; // Maximum...