COOLKID575'S PROFILE

Hey guys! I'm just a normal guy who likes RPG Maker!

Search

Filter

Slip into Ruby part 2 - Making a Scene

author=Trihan
When you say "this isn't working" what's not happening that should, or happening that shouldn't?


I'm not OP but I have a similar problem. When I put in:

class Scene_Bestiary < Scene_MenuBase

def start
super
end
end



Upon opening the project: it said: TypeError occurred, undefined superclass "Scene_MenuBase". I'm using XP instead of VX Ace so I figured this was a compatibility error, I looked around in the other default scripts and figured Scene_Menu was basically the same thing, so I put in:

class Scene_Bestiary < Scene_Menu

def start
super
end
end


However now when I run SceneManager.call(Scene_Bestiary) it says: NameError occurred while running script. Uninitialized constant Interpreter::Scene_Manager. I figure it's another compatibility error but I can't for the life of me figure out what's wrong.
Pages: 1