ID:174866
 
well i have a battle code that when you enter you are set off center from the screen because i set a lazy_eye and i use this code:
src.Move(get_step(src,EAST|NORTH))
src.Move(get_step(src,EAST))
src.Move(get_step(src,EAST))
src.Move(get_step(src,EAST))
src.Move(get_step(src,EAST))
src.Move(get_step(src,EAST))

is there anyway to make that code a little more simple and still do the same thing?
src.Move(get_step(src,EAST|NORTH))
for(var/i=1,i<=5,i++)
src.Move(get_step(src,EAST))