• 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.
  • Congratulations to all of the game jam participants! 🥳 The winners have all been decided and announced.
    If you haven't yet, check out the entries for Eevee Expo's Game Jam here!
  • 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