Game over screen error

● ARCHIVED · READ-ONLY
Started by takethat234 5 posts View original ↗
  1. So I've been playtesting my game and when I get a game over this error shows up, how can i fix this error?

    Untitled.jpg
  2. Others are a good bit more knowledgeable than I, but it would seem like this error is from a script you are using named battle manager, and the error is from line 251 of that script. Could you post that line for people to troubleshoot?
  3. BattleManager is a default script. Line 251 is the call for the GameOver screen from inside battles... It seems you might have edited the actual script or accidentally removed the script for Scene_GameOver which is why now it tries to find Scene_GameOver as a member of BattleManager...


    My first suggestion would be to browse your scripts and see if you still have the script for Scene_GameOver.
  4. I've moved this thread to RGSSx Script Support. Please be sure to post your threads in the correct forum next time. Thank you.
  5. Engr. Adiktuzmiko said:
    BattleManager is a default script. Line 251 is the call for the GameOver screen from inside battles... It seems you might have edited the actual script or accidentally removed the script for Scene_GameOver which is why now it tries to find Scene_GameOver as a member of BattleManager...

    My first suggestion would be to browse your scripts and see if you still have the script for Scene_GameOver.
    Yeah this was apparently the problem, thank you!