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.
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.
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.