[Ajuda] Com comando /setint
#1

Bom galera... muitos servers RPG tem aquele problema da prisгo
onde o cara usa o bug da prisгo /setint 0 para que suma tudo e depois consegue fugir..
tah mais eu quero saber como eu posso bloquear esse comando numa coordenada
tipo se o player digitar /setint 0 na prisгo devia vim uma menssagem "Vocк nгo pode usar esse comando aqui"

Alguem pode ajudar?

Vou mandar o cуdigo do /setint
Код:
	if(strcmp(cmd, "/setint", true) == 0)
	{
	    if(IsPlayerConnected(playerid))
	    {
			tmp = strtok(cmdtext, idx);
			if(!strlen(tmp))
			{
				SendClientMessage(playerid, COLOR_GRAD2, "USO: /setint [interiorid]");
				return 1;
			}
			new intid;
			intid = strval(tmp);
			if (PlayerInfo[playerid][pAdmin] >= 0)
			{
				SetPlayerInterior(playerid,intid);
				PlayerInfo[playerid][pInt] = intid;
				format(string, sizeof(string), "INTERIOR: %d", intid);
				SendClientMessage(playerid, COLOR_GRAD1, string);
			}
			else
			{
				SendClientMessage(playerid, COLOR_GRAD1, "   Vocк nгo pode usar esse comando !");
			}
		}
		return 1;
	}
Reply


Messages In This Thread
[Ajuda] Com comando /setint - by Lucas_ - 03.04.2011, 19:11
Re: [Ajuda] Com comando /setint - by Diogo_Bras - 03.04.2011, 19:20
Re: [Ajuda] Com comando /setint - by Ricop522 - 03.04.2011, 19:22
Re: [Ajuda] Com comando /setint - by LuxurioN™ - 03.04.2011, 19:24
Re: [Ajuda] Com comando /setint - by Lucas_ - 03.04.2011, 20:43

Forum Jump:


Users browsing this thread: 2 Guest(s)