hey, im trying to change the direction an event is facing depending on which way it is currently facing, through looking through the interpreter i found out how to change its direction, but i can find any method to check what direction it is curently facing, im trying to achieve this in the interpreter class under a new call: heres what i have so far:
class Interpreter
def respawn_wait
if $game_party.randomizer > 0
character = get_character(0)
if #character is facing down
character.turn_left
else
character.turn_up
end
@wait_count = $game_party.randomizer
end
end
end
so ye i need to replace #character is facing down with something that checks the direction