[Ajuda] /comprarcarro [id]
#2

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


Messages In This Thread
[Ajuda] /comprarcarro [id] - by wallacematheus - 31.10.2011, 19:45
Re: [Ajuda] /comprarcarro [id] - by ViniBorn - 31.10.2011, 19:59

Forum Jump:


Users browsing this thread: 1 Guest(s)