• 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!
  • Our weekly protagonist poll is now up! Vote for your favorite Conquest protagonist in the poll by clicking here.
  • 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.

How to add gender stones? (gender changing item)

  • 3
    Posts
    10
    Years
    • Seen May 17, 2015
    Hi, so I wanted to add gender stones (an item that changes the pokemon's gender), to my game, does anyone know how to do that? I'm not terribly great at scripting, but I know that items that change ability, IV's and natures exist in Pokemon Reborn. My biggest question here would be how, like, is it similar to the ability capsule script or something?
     
    Gender is simply a second character
    You would use the script in an event:
    Code:
    pbChangePlayer(0)

    You can put in any kind of flavor text to make it sound better instead of "want to be a boy/girl?"

    You might also want to play around with variables to make people react differently when you're a male/female by setting 1 variable, for example variable 26, and either adding or subtracting it in the event when you choose to be a male or female.

    Wow, I misread what you asked for, gosh, sorry for wasting your time haha.
     
    Last edited:
    Gender is simply a second character
    You would use the script in an event:
    Code:
    pbChangePlayer(0)

    You can put in any kind of flavor text to make it sound better instead of "want to be a boy/girl?"

    You might also want to play around with variables to make people react differently when you're a male/female by setting 1 variable, for example variable 26, and either adding or subtracting it in the event when you choose to be a male or female.

    he meant "pokemon's gender" , and I think there is a force gender in Debug script
     
    Use the lines
    Code:
    pbChoosePokemon(1,3)
    pokemon=$Trainer.party[$game_variables[1]]
    pokemon.setGender(0)
    0 = male
    1 = female
    2 = genderless


    That should work, I don't see why it wouldn't. Edit accordingly.
     
    Back
    Top