14.02.2012, 16:50
tenta ai retirei do meu gm '-'
Se nao der
tira
new tmp[256];
pawn Код:
if(strcmp(cmd, "/pintar", true) == 0)
{
new tmp[256];
new cor1,cor2;
new veiculo;
tmp = strtok(cmdtext,idx);
cor1 = strval(tmp);
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, Vermelho, "/pintar [cor1] [cor2]");
return 1;
}
cor2 = strval(tmp);
veiculo = GetPlayerVehicleID(playerid);
if(IsPlayerInVehicle(playerid,veiculo))
{
ChangeVehicleColor(veiculo,cor1,cor2);
format(string, sizeof(string), "(x) vocк pintou seu carro de %d e %d.", playerid, cor1, cor2);
SendClientMessage(playerid, -1, string);
return 1;
}
}
tira
new tmp[256];