skigoggles 0 Posted July 16, 2015 Does anyone have info to decode this field in the database? I found some code that was for epoch and it clearly doesn't match. Share this post Link to post Share on other sites
pjohnson7 7 Posted July 19, 2015 Does anyone have info to decode this field in the database? I found some code that was for epoch and it clearly doesn't match.It's not much...but if you can fill in any of the blanks I'd like to know too.I just started to document these for myself... Healthy[false,false,false,false,false,false,true,12010 Medical Problems 123 Sick [false,false,true,false,false,false,true]45 Broken Leg [[false,false,false,false,true,false,true]67 Share this post Link to post Share on other sites
skigoggles 0 Posted August 27, 2015 from server_functions.sqf server_medicalSync = {_player = _this select 0;_array = _this select 1; _player setVariable["USEC_isDead",(_array select 0)]; //0_player setVariable["NORRN_unconscious", (_array select 1)]; //1_player setVariable["USEC_infected",(_array select 2)]; //2_player setVariable["USEC_injured",(_array select 3)]; //3_player setVariable["USEC_inPain",(_array select 4)]; //4_player setVariable["USEC_isCardiac",(_array select 5)]; //5_player setVariable["USEC_lowBlood",(_array select 6)]; //6_player setVariable["USEC_BloodQty",(_array select 7)]; //7// _wounds; //8// [_legs,_arms]; //9_player setVariable["unconsciousTime",(_array select 10)]; //10_player setVariable["blood_type",(_array select 11)]; //11_player setVariable["rh_factor",(_array select 12)]; //12_player setVariable["messing",(_array select 13)]; //13_player setVariable["blood_testdone",(_array select 14)]; //14 }; Share this post Link to post Share on other sites