08.06.2016, 06:03
Код:
new tower; CMD:tower(playerid,params[]) { new Float:x,Float:y,Float:z; if(!IsValidObject(tower)) { GetPlayerPos(playerid, x, y, z); tower = CreateObject(11461,x,y,z, 0.0, 0.0, 96.0); SetPlayerPos(playerid, x, y, z + 27.0); SendClientMessage(playerid,COLOR_GREY,"SERVER: You have created a tower."); } else { GetPlayerPos(playerid, x, y, z); SetPlayerPos(playerid,x,y,z - 27.0); DestroyObject(tower); SendClientMessage(playerid,COLOR_GREY,"SERVER: You have destroyed a tower."); } return 1; }