03.04.2011, 23:38
Eu to tentando proibir de que quem esteja preso use o comando /setint.
Coloquei desta forma:
Mas mesmo estando preso o cara pode usar o comando ...
E no pawno nao apresenta nenhum erro.
Queria que alguem me ajudasse ae. xD
Coloquei desta forma:
pawn Код:
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);
}
if (PlayerInfo[playerid][pJailed] == 1)
{
SendClientMessage(playerid, COLOR_GRAD1, " Vocк nгo pode usar este comando enquanto estiver na cadeia !");
return 1;
}
}
return 1;
}
E no pawno nao apresenta nenhum erro.
Queria que alguem me ajudasse ae. xD