Add waves during stormy weather

See #974
This commit is contained in:
ebaydayz
2016-02-20 19:15:22 -05:00
parent 103467a111
commit 9876819da5
2 changed files with 54 additions and 2 deletions

View File

@@ -10,6 +10,7 @@
[NEW] Upgraded (_DZE1,2,3,4) ArmoredSUV and Kamaz classes are now available. #1518 #1538 @McKeighan
[NEW] Optional news/rules feed on player login from DayZ Mod, set dayz_enableRules in init.sqf #1673 @ebaydayz
[NEW] Weapon switch hotkeys (1 = primary, 2 = pistol, 3 = melee) from DayZ Mod #1673 @ebaydayz
[NEW] Added waves effect during stormy weather #974 @FramedYannick @ebaydayz
[CHANGED] An infection chance of -1 disables self-transfusion infection. 0 is always infected. (DZE_selfTransfuse_Values) @icomrade
[CHANGED] Removed weapons from Traders hands and made them stand with arms by their side. @SilvDev

View File

@@ -62,6 +62,57 @@ class CfgWorlds
{
initWorld = "Chernarus";
demoWorld = "Chernarus";
class DefaultWorld
{
class Weather
{
class Overcast
{
class Weather1;
class Weather2;
class Weather3;
class Weather4;
class Weather5;
};
};
};
class CAWorld: DefaultWorld
{
class Weather: Weather
{
class Overcast: Overcast
{
class Weather1: Weather1
{
waves = 0.2;
};
class Weather7: Weather1
{
waves = 0.2;
};
class Weather2: Weather2
{
waves = 0.22;
};
class Weather3: Weather3
{
waves = 0.32;
};
class Weather4: Weather4
{
waves = 0.52;
};
class Weather5: Weather5
{
waves = 0.72;
};
class Weather6: Weather5
{
waves = 2.00;
};
};
};
};
};
class CfgAddons