07.08.2012, 21:25
pawn Код:
if(dialogid == 4504)
{
new nomepl[MAX_PLAYER_NAME];
GetPlayerName(playerid, nomepl, sizeof(nomepl));
if(response == 1)
{
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, sizeof(aname));
if(!IsNumeric(inputtext)){
SendClientMessage(playerid, Vermelho, " - Valor invбlido.");
return 1;
}
else
{
for(new carro = 0; carro < MAX_CARROS; carro++)
{
format(string, sizeof(string), "carro%d.ini", carro);
if(strcmp(dini_Get(string, "Dono"), aname, true) == 0){
new carid;
if(carid!= 411 || carid!= 429 || carid!= 451 || carid!= 506 || carid!= 522 || carid!= 535 || carid!= 541 || carid!= 559 || carid!= 560 || carid!= 562)
{
dini_IntSet(string, "Modelo", StrToInt(inputtext));
ChangeVehicleColor(dini_Int(string, "Id"), dini_Int(string, "Cor1"), dini_Int(string, "Cor2"));
SendClientMessage(playerid, Azul, " - Modelo Mudado com Sucesso. Agora Respawne seu Veiculo para Aplicar");
GivePlayerGrana(playerid, -20000);
return true;
} else SendClientMessage(playerid, Azul, " (ERROR) ID invalido || De /listadoscarros E Pegue um ID Valido");
}
}
return 1;
}