Desbrina Member 105 Jun 18, 2010 #1 How do you go about checking what direction the player is currently facing? Something like If facing up do item1 else if facing down do item2 etc. etc. Thanks
How do you go about checking what direction the player is currently facing? Something like If facing up do item1 else if facing down do item2 etc. etc. Thanks
LaDestitute Member 828 Jun 18, 2010 #2 I think an option for that is in conditional branches. Upvote 0 Downvote
Desbrina Member 105 Jun 18, 2010 #3 there is, but i require this in a script format to use within an existing script Upvote 0 Downvote
Glitchfinder Staff 1,504 Jun 18, 2010 #4 Try using $game_player.direction. The directions are as follows: 2 = down, 4 = left, 6 = right, and 8 = up. Upvote 0 Downvote
Try using $game_player.direction. The directions are as follows: 2 = down, 4 = left, 6 = right, and 8 = up.