Ohh... I did exactly what it said and it looks bad XD Is there any other part to it? Anyways, here's what needs to be done:
Destroy your lines of Get Battle X and Get Battle Y. Add this:
#--------------------------------------------------------------------------
# * Get Battle Screen X-Coordinate
#--------------------------------------------------------------------------
def screen_x
# Return after calculating x-coordinate by order of members in party
if self.index != nil
return self.index * 40 + 50
else
return 0
end
end
#--------------------------------------------------------------------------
# * Get Battle Screen Y-Coordinate
#--------------------------------------------------------------------------
def screen_y
if self.index != nil
return self.index * 40 + 180
else
return 0
end
end
You needed to repaste everything from X-Coordinate (except the def screen_x) over what was in screen_y.