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.
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.
You see, some items important to the plotline, such as the rainbow wing, the blue orb, mega stones, and Oak's parcel, are undroppable. How do you program this in essentials?
I wish it was that easy, but when receiving the item, I have the option to simply toss it. I want to prevent the tossing option. Same goes not just for this item, but for all key items.
I wish it was that easy, but when receiving the item, I have the option to simply toss it. I want to prevent the tossing option. Same goes not just for this item, but for all key items.
# Important items can't be sold, given to hold, or tossed.
def pbIsImportantItem?(item)
return $ItemData[item] && (pbIsKeyItem?(item) ||
pbIsHiddenMachine?(item) ||
(INFINITETMS && pbIsTechnicalMachine?(item)))
end