update fixed small error with the y to fix it
replace
def pos
x, y = self.position
x = ( x + $game_map.display_x / 4) / 32
y = ( y + $game_map.display_x / 4) / 32
return x, y
end
with this
def pos
x, y = self.position
x = ( x + $game_map.display_x / 4) / 32
y = ( y + $game_map.display_y / 4) / 32
return x, y
end
edit: I made it with Blizz-ABS ver 2.57 i am not sure y it wouldn't be working for you ?
edit 2: Are you getting an error message or is it just not working ?
edit 3: Fixed where if you were to click the mouse for the message window the player would move