• 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!
Resource icon

Resource Pokedex Tasks 1.1.0

Thank you for getting back so quickly. But yeah, this is a new essential with few new plug-ins that were working beforehand with the Modular UI and Pokedex Data Page so I made sure to set the order number to 50. As well as uncomment it in the PokeDex Handlers, also just deleted saved game file (no biggie cause I'm trying to knock out core mechanics of the game before pressing toward the game itself). I believe I'm still gettting the same error but I'll copy the whole error report. I also didn't set anything up in the PBS file but I did paste the files in its corresponding folders.

[Pokémon Essentials version 21.1]
[v21.1 Hotfixes 1.0.9]

Exception: NoMethodError
Message: undefined method `name' for nil:NilClass

Backtrace:
[Pokedex Tasks] [003] Pokedex.rb:50:in `block in setup_all_tasks'
[Pokedex Tasks] [003] Pokedex.rb:48:in `each'
[Pokedex Tasks] [003] Pokedex.rb:48:in `setup_all_tasks'
[Pokedex Tasks] [003] Pokedex.rb:43:in `clear'
Player_Pokedex:20:in `initialize'
Player:47:in `new'
Player:47:in `initialize'
UI_PurifyChamber:10:in `initialize'
[BadgeCase] Badgecase_Main.rb:188:in `initialize'
Game_SaveValues:7:in `new'
 
Thank you for getting back so quickly. But yeah, this is a new essential with few new plug-ins that were working beforehand with the Modular UI and Pokedex Data Page so I made sure to set the order number to 50. As well as uncomment it in the PokeDex Handlers, also just deleted saved game file (no biggie cause I'm trying to knock out core mechanics of the game before pressing toward the game itself). I believe I'm still gettting the same error but I'll copy the whole error report. I also didn't set anything up in the PBS file but I did paste the files in its corresponding folders.

[Pokémon Essentials version 21.1]
[v21.1 Hotfixes 1.0.9]

Exception: NoMethodError
Message: undefined method `name' for nil:NilClass

Backtrace:
[Pokedex Tasks] [003] Pokedex.rb:50:in `block in setup_all_tasks'
[Pokedex Tasks] [003] Pokedex.rb:48:in `each'
[Pokedex Tasks] [003] Pokedex.rb:48:in `setup_all_tasks'
[Pokedex Tasks] [003] Pokedex.rb:43:in `clear'
Player_Pokedex:20:in `initialize'
Player:47:in `new'
Player:47:in `initialize'
UI_PurifyChamber:10:in `initialize'
[BadgeCase] Badgecase_Main.rb:188:in `initialize'
Game_SaveValues:7:in `new'
for some reasons, it don't work properly with Data Page, as it wans't made to be compatible in mind, sofor now,you have to chose wich one you want, you can't have both until further update that grants compatibility
 
for some reasons, it don't work properly with Data Page, as it wans't made to be compatible in mind, sofor now,you have to chose wich one you want, you can't have both until further update that grants compatibility
Alrighty dang be awesome if can get these 2 compatible. Thank you for fast response greatly appreciate it and the work you guys are doing to make these even a thought.
 
It should be compatible with the Data page. In fact, I did specific bugfixes for Data page compatibility.

I'll try to replicate the error and solve it when I can.
As far as I can see, no. When the Data Page is active, the navigation buttons no longer work and the only way to change pages is to press Back, besides the Data Page will show all the information anyway.
 
Like I said, my version of the plugin fixes that bug. It was one of the bugs that inspired me to update the plugin, so it should be working. Are you sure you're using 2.0?

If you're using 2.0, let me know and I'll take a look. As far as I tested, the navigation on the new data page works fine.
this is v2.0, I double-checked the navigation buttons to be sure

--

edit: yeah, can confirm that the buttons don't work on v2.0 even after starting a new save, and the Pokemon sprite on Pokedex from Dex Entry page dissapears too.
 
Last edited:
Oh, do you mean the Tasks page? The Data page still works perfectly fine for me - it's the Tasks page that has the issue with left/right navigation and only being able to hit the back button to exit. Up/down navigation still works (to scroll through the task list) but yeah other navigation is broken.

To fix the Tasks page navigation add this code to [001] Pokedex Tasks.rb, after line 232 (the 'end' in the "# Handle exiting the Task page or navigating to another page" block.)
if Input.repeat?(Input::LEFT)
oldpage = @page
numpages = @page_list.length
@page -= 1
@page = numpages if @page < 1
@page = 1 if @page > numpages
if @page != oldpage
pbPlayCursorSE
dorefresh = true
end
elsif Input.repeat?(Input::RIGHT)
oldpage = @page
numpages = @page_list.length
@page += 1
@page = numpages if @page < 1
@page = 1 if @page > numpages
if @page != oldpage
pbPlayCursorSE
dorefresh = true
end
end

If you're getting this issue on the Data page, unfortunately I can't replicate it so I can't help. Sorry.

"and the Pokemon sprite on Pokedex from Dex Entry page dissapears too."

This is probably a side effect of the "unlocking more of the entry as task progression increases" feature wrigty12 helped add in. I probably messed something up in the flow, since sprites shouldn't be hidden.
the issue is only on Task Page with broken navigation buttons, the Data Page is fine, but imma test and see if works, but yeah, the sprite being hidden is a little strange since they appear on the every other Pokedex Page and not on the Entry Page

--

edit; yeah, works now, the only issue is the sprite being hidden
 
Last edited:
No, I haven't added gen 9 pack, I have other plug-ins that may affect it?. Only when I click on new game after deleting my save file it pops up. I don't know if it helps but I'll let you what other plugins I have maybe it'll help identify what it may be?

Deluxe Battle Kit, Modular UI Scenes, Enhanced Pokemon UI, Pokedex Data Page, B2W2 Bag, Badge Case, BW Key Items, BW Mart Screen, BW Storage System, BW Summary Screen, Essentials Pokegear Watch, Essentials Selection, Move Releaner, Level Based Mixed EV System, Rename Nickname from Party, Type Icons in Battle, 21.1 Hotfixes, Voltseon Pause Menu
 
I'm running into a strange glitch. I can't access the task page at all. I know the pluggin is working, since I see the research not complete text, but there's no way to ask the task page.
 
Back
Top