17.11.2011, 22:05
Tenta esse mais simplisinho
Offtopic: profissional e com 2 "S" amigo...
pawn Код:
pawn Code:
new
cmd[64],
idx;
cmd = strtok(cmdtext, idx);
if(strcmp(cmd, "/pintar", true) == 0)
{
if(IsPlayerInAnyVehicle(playerid))
{
new
string[128],
tmp[64];
tmp = strtok(cmdtext, idx);
new
tmp2 = strval(tmp);
ChangeVehicleColor(GetPlayerVehicleID(playerid),tmp2,tmp2);
format(string, sizeof(string),"Cor do teu carro foi mudada para: %i",tmp2);
SendClientMessage(playerid, 0xF60000AA, string);
}
else return SendClientMessage(playerid, 0xF60000AA, "Erro: Ce nao ta em nenhum veнculo negao!");
return 1;
}