17.05.2014, 02:47
ola meu comando /lc esta funfando mais nao reseta os carros sem uso reseta todos ate o que os player estao usando sera que alguem tem um ai que reseta so sem uso
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;
}
if(strcmp(cmd, "/rvu", true) == 0)
{
if(IsPlayerAdmin(playerid)
{
for(new v = 0; v < MAX_VEHICLES; v++)
{
if(!IsVehicleOccupied(v)) SetVehicleToRespawn(v);
}
}
return 1;
}