About making vehicles spawn fully repaired, you need to change a few things in the vehicle table in the database. damage_min -> 0 damage_max -> 0 //The vehicles won't be damaged. fuel_min -> 1 fuel_max -> 1 //Vehicles will have full fuel, or whatever your preference is limit_min -> 0 limit_max -> 0 // Vehicles will have no broken parts You can do this to all vehicles by running this SQL command: UPDATE vehicle SET damage_min=0,damage_max=0,fuel_min=1,fuel_max=1,limit_min=0,limit_max=0; I have not actually used the database in that way, but that should work fine. I have a PHP script that runs hourly that loads in new vehicles randomly to empty spawns (no matter if a vehicle from that spawn is on a map, so multiple vehicles per spawn, which apparently does not automatically happen with the current bliss) up to our vehicle limit. I also have a separate max heli count, and helis will spawn in based on the number I set (so I always have the same number of helis on the server).