Hiya im getting this error and im not sure how to correct it. Normally im decent at trouble shooting but this message has me stumped.
Script 'Scene_Title and Actor mods' line 12: NameError occurred
uninitialized constant Scene_Title::Game_temp
This is the code that gives the error.
Script 'Scene_Title and Actor mods' line 12: NameError occurred
uninitialized constant Scene_Title::Game_temp
This is the code that gives the error.
Code:
class Scene_Title
#--------------------------------------------------------------------------
# * Main Database
#--------------------------------------------------------------------------
alias dkos_main_database main_database
def main_database
dkos_main_database
if FileTest.exist?("Data/Actors2.rxdata") && $DEBUG
# If it is not already constructed you need to create the $game_temp-object, as the interpreter needs this when running
$game_Temp = Game_temp.new
myInterpreter = Interpreter.new
# Setup a commen event (Here with the id 1 you can change this number
# to whatever the id of the event, you want to be executed, is)
myInterpreter.setup($data_common_events[1], 0)
# Run the interpreter
myInterpreter.update
end
$data_actors.each {|actor| actor.setup_stats if actor != nil}
end
end