|
Post by unknownguy on Jun 30, 2004 19:29:19 GMT -5
What I mean is that I want to make object1 be able to swing his sword from the top,left,bottom, and right. And I would also like to know how you could move from room to room (with the presistent box checked) without the two rooms flashing like crazy.
|
|
|
Post by Xenith on Jul 1, 2004 14:17:29 GMT -5
(create event) global.hero_direction = "down"
(left button) x- = 4 global.hero_direction = "left"
(right button) x+= 4 global.hero_direction = "right"
(up button) y-= 4 global.hero_direction = "up"
(down button) y+= 4 global.hero_direction = "down"
that's for all his movement i'll tell you the rest when you tell me how he attacks
this movement code should work
|
|
|
Post by dwmitch on Jul 3, 2004 2:38:15 GMT -5
If you can hold out for a few days I should have a tutorial up. Check back after the 4th and I'll edit with the link.
|
|