AntisocialChump 0 Report post Posted December 22, 2015 Hi, I have an exile server running and am trying to figure out why I am not seeing any vehicles that spawn within 100 meters in the middle of nowhere /////////////////////////////////////////////////////////////////////// // VEHICLE SPAWN CONFIGURATION /////////////////////////////////////////////////////////////////////// class VehicleSpawn { /** * Grid Size for vehicle spawning, * smaller the number more vehicles, * you get the point */ vehiclesGridSize = 100; /** * Vehicle ammount per grid * kinda self explanitory */ vehiclesGridAmount = 4; I am saving and shutting down and starting up my server and nothing happens. I even went to vehiclegridsize to 500, and vehiclesgridamount to 50 and I was still seeing nothing. Thank you. Share this post Link to post Share on other sites
hogansheroes 374 Report post Posted December 22, 2015 56 minutes ago, AntisocialChump said: Hi, I have an exile server running and am trying to figure out why I am not seeing any vehicles that spawn within 100 meters in the middle of nowhere /////////////////////////////////////////////////////////////////////// // VEHICLE SPAWN CONFIGURATION /////////////////////////////////////////////////////////////////////// class VehicleSpawn { /** * Grid Size for vehicle spawning, * smaller the number more vehicles, * you get the point */ vehiclesGridSize = 100; /** * Vehicle ammount per grid * kinda self explanitory */ vehiclesGridAmount = 4; I am saving and shutting down and starting up my server and nothing happens. I even went to vehiclegridsize to 500, and vehiclesgridamount to 50 and I was still seeing nothing. Thank you. on your sever how many vehicles do you really want on it, to me sounds like you want 1000 or more here is the default and to be honest you dont want to stuff this 1 up. you can change the vehiclesGridSize = 2300; either raise by 100's or lower by 100's for more vics class VehicleSpawn { /** * Grid Size for vehicle spawning, * smaller the number more vehicles, * you get the point */ vehiclesGridSize = 2300; /** * Vehicle ammount per grid * kinda self explanitory */ vehiclesGridAmount = 2; set it back to this and go from there slowly Share this post Link to post Share on other sites
AntisocialChump 0 Report post Posted December 22, 2015 10 minutes ago, hogansheroes said: on your sever how many vehicles do you really want on it, to me sounds like you want 1000 or more here is the default and to be honest you dont want to stuff this 1 up. you can change the vehiclesGridSize = 2300; either raise by 100's or lower by 100's for more vics class VehicleSpawn { /** * Grid Size for vehicle spawning, * smaller the number more vehicles, * you get the point */ vehiclesGridSize = 2300; /** * Vehicle ammount per grid * kinda self explanitory */ vehiclesGridAmount = 2; set it back to this and go from there slowly First off, I would like to say that I want to make my server to where you can find a vehicle immediately when you spawn in so you don't have to walk all the way. Second, the issue is, when I save the file containing this vehicles spawn info, it seems that it does not apply to the server even if I restart it. Share this post Link to post Share on other sites
hogansheroes 374 Report post Posted December 22, 2015 you got ts man Share this post Link to post Share on other sites
second_coming 836 Report post Posted December 22, 2015 20 minutes ago, AntisocialChump said: First off, I would like to say that I want to make my server to where you can find a vehicle immediately when you spawn in so you don't have to walk all the way. Second, the issue is, when I save the file containing this vehicles spawn info, it seems that it does not apply to the server even if I restart it. If you set it like that, the server will run like shit because you will have thousands of vehicles on the server. Just implement a spawnable quad bike instead. http://exile.majormittens.co.uk/topic/5898-spawning-bikequadbike-etc/ 1 Share this post Link to post Share on other sites