Less money drops

This commit is contained in:
He-Man 2018-02-16 16:41:44 +01:00
parent fbd105186c
commit d3cd899582
2 changed files with 2 additions and 2 deletions
Server_Install_Pack/@epochhive
Sources/epoch_server_settings/EpochEvents

@ -19,7 +19,7 @@ forceRestartTime = 14400; // 4 hour restarts
{ 900, "ChangeWeather", 1 , 1, -1, {} ,{"VR"}},
{ 1200, "ContainerSpawner", 0 , 1, -1, {} ,{"VR"}},
{ 1440, "GardenManager", 0 , 1, -1, {} ,{"VR"}},
{ 600, "MoneyDrop", 0 , 1 , -1, {} ,{"VR"}}, //No comma on last Entry
{ 900, "MoneyDrop", 0 , 1 , -1, {} ,{"VR"}}, //No comma on last Entry
{ 300, "PlantSpawner", 0 , 1 , -1, {} ,{"VR"}} //No comma on last Entry
};

@ -36,7 +36,7 @@ for "_i" from 0 to 100 step 1 do {
if ((count _position) == 2) then{
_playersNearEpicenter = _position nearEntities[["Epoch_Male_F", "Epoch_Female_F"], 1000];
// decrease chance with more players
_chance = 0.2 + (linearConversion [1, 100, (count allPlayers), 0, 0.5, true]);
_chance = 0.1 + (linearConversion [1, 100, (count allPlayers), 0, 0.5, true]);
if ((random 1) < _chance) then {
_values = getArray(_cfgEpoch >> "MoneyDropValues");