21.09.2011, 01:32
pawn Код:
stock ResetarCarros()
{
SendClientMessageToAll(-1, "algum administrador espawnou todos os carros.");
static bool:inVeh;
for(new i; i < MAX_VEHICLES; i++ )
{
inVeh = false;
for(new j; j < GetMaxPlayers(); j++ )
{
if(IsPlayerInVehicle( j, i ))
inVeh = true;
break;
}
if(!inVeh) SetVehicleToRespawn(i);
}
}