• 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 Random Wonder Trade From PC V1.1

drdoom76

Cooltrainer
Member
Joined
Aug 1, 2023
Posts
237
drdoom76 submitted a new resource:

Random Wonder Trade From PC - A true Wonder Trade. Random trade from every Pokemon in your game! V20, V21

I was wanting to build a Wonder Trade in my game and ran across Sploopo's WT script, but didn't like the idea of having to individually fill lists. So I made one that will automatically populate Pokemon depending on the Pokemon already coded to your game.

How it Works:

  1. Automatic Pokemon Population:
    • The script scans all maps in your game and compiles encounter data from each map.
    • For every encounter...

Read more about this resource...
 
How can I add this to Pokegear?
Suuuuuuper late reply, but you should be able to do it by inputting this with the other pokegear menu items.
Ruby:
Expand Collapse Copy
MenuHandlers.add(:pokegear_menu, :WONDERTRADE, {
  "name"      => _INTL("Wonder Trade"),
  "icon_name" => "pokesearch",  # Replace with the actual icon filename
  "order"     => 50,  # Adjust the order to your preference
  "effect"    => proc { |menu|
    pbWonderTrade
    next false
  }
})
 
Back
Top