Re: Diffrent Event from Same Key
Ok. My game is a side scrolling game. As for directions, you use the arrows to move left and right. to attack just turn the direction you want to attack and attack. 
Game Editor discussion board
http://game-editor.com/forum/
if (ready==1)
{
//put code here
}if (sword==0)
{
sword=1;
ChangeAnimation("Event Actor", "standsword", FORWARD);
}
if (sword==1)
{
sword=0;
ChangeAnimation("Event Actor", "stand", FORWARD);
}if (ready==1)
{
if (sword==0)
{
sword=1;
ready=0;
ChangeAnimation("Event Actor", "swordanim", FORWARD);
}
if (sword==1)
{
sword=0;
ready=0;
ChangeAnimation("Event Actor", "standanim", FORWARD);
}
}