command help[rep]
#1

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;
	}
Reply
#2

Try This:
pawn Код:
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;
            return 1;
        }
        else
        if(i = sizeof(SpikeInfo))
        {
            SendClientMessage(playerid, COLOR_GRAD2,"You have to be near spike strip.");
        }
    }
    return 1;
}
Edited::
Reply
#3

thanks,it did work
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)