okay, it looks like you have an old version of the engine, without a few bug fixes that have been released.
Here are the changes you need to make to your scripts:
In Game_Interpreter, from line 913, you have this code:
#-------------------------------------------------------------------------- # * Screen Shake #-------------------------------------------------------------------------- def command_225 screen.start_shake(@params[0], @params[1], @params[2]) wait(@params[1]) if @params[2] endEdit: grrrr ... majority of post cut off ... let's try this again
change the above to this:
#-------------------------------------------------------------------------- # * Screen Shake #-------------------------------------------------------------------------- def command_225 screen.start_shake(@params[0], @params[1], @params[2]) wait(@params[2]) if @params[3] endIn Game_Picture, from line 111, change this:
#-------------------------------------------------------------------------- # * Erase Picture #-------------------------------------------------------------------------- def erase @name = "" endto this:
Code: #-------------------------------------------------------------------------- # * Erase Picture #-------------------------------------------------------------------------- def erase @name = "" @origin = 0 end
and in Game_System, from line 34, change this:
Code: #-------------------------------------------------------------------------- # * Determine if Japanese Mode #-------------------------------------------------------------------------- def japanese? $data_system.japanese end
to this:
Code: #-------------------------------------------------------------------------- # * Determine if Japanese Mode #-------------------------------------------------------------------------- def japanese? #$data_system.japanese return false end