SphereCommunity
Trying to make a "gift chest" - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: Script Help (/Forum-Script-Help)
+--- Thread: Trying to make a "gift chest" (/Thread-Trying-to-make-a-gift-chest)

Pages: 1 2


RE: Trying to make a "gift chest" - Jozack - 05-03-2017 09:39 AM

Using the script as is with .add i_loot_chest - the chest remains visible and does not decay. I have two regular chars logged in to test with. Both can still see and access the chest once the item inside has been taken by one of them. I'm going to try your updated script now.

OMG you're my hero!!!!! YES it works....exactly like I want it to! THANK YOU SO MUCH!!!!


RE: Trying to make a "gift chest" - Coruja - 05-03-2017 10:48 AM

maybe the problem is not really on the script, but how you put the idea on the script, because this script is acting a bit different compared to the description on 1st post

I said about statf_decay because I thought you're trying to remove the container to let the worldgem bit create another one with another item inside, but probably this is not what you're trying to do, you just need an container that keep creating new itens inside it when someone pick the item:
Code:
[ITEMDEF i_loot_chest]
ID=i_chest_metal_brass
NAME=Loot Chest
TYPE=t_container

ON=@Create
ATTR=attr_move_never
TIMER=1

ON=@Timer
SERV.NEWITEM i_bow_vanq
NEW.CONT=<UID>
return 1

ON=@PickUp_Self
TIMER=10  //start the timer to create another item when someone pick the current item

ON=@DropOn_Self
return 1  //don't allow players drop items inside the container to avoid break the script functionality