Here's how to get it to work in the default Pokégear.I use the Modular Pause menu v.19.1 How do I get it going? I would also use it in Pokegear, but I don't know how I have to change it in UI Pokegear. I ask for help.
Go to the UI_Pokegear script.
Find this line:
cmdJukebox = -1
Paste this on a new line below it:
cmdQuests = -1
Then, find this line:
commands[cmdJukebox = commands.length] = ["jukebox",_INTL("Jukebox")]
Paste this on a new line below it:
commands[cmdQuests = commands.length] = ["quests",_INTL("Quests")]
Finally, find this chunk:
Ruby:
elsif cmdJukebox>=0 && cmd==cmdJukebox
pbFadeOutIn {
scene = PokemonJukebox_Scene.new
screen = PokemonJukeboxScreen.new(scene)
screen.pbStartScreen
}
Ruby:
elsif cmdQuests>=0 && cmd==cmdQuests
pbFadeOutIn {
pbViewQuests
}
You'll need to create an icon called icon_quests.png in Graphics/Pictures/Pokegear as well.
I hope this helps!