04-11-2010, 03:43 AM 
	
	
	
		Whenever you see a block of code in a 'class', it is referred to as a method.
You showed the initialize method in Game_Event. It calls forth the moveto method as it should.
So, I have a couple questions. Are you using a new script? Are you directly editing the scripts in your project? and Did you delete/change the moveto method in Game_Event?
	
	
	
	
Code:
class My_Example
  def my_method(variable)
    statement in the method
    statement in the method
    statement in the method
  end
endYou showed the initialize method in Game_Event. It calls forth the moveto method as it should.
So, I have a couple questions. Are you using a new script? Are you directly editing the scripts in your project? and Did you delete/change the moveto method in Game_Event?

