Quest comand problem

07/15/2011 21:49 kekoroto#1
Hi, I'm having a problem with a quest, I want it to remove ALL of the item I say, I mean when I use an object I want the quest to remove all of the items with the id I write that there are in the server, in all players, logged in or not.

I know the comand item.remove, but it just removes from 1 player. Is there a way to do what I'm trying?
07/15/2011 22:27 '-SkyLiiNe-'#2
I would try to do in in this way:
PHP Code:
quest item_delete begin
state start begin
when login begin
remove
.item(value)
end
end
end 
So no player can use this item now.
I dont know another way.
(Sorry for my bad english :D)
07/16/2011 14:46 kekoroto#3
Quote:
I would try to do in in this way:
PHP Code:
quest item_delete begin
state start begin
when login begin
remove.item(value)
end
end
end
So no player can use this item now.
I dont know another way.
(Sorry for my bad english )
Thnks for answering, I'll try but I think is not what I try, I want the quest to remove an object in all players but I want them to be able to get ita again after I remove them.