//give_item command suggestion

ketsi

Vagabond
Hello!
Is possible to make command for give item to every player in radius? example: // radius_give_item [itemID] [quantity] [radius]
Many servers do that for gathering events for reward and is very welcoming.

An extra idea if possible is to be able to give an item for every player currently online like // mass_give_item [itemID] [quantity]
A.
A.thank you in advance^
 
An extra idea if possible is to be able to give an item for every player currently online like // mass_give_item [itemID] [quantity]
Code:
INSERT INTO `items_delayed` (`owner_id`, `item_id`, `count`) SELECT `obj_Id`, 57, 1 FROM `characters` WHERE `online` > 0;
Give all online players 1 adena
 
Back
Top