So I'm trying to insert an additional option into the Options menu, but it isn't working and I really am not sure why. I simply deleted the begin and end comment lines and replaced the placeholder text with the text i need, and this error comes up:
----
Script 'Ryex's Collapsing CMS' NameError occurred.
uninitialized constant RyexCFG::RyexCMS
----
PLUGINS = []
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Do you have a scene or menu that you want to link to the option menu?
# A plug-in perhaps? To add an option on the option menu that
# will call your scene simply use this format.
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
if $RyexCOLCMS
desc = 'Beastiary'
RyexCFG::PLUGINS.push(RyexCMS::Plugin.new('Beastiary', desc) do
$scene = scene_beastairy.new
end
) #don't forget this line
end
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# its that simple
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
I've tried screwing around with it, putting it after the cms script in the script editor as its own thing, and still no luck. It doesn't help that I really don't know the scripting language either. I can piece stuff together, but yeah, I can't figure this one out.
(sorry if this post is out of date / necroposting, but i couldn't find a recent one)