• 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.
  • 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!
  • Serena, Kris, Dawn, Red - which Pokémon protagonist is your favorite? Let us know by voting in our grand final favorite protagonist poll!
  • PokéCommunity supports the Stop Killing Games movement. If you're a resident of the UK or EU, consider signing one of the petitions to stop publishers from destroying games. Click here for more information!
  • 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