SphereCommunity
Deleting Itens - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: Deleting Itens (/Thread-Deleting-Itens)



Deleting Itens - escribano - 12-08-2012 02:05 AM

Hi Folks...


Im trying to make a script to remove all i_pet_dragons from players... but i need to "pay" 20K for each item deleted to the player that have the pet.



I tryed this:
Code:
FORINSTANCES i_pet_dragon
    remove
    addgold 20000
ENDFOR


The pet was removed but the gold wont go to the player!


Someone can help me?
Thanks

This actually works:


Code:
FORINSTANCES i_pet_dragon
    id i_gold
    amount 20000
    fix
ENDFOR


Smile Thanks