• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Which Pokémon Masters protagonist do you like most? Let us know by casting a vote in our Masters favorite protagonist poll here!
  • Red, Hilda, Paxton, or Kellyn - which Pokémon protagonist is your favorite? Let us know by voting in our poll!
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

Script: [v13+] Pokémon Selection (similar to Stadium/Battle Tower)

Hi, just wanted to report something I found while using this script on Pokémon Essentials v19.1. The selection and party changing related works fine when opening the game the first time, but then if I soft reset using F12, the selection still works, but the party is unchanged from the original party. But then if I close the game and reopen it, the party changing works again.
Sorry, I miss your message! Thanks for the report! Essentials v19 has some issues from soft reset if I remember correctly. A similar thing occurs at Battle Tower.


Hi, I would appreciate any help from anyone who see's this...
I am using essentials version 19.1, I have used a ton of Plugins before and made many changes to scripts,
had issues in the past but I have ABSOLUTELY NO CLUE what is going on with yours...
All I did was follow the instructions, I copied your code into the the script editor above the "main",
I tried downloading and putting your script into the plugins folder... I have no idea how to make this script work,
most scripts you just put a folder into plugins, copy some scripts into the editor and maybe add pictures and it works perfectly.
I have been trying for well over 13 hours the last 3 days trying to get this to work and I am dumbfounded and lost.

This is the exact copy of my error text and the ONLY thing I did was add this script in above the "main" section like I normally would and like the directions specified...

Spoiler:
=OOO. I generally ask support if I didn't get to work during 30-60 minutes. 13 hours is insane!

I tested in a v19.1 and was working here, so I gonna ask you to do some things:
  1. Do as like the attachment screenshot in this message, to make sure that the event was right.
  2. If bug continues, try downloading the latest Essentials v19.1 hotfixes (1.0.7) and replacing yours.
  3. If bug continues, get a clear Essentials v19.1 and test the event here. If works in clear Essentials, probably one of your scripts was in conflict with my script.
 

Attachments

  • [PokeCommunity.com] [v13+] Pokémon Selection (similar to Stadium/Battle Tower)
    Event test.png
    23 KB · Views: 8
This is perfect for what I need. How would I go about changing "Banned" text to "Not Eligible"?
 
This is perfect for what I need. How would I go about changing "Banned" text to "Not Eligible"?
Ctrl+Shift+F "Banned" (with the quotation marks) in the scripts. It will bring you to def pbPokemonMultipleEntryScreenEx in UI_Party. Edit the text. But this was originally used in Battle Tower like challenges, so it gonna be edited as well.
 
Oh, in base Essentials.
I was trying to work out how to in the plugin... Thank you!
 
Hello, I am having an issue. The Pokemon Selection works but I'm trying to force the player to use one type for a certain battle. I tried following your replies to another user but I'm just really confused. I saw you had an example in the script:

challenge = PokemonChallengeRules.new
challenge.addPokemonRule(TypeRestriction.new([:GRASS,:FIRE,:WATER]))
challenge.addPokemonRule(BannedSpeciesRestriction.new(:HOOH,:KYOGRE))
pr = PokemonSelection::Parameters.new
pr.setBaseChallenge(challenge)
PokemonSelection.choose(pr)

But I don't know where to put this and/or how to use it. I would really appreciate some help if you can! Thank you!
(I am using Essentials v20)
 
Hello, I am having an issue. The Pokemon Selection works but I'm trying to force the player to use one type for a certain battle. I tried following your replies to another user but I'm just really confused. I saw you had an example in the script:

challenge = PokemonChallengeRules.new
challenge.addPokemonRule(TypeRestriction.new([:GRASS,:FIRE,:WATER]))
challenge.addPokemonRule(BannedSpeciesRestriction.new(:HOOH,:KYOGRE))
pr = PokemonSelection::Parameters.new
pr.setBaseChallenge(challenge)
PokemonSelection.choose(pr)

But I don't know where to put this and/or how to use it. I would really appreciate some help if you can! Thank you!
(I am using Essentials v20)
before TrainerBattle.start in the event script.
 
  • Like
Reactions: FL
Back
Top