I am using this script that i didn't made that makes you call a script by pressing a button.I'm using it with leon's mission/quest script and before i updated to the last version it didn't gave me errors now it gives me an error that's this:
On line 5:NameError occurred.
uninitialized constance Scene_Map::Scene_MissionMenu
And here's the little piece of script:
On line 5:NameError occurred.
uninitialized constance Scene_Map::Scene_MissionMenu
And here's the little piece of script:
Code:
class Scene_Map
alias quests_update update
def update
if Input.trigger?(Input::L)
$scene = Scene_MissionMenu.new
return
end
quests_update
end
end