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

[Scripting Question] How to add disguise ability for other pokemon?(v18)

125
Posts
4
Years
    • Seen Nov 20, 2023
    I want to add a new pokemon with disguise ability.
    The disguise form is form 2 and the busted form is form 3.
    Can anyone please tell me how to deal with it?
     
    143
    Posts
    4
    Years
    • Seen Mar 26, 2024
    I want to add a new pokemon with disguise ability.
    The disguise form is form 2 and the busted form is form 3.
    Can anyone please tell me how to deal with it?
    To do this, you'll need to change two sections in the script.
    Move_Usage:
    Spoiler:
    Have a nice day. :)
     
    125
    Posts
    4
    Years
    • Seen Nov 20, 2023
    Thanks.The problem is that,after a battle,my pokemon won't change back.
     
    143
    Posts
    4
    Years
    • Seen Mar 26, 2024
    Thanks.The problem is that,after a battle,my pokemon won't change back.
    Changing the form back is simple, just add this piece of code into "Pokemon_Forms":
    Code:
    MultipleForms.register(:NAMEOFYOURPOKEMON,{
      "getFormOnLeavingBattle" => proc { |pkmn,battle,usedInBattle,endBattle|
        next 2 if isConst?(pkmn.ability,PBAbilities,:DISGUISE) && (pkmn.fainted? || endBattle)
      }
    })
     
    1
    Posts
    3
    Years
    • Seen Nov 8, 2023
    I want help i made an event that worked how i wanted but there is an issue which when i leave the house the event restarts can anyone tell me and one more thing which is my player should have specific name if mom calls the player name ,rival, professor,etc . and i used picture event for some main events it should switch the character sprite of the gender

    THANK YOU
    😀
     
    Back
    Top