• 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!
  • 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] Dropped Items

  • 16
    Posts
    9
    Years
    I need a script so that when I defeat a Pokémon, it drops one or more pre-defined items for me in v17.
    For example: when defeating a Caterpie, it would drop 0-5 "bug essences", and when defeating Butterfree, it would drop 2-10 "bug essences" + 1 Bug Wing.
    In the case of new items that will be created, and in random quantity.
    I found a script and made some modifications, but I think it's not exactly what I need:

    Code:
    ### Wild pokemon drops item if defeated
      def pbDropItem (i)
        if rand(100)>50 && !@opponent
          $PokemonBag.pbStoreItem(:RandomItem)
          pbDisplay(_INTL("{1} dropped {2} from the pokemon!", $Trainer.name, PBItems.getName(RandomItem)))
          end
      end

    Please, could you help me make this script?
     
    Last edited:
    Back
    Top