03/07/2022 12:40
(03/07/2022 12:09)spongebob Escreveu: sei como deleta se estiver dentro do veiculo mais e pra deletar todos que estiverem vazios ?
essa é a parte que ta no comando de criar o veiculo :
Código PHP:DestroyVehicle(VeiculoID[playerid]);
VeiculoID[playerid] = -1;
VeiculoID[playerid] = CreateVehicle(vehicle, x, y, z, a+90, -1, -1, -1);
LinkVehicleToInterior(VeiculoID[playerid], GetPlayerInterior(playerid));
SetVehicleVirtualWorld(VeiculoID[playerid], GetPlayerVirtualWorld(playerid));
criado[playerid] = 1;
Eu uso esse no meu GM
Código:
stock ResetarCarros(playerid)
{
new string[128];
GetPlayerName(playerid, string, MAX_PLAYER_NAME+1);
format(string, sizeof(string), "AVISO: O Administrador %s respawnou todos os veiculos!", string);
SendClientMessageToAll(0xF23C3CFF, string);
new bool:inVeh;
for( new i = 0; i < MAX_VEHICLES; i++ )
{
inVeh = false;
for( new j = 0; j < MAX_PLAYERS; j++ )
{
if(IsPlayerInVehicle( j, i ))
{
inVeh = true;
}
}
if(!inVeh) SetVehicleToRespawn(i);
}
return true;
}