So, I have made this demo of saving and loading game... so
I hope it helps
Move your actor with arrows.
Here is file:
Enjoy

char* key=GetKeyState(); // Allows keyboard interaction (key[KEY_<your key here>]) is either 1 or 0
if (canjump==1) // if actor is on the ground
{
if (key[KEY_LEFT] == 0 && key[KEY_RIGHT] == 1) // If only right is pressed (allow for walking, so change animation)
{
ChangeAnimation("Event Actor", "WalkRight", FORWARD); // Because only right is pressed, change to walking
}
else if (key[KEY_LEFT] == 1 && key[KEY_RIGHT] == 1) // If both right and left (don't allow for walking, stand animation)
{
ChangeAnimation("Event Actor", "Right", FORWARD); // Because both are pressed
}
}
right=1; // right
char* key=GetKeyState();
if (canjump==1)
{
if (key[KEY_LEFT] == 1 && key[KEY_RIGHT] == 0)
{
ChangeAnimation("Event Actor", "WalkLeft", FORWARD);
}
else if (key[KEY_LEFT] == 1 && key[KEY_RIGHT] == 1)
{
ChangeAnimation("Event Actor", "Left", FORWARD);
}
}
direction=0; // left
char* key=GetKeyState();
if (canjump==1)
{
if (key[KEY_LEFT] == 1 && key[KEY_RIGHT] == 0) // If left is still pressed, walk left
{
ChangeAnimation("Event Actor", "WalkLeft", FORWARD);
}
else if (key[KEY_LEFT] == 0 && key[KEY_RIGHT] ==0) // As left and right are not pressed, set it to stand
{
ChangeAnimation)"Event Actor", "Right", FORWARD);
}
}
char* key=GetKeyState();
if (canjump==1)
{
if (key[KEY_LEFT] == 0 && key[KEY_RIGHT] == 1)
{
ChangeAnimation("Event Actor", "WalkRight", FORWARD);
}
else if (key[KEY_LEFT] == 0 && key[KEY_RIGHT] == 0)
{
ChangeAnimation)"Event Actor", "Left", FORWARD);
}
}
char* key=GetKeyState();
if (key[KEY_LEFT] == 1 && key[KEY_RIGHT] == 0) // Only left
{
x- = 2; // Move left
}
if (key[KEY_LEFT] == 0 && key[KEY_RIGHT] == 1) // Only right
{
x+= 2; // Move right
}
yvelocity+=9; // Because this is the draw actor script, nothing to do with moonwalking
if (attack==0)
if(respect.textNumber == 9)
{
Event Enable...
Change Animatio....
}
Users browsing this forum: No registered users and 1 guest