Vejo que o amiguinho sу copiou a parada e postou QUE BELEZAAAAAA
OBS:::: Vamos arrumar o cmd dele:
pawn Code:
CMD:rvu(playerid)
{
if(pAdmin[playerid] >= 1)
{
for(new v = 0; v < MAX_VEHICLES; v++)
{
if(!IsVehicleOccupied(v)) SetVehicleToRespawn(v);
}
new string[80], pNome[MAX_PLAYER_NAME];
GetPlayerName(playerid, pNome, MAX_PLAYER_NAME);
format(string, sizeof(string), "O(A) administrador %s (%d) respawnou todos os veнculos desocupados.", pNome, playerid);
SendClientMessageToAll(-1, string);
}
return 1;
}
stock IsVehicleOccupied(vehicleid)
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(GetPlayerState(i) == PLAYER_STATE_DRIVER || GetPlayerState(i) == PLAYER_STATE_PASSENGER)
{
if(GetPlayerVehicleID(i) == vehicleid)
{
return 1;
}
}
}
}
return 0;
}
Deu erro pois vocк simplismente colocou o cуdigo e nem sequer se preocupou em procurar, mas se vocк divesse lido o inнcio deste mesmo tуpico vocк teria visto a resposta para sua dъvida.