• 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!
  • 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.

Recent content by Roei110

  1. R

    [Scripting Question] Add player team from txt (or alternative)

    You need the code without line breaks, the problem is probably that the first line became too long and it moved a line down, so it broke the code. You can extend your box by the extendtext.exe on the main directory so the code won't break. If it's not it, screenshot the code and I'll look for a fix.
  2. R

    [Scripting Question] Add player team from txt (or alternative)

    You should put it in a script command on an event, so it triggers when you want it to happen. I've just checked it, add a colon for your trainer type (:TRAINER_Davis) and add quotation marks to its name ("Davis"). Also, you don't have to add a version number, because the default is 0. I hope...
  3. R

    [Scripting Question] Add player team from txt (or alternative)

    Maybe you can create a trainer on trainers.txt, and use its party. It should look like this:
  4. R

    [Error] Does anyone know why I can walk over the plant even if it is blocked?

    Maybe there is something over it? Even a wrong blank tile that you can go through? If not, check if you allowed the player to go through on one of the events.
  5. R

    [Error] Game crashes when I try to pick a starter.

    The problem is that you accidentally wrote pd instead of pb. Just fix the D into a B and it should work fine.
  6. R

    [Scripting Question] ELP PLEASE (Burn Entry Hazard)

    You can trace the toxic spikes codes, all the way to PBEffects and try to add exactly the same code but with different names and texts ("Fire Spikes" instead of "Toxic Spikes") and different functions ("pbBurn" instead of "pbPoison"). Try looking for it every time it's says "ToxicSpikes" on the...
  7. R

    [Error] Help > Missing unknown sprite causes crash when naming Pokémon after capture.

    It shouldn't happen on your intro naming screen, because the missing files are for Pokemon. If you really haven't changed anything by yourself, maybe it's one of your plugins? My guess is "Generation 8 Pack Scripts" because the Hotfixes and Staircases shouldn't touch the Pokemon graphics or scripts.
  8. R

    [Scripting Question] Help adding new encounter method (Essentials 20.1)

    I think the problem is on the line: ":type => :none". It shouldn't be "none", as all the "none" types are moves that trigger a battle and not a step trigger. Try "land", I think it should work.
  9. R

    [Error] Message: undefined method `name' for nil:NilClass PBS Compiling issue

    Did you manually change anything on "PBS/map_metadata"? Maybe something went wrong over there with the format? Forgot a comma or something?
  10. R

    [Error] Help with an error in battles

    If you are using the v21, the move is called "Struggle Bug" or STRUGGLEBUG, maybe it's the problem.
  11. R

    [PBS Question] I want to make the battle graphics and background like Gen 3 instead of Gen 4.

    You can find a resource with custom graphics for the battle UI, including some that replicate the gen 3 games. Game mechanics are defined by your wanted generation on the script editor, the Settings script (it's called MECHANICS_GENERATION).
  12. R

    [Scripting Question] Change species if the Pokémon has a certain form

    Theoretically, you can do whatever you want. I don't understand what exactly you want to do, but you can change the hatching script so that the specie will be changed on certain conditions. You can also change the breeding script, so the egg at first will be a different specie. If you know how...
  13. R

    [Scripting Question] How can I make the player input text?

    Oh! I actually have two ways: 1. Store the wanted text on another variable, another temporary one (or not, if you want to keep this text on a specific variable). On the conditional branch option, you can compare a variable to another one, so this is one way. 2. Change the code we wrote earlier...
  14. R

    [Scripting Question] How can I make the player input text?

    This is a text, the function pbMessageFreeText should let the player enter free text.
  15. R

    [PBS Question] earth type

    If you want, you can change only the name to "Earth" instead of "Ground", and the internal name (ID) will stay "GROUND". But it's kind of weird to do. Go through every PBS file with your text app and use CNTL+H to switch every time it says "GROUND" to "EARTH" (match case and whole word) and...
Back
Top