[Ajuda] Ajuda Tapete de prego.
#1

Galera, tenho um tapete de prego sу que qualquer um pode colocar, como faзo para apenas para policiais colocar?

Tapete de prego code:
Код:
#include <a_samp>
#include <SpikeStrip>

strtok(const string[], &index)
{
	new length = strlen(string);
	while ((index < length) && (string[index] <= ' '))
	{
		index++;
	}

	new offset = index;
	new result[20];
	while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
	{
		result[index - offset] = string[index];
		index++;
	}
	result[index - offset] = EOS;
	return result;
}

public OnPlayerCommandText(playerid, cmdtext[])
{
	new cmd[256];
	new idx;
	cmd = strtok(cmdtext, idx);

	if (strcmp(cmd,"/ctapete",true) == 0)
	{
	    new Float:plocx,Float:plocy,Float:plocz,Float:ploca;
        GetPlayerPos(playerid, plocx, plocy, plocz);
        GetPlayerFacingAngle(playerid,ploca);
        CreateStrip(plocx,plocy,plocz,ploca);
	    return 1;
	}
	else if (strcmp(cmd,"/rtapete",true) == 0)
	if(GetPlayerSkin(playerid) > 279 && GetPlayerSkin(playerid) < 289)
	{
        DeleteClosestStrip(playerid);
	    return 1;
	}
	else if (strcmp(cmd,"/removerall",true) == 0)
	if(GetPlayerSkin(playerid) > 279 && GetPlayerSkin(playerid) < 289)
	{
        DeleteAllStrip();
	    return 1;
	}
	
	return 0;
}
Reply


Messages In This Thread
Ajuda Tapete de prego. - by davi54723 - 14.08.2012, 00:45
Respuesta: Ajuda Tapete de prego. - by RedBulL_x - 14.08.2012, 01:51
Re: Ajuda Tapete de prego. - by Diogo123 - 14.08.2012, 01:55
Re: Ajuda Tapete de prego. - by davi54723 - 14.08.2012, 01:55
Re: Ajuda Tapete de prego. - by davi54723 - 14.08.2012, 02:08
Re: Ajuda Tapete de prego. - by Delay - 14.08.2012, 02:16
Respuesta: Ajuda Tapete de prego. - by RedBulL_x - 14.08.2012, 03:01
Re: Ajuda Tapete de prego. - by MatheusAlcapone - 14.08.2012, 03:39
Re: Ajuda Tapete de prego. - by davi54723 - 15.08.2012, 04:53

Forum Jump:


Users browsing this thread: 4 Guest(s)