Sure, you have to add this to the end of 005_VoltseonMenu_Entries.rb :
Entry for Pokemon Adventures by BluMasc:
#-------------------------------------------------------------------------------
# Entry for Pokemon Adventures by BluMasc
#-------------------------------------------------------------------------------
class MenuEntryAdventures < MenuEntry
def initialize
@icon = "menuAdventure"
@name = "Adventure"
end
def selected(menu); pbStartAdventureMenu; end
def selectable?; return defined?(pbStartAdventureMenu); end
end
Then add "MenuEntryAdventures" to MENU_ENTRIES in 001_VoltseonMenu_Config.rb
that should work.
Edit: You should also put an image called menuAdventure.png in the Voltseons Pause Menu graphics folder. I use the attatche
#-------------------------------------------------------------------------------
# Entry for Pokemon Adventures by BluMasc
#-------------------------------------------------------------------------------
class MenuEntryAdventures < MenuEntry
def initialize
@icon = "menuAdventure"
@name = "Adventure"
end
def selected(menu); pbStartAdventureMenu; end
def selectable?; return defined?(pbStartAdventureMenu) && $game_switches[55]; end
end
Add this & statement in the marked line and edit the number to the switch you want to use to activate the menu
#-------------------------------------------------------------------------------
# Entry for Pokemon Adventures by BluMasc
#-------------------------------------------------------------------------------
class MenuEntryAdventures < MenuEntry
def initialize
@icon = "menuAdventure"
@name = "Adventure"
end
def selected(menu); pbStartAdventureMenu; end
def selectable?; return defined?(pbStartAdventureMenu) && $game_switches[55]; end
end
Add this & statement in the marked line and edit the number to the switch you want to use to activate the menu
This section is for the discussion of the tutorials and resources on Eevee Expo. To find tutorials and resources, check out the Tutorial and Resource Manager for optimal navigation.