16.10.2013, 13:48
Tem esse erro aqui:
ve se acha aogo de errado...
pawn Код:
E:\Servidores\Samp\BetaRP\BetaRP\gamemodes\BetaRP.pwn(24849) : error 035: argument type mismatch (argument 3)
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Error.
ve se acha aogo de errado...
pawn Код:
if (listitem == 10)
{
ShowPlayerDialog(playerid, DIALOG_STYLE_INPUT, "Modelo carro", "Digite o modelo do carro:", "OK", "Cancelar");//linha 24849
{
new modelo, Float: carroX,
Float: carroY,
Float: carroZ,
Float: carroA;
if (!(modelo >= 400 && modelo <= 611))
{
SendClientMessage(playerid, Vermelho, "Valor invбlido, tente novamente! | ID's = 400-611");
return 1;
}
for (new c = 0; c < MAX_CONCES; c++)
{
format(string, sizeof(string), PASTA_CONCE, c);
if (dini_Exists(string))
{
if (GetPlayerVehicleID(playerid) == dini_Int(string, "Id"))
{
GetVehiclePos(GetPlayerVehicleID(playerid), carroX, carroY, carroZ);
GetVehicleZAngle(GetPlayerVehicleID(playerid), carroA);
dini_IntSet(string, "Modelo", modelo);
DestroyVehicle(dini_Int(string, "Id"));
CriarVeiculo3(c, modelo, carroX, carroY, carroZ, carroA, dini_Int(string, "Cor1"), dini_Int(string, "Cor2"));
SendClientMessage(playerid, Verde, "Modelo alterado com sucesso!");
return 1;
}
}
}
}
}