From 80c3ba0917eac3ca9dc4603d4b6ce0e7a3745ca0 Mon Sep 17 00:00:00 2001 From: vbawol Date: Tue, 12 Sep 2017 13:50:25 -0500 Subject: [PATCH] testing for civ males --- Sources/epoch_code/init/client_init.sqf | 3 +++ Sources/epoch_config/Configs/CfgEpochClient.hpp | 10 +++++----- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Sources/epoch_code/init/client_init.sqf b/Sources/epoch_code/init/client_init.sqf index a690993b..25a600aa 100644 --- a/Sources/epoch_code/init/client_init.sqf +++ b/Sources/epoch_code/init/client_init.sqf @@ -84,6 +84,9 @@ call EPOCH_clientInit; [] execFSM "epoch_code\system\SPVEH.fsm"; [] execFSM "epoch_code\system\player_login.fsm"; +// testing for civilan males +player addRating -2000; + //Start processing right after Loading screen is done and game has started [] spawn { waitUntil {!isNull (findDisplay 46) && (!isNil "EPOCH_loadingScreenDone")}; diff --git a/Sources/epoch_config/Configs/CfgEpochClient.hpp b/Sources/epoch_config/Configs/CfgEpochClient.hpp index d1b31ec1..6107aca2 100644 --- a/Sources/epoch_config/Configs/CfgEpochClient.hpp +++ b/Sources/epoch_config/Configs/CfgEpochClient.hpp @@ -88,7 +88,7 @@ class CfgEpochClient {"Temp",98.6,{106.7,95,102,105,96,95}}, {"Hunger",1500,{5000,0,5001,5001,1250,0}}, {"Thirst",750,{2500,0,2501,2501,625,0}}, - {"AliveTime",0,{-2,0}}, + {"AliveTime",0,{-2,0}}, // local {"Energy",0,{2500,0}}, {"Wet",0,{100,0,35,55,-1,-1}}, {"Soiled",0,{100,0,35,55,-1,-1}}, @@ -96,12 +96,12 @@ class CfgEpochClient {"Toxicity",0,{100,0,35,55,-1,-1}}, {"Stamina",100,{"EPOCH_playerStaminaMax",0}}, {"Crypto",0,{250000,0}}, - {"HitPoints",{0,0,0,0},{1,0,0.5,1,-1,-1}}, + {"HitPoints",{0,0,0,0},{1,0,0.5,1,-1,-1}}, // only limits here used for HUD. {"BloodP",100,{190,0,120,140,70,50}}, {"SpawnArray",{},{}}, - {"Karma",0,{50000,-50000}}, + {"Karma",0,{50000,-50000}}, // TODO remove or replace {"Alcohol",0,{100,0,35,55,-1,-1}}, - {"Radiation",0,{100,0,35,55,-1,-1}}, + {"Radiation",0,{100,0,35,55,-1,-1}}, // local {"Nuisance",0,{100,0}}, {"MissionArray",{},{}} }; @@ -132,7 +132,7 @@ class CfgEpochClient InventoryClosed = "_this call EPOCH_InventoryClosed;_this call EPOCH_custom_EH_InventoryClosed"; InventoryOpened = "_this call EPOCH_InventoryOpened||_this call EPOCH_custom_EH_InventoryOpened"; // the || here allows either function to block opening of inventory by returning true. Killed = "_this call EPOCH_fnc_playerDeath;_this call Epoch_custom_EH_Killed"; - HandleRating = "0"; + HandleRating = "-2000"; HandleScore = ""; HandleDamage = ""; HandleHeal = "";