Quote Originally Posted by yompa93 View Post
something like this maybe

Code:
Manas = "Mana Potion"
DropManasAbove = 300
AmountToDrop = 1

Module.New('DropPots', function(module)
    if Self.ItemCount(Item.GetID(Manas)) > DropManasAbove then
        Self.DropItem(Self.Position().x,Self.Position().y,Self.Position().z, Manas, AmountToDrop)
    end
	module:Delay(1000,1500)
end)
Hey I would need the same script, but for itemid 12724 - The script won't recognize the name of the item for me.