15.05.2015, 07:26
hi guys i created a cmd to create flare when ever a cop uses /flares. it worked correctly but my problem is that flare is created in air i want it to create on ground.
here's my cmd:
Also, if you can give me cmd for destroying nearest flare(not all) so that i can create multiple flares and can destroy it oe by one... thanks
here's my cmd:
Код:
CMD:flares(playerid, params[]) { new rank = arrFaction[playerid][p_iMember] > -1 && arrFaction[playerid][g_iFactionType] == 1; if(rank < 0) return SendClientMessage(playerid, COLOR_WHITE, "You are not authorized to use this command."); { new Float:x, Float:y, Float:z; GetPlayerPos(playerid, x, y, z); CreateObject(18728, x,y,z, 0.0, 0.0, 96.0); } return 1; }