31.10.2011, 19:59
pawn Код:
new bool:CarroLiberado[MAX_PLAYERS]; //No topo do GM
if(strcmp(cmd, "/liberarcompra", true) == 0)
{
new tmp[24];
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
return SendClientMessage(playerid, -1, "USO: Digite o nick/id");
new giveid = ReturnUser(tmp);
CarroLiberado[giveid] = true;
return 1;
}
if(strcmp(cmdtext, "/comprarcarro", true) == 0)
{
if(CarroLiberado[playerid] == false)
return SendClientMessage(playerid, Vermelho, "(ERRO) O admin nгo liberou sua compra.");
//CODIGOS DA COMPRA DE VEICULO
CarroLiberado[playerid] = false;
return 1;
}