• Our friends from the Johto Times are hosting a favorite Pokémon poll - and we'd love for you to participate! Click here for information on how to vote for your favorites!
  • 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 eboxiv

  1. eboxiv

    [Scripting Question] Fusion Evolution

    this worked for me in a previous version: https://www.pokecommunity.com/showthread.php?t=293843 maybe it could be simpler by using only one custom evo method depending on the form: [CODE] # Add code for custom evolution type 4 when PBEvolution::Custom5 return poke if...
  2. eboxiv

    Fused form of a wild pokemon (Kangaskhan) doesn't remain after capture

    wow thanks a lot, that was exactly the problem! i don't use gen 6 pokes or mega evolutions so i didn't notice form 1 is already taken :D
  3. eboxiv

    Fused form of a wild pokemon (Kangaskhan) doesn't remain after capture

    first of all these are the first modificatons that i have made in the clean v16.1 i wanted that there is a baby kangaskhan (cubone in my testing) and kangaskhan has a normal form with an empty pouch (nidoqueen sprite for testing) and a fused form carrying a baby (the regular kangaskhan) the...
  4. eboxiv

    New Evolution Method Help

    first i created new evolution methods for slowpoke to evolve and changed them in the pokemon pbs: Evolutions=SLOWKING,Custom6,KINGSROCK,SLOWBRO,Custom7, 1,1,1,1,1,2,0 # Custom 1-7# Add code for custom evolution type 5 when PBEvolution::Custom6 return poke if pokemon.smart==255 &&...
  5. eboxiv

    New Evolution Method Help

    i wanted to trigger this evolution by letting shellder use CLAMP on slowpoke from the party screen (like softboiled or milk drink), so the user could expect that the shellder will be deleted afterwards. but whatever i try, i can't successfully call the evolution. that's what i got so far in the...
  6. eboxiv

    eggs and balls

    great, that's it. thank you very very much for your help and above all for your patience with me.
  7. eboxiv

    eggs and balls

    sorry to bother you again, but there's still one little thing... i wanted to display a message in the hatching scene to inform the player about this process, like: Kernel.pbMessage(_INTL("\\se[]{1} hatched from the Egg!\\wt[80]",@pokemon.name)) ball=newGetBall Kernel.pbMessage(_INTL("\\se[]{1}...
  8. eboxiv

    eggs and balls

    yay, thanks a lot, it worked. i only had to also change the new "inheriting ball from mother script" in the day care section to: ball=newGetBall if mother.gender==1 egg.ballused=pbGetBallType(ball) end so now the baby is in the deleted ball, whichever one it was. and thanks also for...
  9. eboxiv

    eggs and balls

    as i'm a bit nerdy, it somehow bothered me, that a pokemon hatches from an egg and already has a pokeball. so i changed the hatching script so that it only hatches when you have pokeballs with you, and one of them gets deleted then and it works fine. now i'd like to make it possible that other...
  10. eboxiv

    How to delete Specific Pokémon from Party.

    here's another possibility. put this in poke utilities: def pbdelete(variableNumber,species) for i in 0...$Trainer.party.length species=getID(PBSpecies,species) p=$Trainer.party[i] if p && p.species==species pbSet(variableNumber,i) return $Trainer.party[i] end end...
  11. eboxiv

    An odd way to run variables

    for anyone like me, who doesn't find it so obvious how to put a word for y: it must be 'word', without the ' you'll get an error. numbers of course don't need this. this is useful for simple password events: pbSet(XX,pbEnterText("password?",1,12)) conditional branch: script...
  12. eboxiv

    Different way to change form

    finally got to test it, that's how it works MultipleForms.register(:STANTLER,{ "getForm"=>proc{|pokemon| next 1 if pokemon.level>=5 next 0 } })
  13. eboxiv

    how can i crossbreed

    add: if isConst?(babyspecies,PBSpecies,:RHYHORN) && isConst?(father.species,PBSpecies,:RAMPARDOS) babyspecies=getConst(PBSpecies,:CHARMANDER) end and: if isConst?(babyspecies,PBSpecies,:CRANIDOS) && isConst?(father.species,PBSpecies,:RHYHORN)...
  14. eboxiv

    Making a Pokémon only capturable in a certain ball

    thanks for your help! EDIT: Found a way. For anyone who likes to see how it works: a=battler.totalhp b=battler.hp rareness=BallHandlers.modifyCatchRate(ball,rareness,self,battler) x=(((a*3-b*2)*rareness)/(a*3)).floor if...
  15. eboxiv

    Making a Pokémon only capturable in a certain ball

    ok, i know now, that it has to be more like this: if $game_switches[XX] catchRate*=0 if !isConst?(NAGBALL,proc{|ball,catchRate,battle,battler|) end } but i still couldn't figure out, where to put this line. i think there must be a line beforehand, defining the following one. but i have...
Back
Top