Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Do not use Discord to host any images you post, these links expire quickly! You can learn how to add images to your posts here.
The Eevee Expo Game Jam has concluded! 🎉 Head on over to the game jam forum to play through the games. Don't forget to come back September 21st to vote for your favorites!
Reminder: AI-generated content is not allowed on the forums per the Rules and Regulations. Please contact us if you have any questions!
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.