12.03.2012, 14:35
Hello,i tried to edit the spikestrip include command but when im not at the pos,it will spam the message you have to be near a spikestrip,can someone tell me how to fix it?
Код:
CMD:removestrip(playerid, params[])
{
if(Createdstrip[playerid] == 0)
{
SendClientMessage(playerid, COLOR_GRAD2,"You haven't created a spike strip.");
return 1;
}
for(new i = 0; i < sizeof(SpikeInfo); i++)
{
if(IsPlayerInRangeOfPoint(playerid, 2.0, SpikeInfo[i][sX], SpikeInfo[i][sY], SpikeInfo[i][sZ]))
{
SendClientMessage(playerid, COLOR_GRAD2,"You have removed the spike strip.");
DeleteClosestStrip(playerid);
Createdstrip[playerid] = 0;
}
else
{
SendClientMessage(playerid, COLOR_GRAD2,"You have to be near spike strip.");
}
}
return 1;
}

