01.11.2016, 19:40
Deram 2 erros '-'
Comando:
Quote:
C:\Program Files (x86)\Minas Gerais Roleplay\gamemodes\roleplay.pwn(36120) : error 001: expected token: "-identifier-", but found "*" C:\Program Files (x86)\Minas Gerais Roleplay\gamemodes\roleplay.pwn(36121) : error 017: undefined symbol "dono" |
PHP код:
CMD:checarplaca(playerid, params[])
{
static
id = 0;
new string[128];
if (GetFactionType(playerid) != FACTION_POLICE)
return SendErrorMessage(playerid, "Vocк precisa ser um policial.");
if (sscanf(params, "d", id))
return SendSyntaxMessage(playerid, "/checarplaca [vehicleid]");
if (!IsValidVehicle(id) || Car_GetID(id) == -1)
return SendErrorMessage(playerid, "You specified an invalid ID.");
new*dono[140];*
format(string,sizeof(string),"O dono deste veнculo й %s.", cache_get_field_int(id, "carOwner", dono));
SendClientMessage(playerid, COLOR_GREEN, string);
return 1;
}