]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
start out with 0.25 charge
authorFruitieX <rasse@rasse-laptop.(none)>
Sun, 17 Oct 2010 23:14:07 +0000 (02:14 +0300)
committerFruitieX <rasse@rasse-laptop.(none)>
Sun, 17 Oct 2010 23:14:07 +0000 (02:14 +0300)
balance25.cfg
balanceLeeStricklin.cfg
balanceNexSVN.cfg
balanceSamual.cfg
balanceXonotic.cfg
qcsrc/server/cl_client.qc

index ecaab3f3d1759435419a868ebac3a9c53579d967..158f676844e4c348a85e9015853fee0a21b20b86 100644 (file)
@@ -442,6 +442,7 @@ set g_balance_nex_secondary_damagefalloff_halflife 0
 set g_balance_nex_secondary_damagefalloff_forcehalflife 0
 
 set g_balance_nex_charge 0
+set g_balance_nex_charge_start 0
 set g_balance_nex_charge_rate 0.1
 set g_balance_nex_charge_shot_multiplier 0.5
 set g_balance_nex_charge_velocity_rate 0.2
index a2c00ce3729d11761eba9e9fcb31aeb10eedf4a0..11d85e4335640df92ab106a87df097491e73372a 100644 (file)
@@ -453,6 +453,7 @@ set g_balance_nex_secondary_damagefalloff_halflife 9999999
 set g_balance_nex_secondary_damagefalloff_forcehalflife 9999999
 
 set g_balance_nex_charge 0
+set g_balance_nex_charge_start 0
 set g_balance_nex_charge_rate 0.1
 set g_balance_nex_charge_shot_multiplier 0.5
 set g_balance_nex_charge_velocity_rate 0.2
index 284f85c65b79253533d8f03fcc0d7d1e7d7d4a89..654ec6cc10a4baad704f416a09b2d777133f0144 100644 (file)
@@ -441,6 +441,7 @@ set g_balance_nex_secondary_damagefalloff_halflife 1500
 set g_balance_nex_secondary_damagefalloff_forcehalflife 1500
 
 set g_balance_nex_charge 0
+set g_balance_nex_charge_start 0
 set g_balance_nex_charge_rate 0.1
 set g_balance_nex_charge_shot_multiplier 0.5
 set g_balance_nex_charge_velocity_rate 0.2
index aef05391fac32c18d53806c21a5aa051c25ef6b6..9a49f3da96d7918954d3e9171b4466486252a640 100644 (file)
@@ -442,6 +442,7 @@ set g_balance_nex_secondary_damagefalloff_halflife 1500
 set g_balance_nex_secondary_damagefalloff_forcehalflife 1500
 
 set g_balance_nex_charge 0
+set g_balance_nex_charge_start 0
 set g_balance_nex_charge_rate 0.1
 set g_balance_nex_charge_shot_multiplier 0.5
 set g_balance_nex_charge_velocity_rate 0.2
index 68997d40d749c3d62baa6e38b17ca3f3105f56fa..2072b3817b8df5d61fb426b52b9dbe81a5da2a0a 100644 (file)
@@ -442,8 +442,9 @@ set g_balance_nex_secondary_damagefalloff_halflife 0
 set g_balance_nex_secondary_damagefalloff_forcehalflife 0
 
 set g_balance_nex_charge 1
+set g_balance_nex_charge_start 0.25
 set g_balance_nex_charge_rate 0.025
-set g_balance_nex_charge_shot_multiplier 0.75
+set g_balance_nex_charge_shot_multiplier 0.675
 set g_balance_nex_charge_velocity_rate 0.175
 set g_balance_nex_charge_minspeed 400
 set g_balance_nex_charge_maxspeed 1000
index 03d574f62668e0d4677945183ac9d3180a3ef69e..df6c8d4b2a3f41e0793e271d8aae9a9b54512692 100644 (file)
@@ -889,7 +889,8 @@ void PutClientInServer (void)
                        self.effects = 0;
                self.air_finished = time + 12;
                self.dmg = 2;
-               self.nex_charge = 0;
+               if(cvar("g_balance_nex_charge"))
+                       self.nex_charge = cvar("g_balance_nex_charge_start");
 
                if(inWarmupStage)
                {