where are you typing it? and what error? Always give FULL details when something happens...
does it run on Scene_Menu? if yes then maybe something like this
class Scene_Menu < Scene_MenuBase def command_summon $game_temp.reserve_common_event(8) endendyou need to put it inside a method (def) of course
Ok that's what I was talking about, me needing.
However It's bringing up a error, heres how the whole script is laid out:
CommandManager.register

summons,

arty_menu)
class MenuCommand_Summons < Game_Command
def enabled?(party)
$game_switches[15]
end
end
class Game_Party < Game_Unit
def add_menu_command_summons(args)
cmd = MenuCommand_Summons.new("Summons", :summons)
add_menu_command(cmd)
end
def
class Scene_Menu < Scene_MenuBase
def command_summons
$game_temp.reserve_common_event(8)
end
end
Nevermind, I found a typo