TheSh1tGamer 53 Report post Posted December 19, 2015 I seem to have a problem where bikes sapwn in the middle of the road, Kinda deadly when doing 100 down the road, Is there a way to remove them completely, have looked in server.cofig.pbo, and removed them, but they still appear, Also changing server time doesnt do anything Thank you Share this post Link to post Share on other sites
CEN 449 Report post Posted December 19, 2015 exile_server_config.pbo > config.cpp remove them from your spawn vehicles array: /** * These vehicles spawn on server restart close to spawn zones. * They are non-persistent and will despawn on server restart. * Basically they are just used to get away from the spawn zone * faster. * * {Number of vehicles *per* spawn zone, vehicle class name} */ spawnZoneVehicles[] = { {2, "Exile_Car_Hatchback_Rusty1"}, {2, "Exile_Car_Offroad_Rusty1"}, {6, "Exile_Bike_QuadBike_Guerilla01"} }; Share this post Link to post Share on other sites
taikonaut 26 Report post Posted January 17, 2016 Hmm... I like the bikes. I just don´t like them on roads, because they are hard to spot, even when driving with a moderate speed. Maybe there could be some kind of position offset. Share this post Link to post Share on other sites
ka0s 457 Report post Posted January 17, 2016 What I did to avoid this, is to remove all spawn vehicles, and give players option to deploy bike instead of having ambient spawn, bike can only be spawned once per life/death. Seems to do the trick fine for me 2 Share this post Link to post Share on other sites
GamersRoost 265 Report post Posted January 17, 2016 4 hours ago, ka0s said: What I did to avoid this, is to remove all spawn vehicles, and give players option to deploy bike instead of having ambient spawn, bike can only be spawned once per life/death. Seems to do the trick fine for me Ditto, except i don't have spawn script. I set my vic grid to 1200 and 3 seems a perfect balance for "Easy mode" server. Share this post Link to post Share on other sites
TDBGaming 121 Report post Posted June 1, 2016 If you want to get the bikes to spawn randomly inside the spawn area its a simple edit. It is not guaranteed to keep them off the road but there will be more chance of them not being on the road. In @ExileServer\addons\exile_server\code\ExileServer_world_spawnSpawnZoneVehicles.sqf you need to edit one line. Find ExileClient_util_world_findRoadPosition; and replace with ExileClient_util_math_getRandomPositionInCircle; Share this post Link to post Share on other sites