|
propmoverex if you want specific drops from specific monsters.
propDropEvent
if you want a certain item to drop between two levels of monsters.
For example:
DropItem(ItemID, Probability, Upgrade, -1 (Always -1), Min Level, Max Level)
DropItem(RANDOM_ITEM, 1000000000, 1, -1, 15, 120);
This will drop a "Random Item" from all monsters between level 15 & 120.
-- 1000000000 = 100% (maybe lower this to 20% or something, your choice)
|