Page 1 of 1

script problem... or glitch

PostPosted: Sun Aug 22, 2010 9:02 pm
by vbgeel
Im trying to make a character move, and i have the scripts, but whenever i try to move the character right he still moves left...

x=x-8;ChangeAnimation("Event Actor", "left", FORWARD);
x=x-8;ChangeAnimation("Event Actor" , "right",FORWARD); ---------- this one
y=y-8;ChangeAnimation("Event Actor", "up", FORWARD);
y=y+8;ChangeAnimation("Event Actor", "down", FORWARD);

i have made sure that the scripts are in the right place over and over again but the right one just never seems to work. is there anything wrong with it? or does anyone have another script like this i can use?

Re: script problem... or glitch

PostPosted: Sun Aug 22, 2010 9:41 pm
by DST
x-8 is left. that's what you have there.
why don't you try x+8? that would be right.

human glitch.