He-Man Posted April 18, 2016 Report Share Posted April 18, 2016 I noticed, that ForceStaticTraders = true and the defined Traderpositions not really works. I set ForceStaticTraders = true, and the Trader Positions are often not in traderBlds from CfgEpoch. That's because this lines: EPOCH_server_spawnTraders: Spoiler _pos = _home; ... if (daytime > (_schedule select 0) && daytime < (_schedule select 1)) then { _pos = _work; }; This causes, that the Trader Position is sometimes _home and sometimes _work. But the traderBlds have only effect on the _work position. _home is absolutely random. To fix this, Change: EPOCH_server_spawnTraders.sqf: Spoiler if (daytime > (_schedule select 0) && daytime < (_schedule select 1)) then { _pos = _work; }; if (EPOCH_forceStaticTraders) then { // new _pos = _work; // new }; // new EPOCH_server_loadTraders.sqf: Spoiler if (daytime > (_schedule select 0) && daytime < (_schedule select 1)) then { _pos = (_work select 0); }; if (EPOCH_forceStaticTraders) then { // new _pos = (_work select 0); // new }; // new Now the Traderposition is always the _work position, if forceStaticTraders = true and the traderBlds from CfgEpoch will take effect. Link to comment Share on other sites More sharing options...
viper179 Posted April 19, 2016 Report Share Posted April 19, 2016 Where on earth did the cars go you no the ones you could set the amount of each spawnable vehicle i can not find it for the love of god Link to comment Share on other sites More sharing options...
Grahame Posted April 19, 2016 Report Share Posted April 19, 2016 Per vbawol: "The vehicle configs have moved here: https://github.com/EpochModTeam/Epoch/blob/master/Sources/epoch_server_settings/config.cpp#L65-L200 the previous allowedVehiclesList in the EpochConfig,hpp can be removed." I missed that to start with too Link to comment Share on other sites More sharing options...
He-Man Posted April 19, 2016 Author Report Share Posted April 19, 2016 You have to add it to the altis.h. Link to comment Share on other sites More sharing options...
82ndAB_Bravo17 Posted April 19, 2016 Report Share Posted April 19, 2016 15 hours ago, He-Man said: You have to add it to the altis.h. It can also go in config.cpp which is where the default list is. Link to comment Share on other sites More sharing options...
He-Man Posted April 19, 2016 Author Report Share Posted April 19, 2016 Okay, thanks Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now