• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • 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.

Disable Pokeballs during a wild battle

Bowlstir

Media Arts and Game Development
199
Posts
16
Years
  • I'm pretty sure there's a 'can't catch' option in the wiki somewhere.

    Maybe you could find the code for the ghost Cubone in Lavender lol
     

    Nickalooose

    --------------------
    1,309
    Posts
    16
    Years
    • Seen Dec 28, 2023
    Is there something you are forgetting... "The Trainer blocked the Ball! Don't be a thief."... What a trainer says when you try to chuck a PokéBall during a trainer battle... The funny thing about scripting is that you can edit them to work somewhat different for many different scenarios. Try creating a switch which you will activate before pbWildBattle and adding:
    Code:
        elsif $game_switches[x] # x = your script number <--- switch lol, not script
          @scene.pbThrowAndDeflect(ball,1)
          pbDisplay(_INTL("The Pokémon can't be caught!")) # Message that will show
    directly below this line: pbDisplay(_INTL("The Trainer blocked the Ball!\nDon't be a thief!"))
    If you don't know where that line is. Nobody can help you.
     
    Last edited:
    Back
    Top