Excuse me while i go change my pants....
nice work Question..
so if i wanted to use this i enable how? lol
CUSTOM_OPTION_SCENE = nil
=begin # if you want to use deleat this line
CUSTOM_OPTION_SCENE = Proc.new do
$scene = <insert scene class name here>.new # complete this line
end
=end # and deleate this line
i would...
CUSTOM_OPTION_SCENE = nil
CUSTOM_OPTION_SCENE = Proc.new do
$scene = <insert scene class name here>.new # complete this line [ with what? ]
end
and im quessing its not compatible with AMS because its not showing up at all
looks great if i can figure it out
also i was woundering how the plugin works?
if $RyexCOLCMS
desc = '<insert description of the plugin to be displayed in the help window here>'
RyexCFG::PLUGINS.push(RyexCMS::Plugin.new('<name of plugin>', desc) do
$Scene = <scene you want to call>.new
end
) #don't forget this line
end
im useing game_guy's item storage script and wanted to use your background for it when i open a chest would i....
if $RyexCOLCMS
desc = '<chest>'
RyexCFG::PLUGINS.push(RyexCMS::Plugin.
new('<name of plugin>', desc) do
$Scene = Scene_Chest.new(10)
end )
end
in a script in an event to do so? or is that not posible?