04-12-2010, 03:21 AM
Hey, spazfire. I got your demo. Wow... big.
Check the name of your Game_Character classes. I am afraid that you had inadvertently renamed the first one:
See?
It just so happens that THIS class holds the moveto method you lost. Rename the class back to Game_Character and it should be fine
Check the name of your Game_Character classes. I am afraid that you had inadvertently renamed the first one:
Code:
#==============================================================================
# ** Game_Character (part 1)
#------------------------------------------------------------------------------
# This class deals with characters. It's used as a superclass for the
# Game_Player and Game_Event classes.
#==============================================================================
class Shota
#--------------------------------------------------------------------------
# * Public Instance Variables
#--------------------------------------------------------------------------
attr_reader :id # ID
attr_reader :x # map x-coordinate (logical)
It just so happens that THIS class holds the moveto method you lost. Rename the class back to Game_Character and it should be fine