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!
Yes, certainly. I'm not familiar with that resource, but after a quick look, I think you'll need to open Plugins/Voltseon's Pause Menu/005_VoltseonMenu_Entries.rb and paste this block of code at the bottom of that script:
Ruby:
#-------------------------------------------------------------------------------
# Entry for MQS
#-------------------------------------------------------------------------------
class MenuEntryQuests < MenuEntry
def initialize
@icon = "menuDebug"
@name = "Quests"
end
def selected(menu)
pbFadeOutIn {
pbViewQuests
}
end
def selectable?; return hasAnyQuests?; end
end
I think you'll also need to open 001_VoltseonMenu_Config.rb and add "MenuEntryQuests" into the MENU_ENTRIES array starting around line 24.
There might be other things you need to change, but see what happens with these changes first.
I'm using the v20.1 version, and for some reason the text is higher than the UI
https://*/486314019930767383/1242485524787363950/image.png?ex=664e0251&is=664cb0d1&hm=1c8fb43f9d3d79a98b803a441f39d79843fe361efc55006d261166fd6a3206b2&
I'm using the v20.1 version, and for some reason the text is higher than the UI
https://*/486314019930767383/1242485524787363950/image.png?ex=664e0251&is=664cb0d1&hm=1c8fb43f9d3d79a98b803a441f39d79843fe361efc55006d261166fd6a3206b2&
Sorry for the slow reply. Not been as active here since the relaunch.
From memory, v21 changed some of the default text positions, so if you're on an older version, you'll need to download the appropriate version of this resource. You can find a link to v20 and v19 downloads on the Overview page.
when i put this
module QuestModule
:Quest1 ={
:ID => "1",
:Name => "Introductions",
:QuestGiver => "Guy",
:Stage1 => "Go to route 1.",
:Location1 => "players house",
:QuestDescription => "go to route 1 quickly.",
:RewardString => "Something shiny!"
}
i get an error
when i put this
module QuestModule
:Quest1 ={
:ID => "1",
:Name => "Introductions",
:QuestGiver => "Guy",
:Stage1 => "Go to route 1.",
:Location1 => "players house",
:QuestDescription => "go to route 1 quickly.",
:RewardString => "Something shiny!"
}
i get an error
I tried to add a new page before the quest that showed another text, giving more information about the quest after it was completed, I tried to do this to make the main quests tell the story all the time, so the player doesn't get lost, but unfortunately I tried a few times and didn't succeed, so this is just a suggestion :D
I downloaded this plugin, pasted the script into UI_PauseMenu, started a new file and I can't get the quest page to show in the menu. I also downloaded the encounters plug in and it works fine. Not sure what I am doing wrong.
I just started using this plugin and it works great! Just one minor thing and I'm sorry if this has already been answered, I'm also using Voltseon's Pause Menu and whenever you get a new quest or update, but don't check the quest in the menu, and then go to save, the game crashes. This is the error I get:
[Pokémon Essentials version 20.1]
[v20.1 Hotfixes 1.0.7]
Exception: NoMethodError
Message: undefined method `y' for nil:NilClass
Is there a way to make it so the quest updates silently? Or to make certain quests update silently? I love the UI and system, but I don't need the message and noise every single time a player completes something.
Yes, certainly. I'm not familiar with that resource, but after a quick look, I think you'll need to open Plugins/Voltseon's Pause Menu/005_VoltseonMenu_Entries.rb and paste this block of code at the bottom of that script:
Ruby:
#-------------------------------------------------------------------------------
# Entry for MQS
#-------------------------------------------------------------------------------
class MenuEntryQuests < MenuEntry
def initialize
@icon = "menuDebug"
@name = "Quests"
end
def selected(menu)
pbFadeOutIn {
pbViewQuests
}
end
def selectable?; return hasAnyQuests?; end
end
I think you'll also need to open 001_VoltseonMenu_Config.rb and add "MenuEntryQuests" into the MENU_ENTRIES array starting around line 24.
There might be other things you need to change, but see what happens with these changes first.
Hello! sorry I'm new to all this and scripting! This is from about 5 years ago and the pause menu plugin has been updated. Theres no Voltseon's Pause Menu/005_VoltseonMenu_Entries.rb anymore? Any chance you would know how to add it to his current version.
Hello! sorry I'm new to all this and scripting! This is from about 5 years ago and the pause menu plugin has been updated. Theres no Voltseon's Pause Menu/005_VoltseonMenu_Entries.rb anymore? Any chance you would know how to add it to his current version.
The updated Voltseon pause menu uses the regular menu handlers now (the ones you use to add it to the vanilla pause menu). You can add the menu handler shown in the Overview for this resource.
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.