Jump to content
  • 0

trying to get Humanity variable


chargedlight1

Question

https://epochmod.com/forum/topic/43153-released-custom-spawn-loadout-dependend-on-humanity/#comment-285478

-- OLD THREAT -- SOLVED!

Hello guys,

I have a question about spawning my gear on login. I want my default gear dependend on the amount of humanity. i'm currently working in the file: z\dayz_server\compile\server_playerLogin.sqf
But i cant get a reach on how to get that variable in the server. I dont know how to atleast. I've tried alot of variables like:
player getVariable['humanity',0]; which gives me <NULL>
and trying to debug _playerObj and_primary without luck.. server just crashes without any notification.
Here was my line of code to debug that:

diag_log format["object _playerObj: %1",_playerObj];
diag_log format["object _primary: %1",_primary];

does anyone know how to get that humanity variable ? i want to make a switch statement in the if statement here:

 

if (!_isNew) then {
	//RETURNING CHARACTER
	_inventory = _primary select 4;
	_backpack = _primary select 5;
	_survival = _primary select 6;
	_CharacterCoins = _primary select 7;
	_model = _primary select 8;
	_group = _primary select 9;
	_playerCoins = _primary select 10;
	_BankCoins = _primary select 11;
	_hiveVer = _primary select 12;
	if !(_model in AllPlayers) then {_model = "Survivor2_DZ";};
} else {
	_isInfected = if (DZE_PlayerZed) then {_primary select 3} else {0};
	_model = _primary select 4;
	_group = _primary select 5;
	_playerCoins = _primary select 6;
	_BankCoins = _primary select 7;
	_hiveVer = _primary select 8;	
	if (isNil "_model") then {
		_model = "Survivor2_DZ";
	} else {
		if (_model == "") then {_model = "Survivor2_DZ";};
	};
	//Record initial inventory only if not player zombie 
	if (_isInfected != 1) then {
		_config = configFile >> "CfgSurvival" >> "Inventory" >> "Default";
		_mags = getArray (_config >> "magazines");
		_wpns = getArray (_config >> "weapons");
		_bcpk = getText (_config >> "backpack");
		// Switch statement right here
		if (!isNil "DefaultMagazines") then {_mags = DefaultMagazines;};
		if (!isNil "DefaultWeapons") then {_wpns = DefaultWeapons;};
		if (!isNil "DefaultBackpack") then {_bcpk = DefaultBackpack;};
	
		//Wait for HIVE to be free
		_key = format["CHILD:203:%1:%2:%3:",_charID,[_wpns,_mags],[_bcpk,[],[]]];
		_key call server_hiveWrite;
	};

Something like:
 

if (!_isNew) then {
	//RETURNING CHARACTER
	_inventory = _primary select 4;
	_backpack = _primary select 5;
	_survival = _primary select 6;
	_CharacterCoins = _primary select 7;
	_model = _primary select 8;
	_group = _primary select 9;
	_playerCoins = _primary select 10;
	_BankCoins = _primary select 11;
	_hiveVer = _primary select 12;
	if !(_model in AllPlayers) then {_model = "Survivor2_DZ";};
} else {
	_isInfected = if (DZE_PlayerZed) then {_primary select 3} else {0};
	_model = _primary select 4;
	_group = _primary select 5;
	_playerCoins = _primary select 6;
	_BankCoins = _primary select 7;
	_hiveVer = _primary select 8;	
	if (isNil "_model") then {
		_model = "Survivor2_DZ";
	} else {
		if (_model == "") then {_model = "Survivor2_DZ";};
	};
	
	//Record initial inventory only if not player zombie 
	if (_isInfected != 1) then {
		_config = configFile >> "CfgSurvival" >> "Inventory" >> "Default";
		_mags = getArray (_config >> "magazines");
		_wpns = getArray (_config >> "weapons");
		_bcpk = getText (_config >> "backpack");
		// * CUSTOM LOADOUT SWITCHCASE! *
		switch (true) do {
			case(_humanity >= 5000): {
				DefaultMagazines = ["itemMap" //etc...];
			};
		};
		if (!isNil "DefaultMagazines") then {_mags = DefaultMagazines;};
		if (!isNil "DefaultWeapons") then {_wpns = DefaultWeapons;};
		if (!isNil "DefaultBackpack") then {_bcpk = DefaultBackpack;};
	
		//Wait for HIVE to be free
		_key = format["CHILD:203:%1:%2:%3:",_charID,[_wpns,_mags],[_bcpk,[],[]]];
		_key call server_hiveWrite;
	};
};


 

Link to comment
Share on other sites

Recommended Posts

  • 0

@chargedlight1 if is for epoch 1.6 you can try in your init.sqf

find:

// Uncomment the lines below to change the default loadout
//DefaultMagazines = ["ItemMap","HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
//DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
//DefaultBackpack = "DZ_Patrol_Pack_EP1";
//DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];

replace by:

PlayerHumanity = (player getVariable"humanity");

if (PlayerHumanity >= 5000) then {
//hero
DefaultMagazines = ["ItemMap","HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
DefaultBackpack = "DZ_Patrol_Pack_EP1";
DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];
};	
if (PlayerHumanity < 2500) then {
//bndit
DefaultMagazines = ["ItemMap","HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
DefaultBackpack = "DZ_Patrol_Pack_EP1";
DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];
}else{
DefaultMagazines = ["ItemMap","HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
DefaultBackpack = "DZ_Patrol_Pack_EP1";
DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];
};	

 

Link to comment
Share on other sites

  • 0
  Reveal hidden contents

Currently this is my code... The PlayerHumanity variable is undifined ;(


this is the error

 

  Reveal hidden contents

 

Link to comment
Share on other sites

  • 0

make this

 

private ["_isHero","_humanity","_isBandit"};
_humanity = player getVariable ["humanity",0];
_isBandit = _humanity < -5000;
_isHero = _humanity > 5000;

if (_isHero) then {
    DefaultMagazines = ["ItemMap","HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
    DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
    DefaultBackpack = "DZ_Patrol_Pack_EP1";
    DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];
	};	
    
if (_isBandit) then {

    DefaultMagazines = ["ItemMap","HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
    DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
    DefaultBackpack = "DZ_Patrol_Pack_EP1";
    DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];
    }else{
    DefaultMagazines = ["ItemMap","HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
    DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
    DefaultBackpack = "DZ_Patrol_Pack_EP1";
    DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];
	};	

 

Link to comment
Share on other sites

  • 0

Same error: 

15:02:41 Error in expression <getVariable ["humanity",0];
_isBandit = _humanity < -5000;
_isHero = _humanity >>
15:02:41   Error position: <_humanity < -5000;
_isHero = _humanity >>
15:02:41   Error Undefined variable in expression: _humanity

This was the reason i went deeper into the code to write the solution there. Same problem there. 
( Deeper file was:  z\dayz_server\compile\server_playerLogin.sqf )

However i did found out that in the file  z\dayz_server\compile\server_playerSetup.sqf
That the variable is getting set over there. 
_playerObj setVariable ["humanity",_humanity,true];

But then the variables (

 DefaultMagazines = ["ItemMap","HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
    DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
    DefaultBackpack = "DZ_Patrol_Pack_EP1";
    DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];

are already have been used to create the model. So these aren't getting used anymore from that point.

Link to comment
Share on other sites

  • 0

@coresync No i did not.. 

After i added those like this:

 

  Reveal hidden contents

The error is still the same. 

15:12:14 Error in expression <getVariable ["humanity",0];
_isBandit = _humanity < -5000;
_isHero = _humanity >>
15:12:14   Error position: <_humanity < -5000;
_isHero = _humanity >>
15:12:14   Error Undefined variable in expression: _humanity
15:12:14 File mpmissions\DayZ_Epoch_11.Chernarus\init.sqf, line 51


Now i also need to know what this: "_private" does. Is it simmular to this: http://stackoverflow.com/questions/4361553/what-is-the-difference-between-public-private-and-protected ?

Link to comment
Share on other sites

  • 0

as Init.sqf Requested:


init.sqf:

  Reveal hidden contents

 

Link to comment
Share on other sites

  • 0

try this

Ok, open rules.sqf and add this complete code

private ["_messages","_timeout","_isHero","_humanity","_isBandit"];

waitUntil {uiSleep 1; !isNil ("Dayz_loginCompleted")};

_humanity = player getVariable ["humanity",0];
_isBandit = _humanity < -5000;
_isHero = _humanity > 5000;

if (_isHero) then {
    DefaultMagazines = ["ItemMap","HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
    DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
    DefaultBackpack = "DZ_Patrol_Pack_EP1";
    DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];
	};	
    
if (_isBandit) then {

    DefaultMagazines = ["ItemMap","HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
    DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
    DefaultBackpack = "DZ_Patrol_Pack_EP1";
    DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];
    }else{
    DefaultMagazines = ["ItemMap","HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
    DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
    DefaultBackpack = "DZ_Patrol_Pack_EP1";
    DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];
	};	

_messages = [
	["DayZ Epoch", "Welcome "+(name player)],
	["World", worldName],
	["Teamspeak", "some TS info"],
	["Website/Forums", "some website info"],
	["Server Rules", "Duping, glitching or using any<br />exploit will result in a<br />permanent ban."],
	["Server Rules", "No talking in side."],
	["Server Rules", "Hackers will be banned permanently<br />Respect others"],
	["News", "Some random new info!<br />Random news<br />"]
];
 
_timeout = 5;
{
	private ["_title","_content","_titleText"];
	uiSleep 2;
	_title = _x select 0;
	_content = _x select 1;
	_titleText = format[("<t font='TahomaB' size='0.40' color='#a81e13' align='right' shadow='1' shadowColor='#000000'>%1</t><br /><t shadow='1'shadowColor='#000000' font='TahomaB' size='0.60' color='#FFFFFF' align='right'>%2</t>"), _title, _content];
	[
		_titleText,
		[safezoneX + safezoneW - 0.8,0.50],     //DEFAULT: 0.5,0.35
		[safezoneY + safezoneH - 0.8,0.7],      //DEFAULT: 0.8,0.7
		_timeout,
		0.5
	] spawn BIS_fnc_dynamicText;
	uiSleep (_timeout * 1.1);
} forEach _messages;

and try again

Link to comment
Share on other sites

  • 0
  Reveal hidden contents

Still doesnt work.. the rules.sqf ist getting executed at all it seems like. Or atleast it doesn't log into the RPT.

Here is my code

 

  Reveal hidden contents

i dont really understand why it doesn't load.

I moved the previous from the init.sqf to a seperate file.

Here is my init.sqf:

 

  Reveal hidden contents


Isnt it also the case that in the rules.sqf the loaded variables already have been used by then? Since in the init.sqf the server loads the rules.sqf as almost the last file.
- Chargedlight1

Link to comment
Share on other sites

  • 0

@chargedlight1

go to your init.sqf

remove this lines or just leave commented

// Uncomment the lines below to change the default loadout
//DefaultMagazines = ["ItemMap","HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
//DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
//DefaultBackpack = "DZ_Patrol_Pack_EP1";
//DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];

at bottom of init.sqf paste:

[] ExecVM "custom\startloadouts.sqf";

 

create the path mpmissions\your instance\custom\

now place into this new path

startloadouts.sqf

private ["_isHero","_humanity","_isBandit"};
_humanity = player getVariable ["humanity",0];
_isBandit = _humanity < -5000;
_isHero = _humanity > 5000;
adminsandmodersList= ["7656119825757****"];  //An array of adms replace with your admins ids


if((getPlayerUID player) in adminsandmodersList) then {
DefaultMagazines = ["ItemMap","HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
    DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
    DefaultBackpack = "DZ_Patrol_Pack_EP1";
    DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];
	};

if (_isHero) then {
    DefaultMagazines = ["ItemMap","HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
    DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
    DefaultBackpack = "DZ_Patrol_Pack_EP1";
    DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];
	};	
    
if (_isBandit) then {

    DefaultMagazines = ["ItemMap","HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
    DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
    DefaultBackpack = "DZ_Patrol_Pack_EP1";
    DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];
};
 if (!_isHero and !_isBandit) then {	
    DefaultMagazines = ["ItemMap","HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
    DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
    DefaultBackpack = "DZ_Patrol_Pack_EP1";
    DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];
	};	

 

Link to comment
Share on other sites

  • 0
  On 1/12/2017 at 2:58 PM, juandayz said:

@chargedlight1

go to your init.sqf

remove this lines

// Uncomment the lines below to change the default loadout
//DefaultMagazines = ["ItemMap","HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
//DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
//DefaultBackpack = "DZ_Patrol_Pack_EP1";
//DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];

at bottom of init.sqf paste:

[] ExecVM "custom\startloadouts.sqf";

 

create the path mpmissions\your instance\custom\

now place into this new path

startloadouts.sqf

private ["_isHero","_humanity","_isBandit"};
_humanity = player getVariable ["humanity",0];
_isBandit = _humanity < -5000;
_isHero = _humanity > 5000;
adminsandmodersList= ["7656119825757****"];  //An array of adms replace with your admins ids


if((getPlayerUID player) in adminsandmodersList) then {
DefaultMagazines = ["ItemMap","HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
    DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
    DefaultBackpack = "DZ_Patrol_Pack_EP1";
    DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];
	};

if (_isHero) then {
    DefaultMagazines = ["ItemMap","HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
    DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
    DefaultBackpack = "DZ_Patrol_Pack_EP1";
    DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];
	};	
    
if (_isBandit) then {

    DefaultMagazines = ["ItemMap","HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
    DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
    DefaultBackpack = "DZ_Patrol_Pack_EP1";
    DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];
    }else{
    DefaultMagazines = ["ItemMap","HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
    DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
    DefaultBackpack = "DZ_Patrol_Pack_EP1";
    DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];

 

Expand  

Isn't it: 

private ["_isHero","_humanity","_isBandit"};
->
private ["_isHero","_humanity","_isBandit"];
Didn't notice since my server gave an error
Link to comment
Share on other sites

  • 0

Back to the old error again @juandayz

16:08:37 Error in expression <getVariable ["humanity",0];
_isBandit = _humanity < -5000;
_isHero = _humanity >>
16:08:37   Error position: <_humanity < -5000;
_isHero = _humanity >>
16:08:37   Error Undefined variable in expression: _humanity


maybe i can like check if a player is a freshspawn. then remove all his old contents. then replace it with new ones. Missions are getting spawned with: Add_magazine "Type of ammo for gun." Right? Because i think that these variables are getting adjusted toolate, Everything has loaded in. Loadouts are getting configured in the server. not on the client side. 
Removing all of their content and replacing it with the decired contents solved this problem. 

Not the fact that my code cant find my humanity.. which is very odd in my opinion. I see other posts where that is getting used aswell.

Link to comment
Share on other sites

  • 0

you also can replace with this at top of define variables

private ["_isHero","_isBandit"};

_isHero = (player getVariable["humanity",0]) >= 5000;
_isBandit = (player getVariable["humanity",0]) <= 5000;

adminsandmodersList= ["7656119825757****"];  //An array of adms replace with your admins ids

 

Link to comment
Share on other sites

  • 0

so its looks:

  Reveal hidden contents

 

Link to comment
Share on other sites

  • 0

For those who tried to help me and are qurious how i fixed this problem:

In the z/dayz_server/compile/server_playerLogin.sqf i pasted this piece of code underneath the _charID which is important. 
I created another connection attempt in hive 102.. no idea what it exactly does ( I assume just a simple querry like :(SELECT * FROM Character_DATA where CharachterID = _charID (example: 15) ). but here you go. The variable humanity comes out of the database!
 


//Process request
_newPlayer = _primary select 1;
_isNew = count _primary < 10; //_result select 1;
_charID = _primary select 2;

//Do Connection Attempt
// humanity
_doLoop = 0;
while {_doLoop < 5} do {
	_key = format["CHILD:102:%1:",_charID];
	_primcharvar = _key call server_hiveReadWrite;
	if (count _primcharvar > 0) then {
		if ((_primcharvar select 0) != "ERROR") then {
			_doLoop = 9;
		};
	};
	_doLoop = _doLoop + 1;
};

_humanity = _primcharvar select 5;

diag_log format["_humanity var: %1",_humanity];

# DONT FORGET TO ADD: __humanity & _primcharvar to the PRIVATE on top of this file.
if i add the if statements from @juandayz i did like so:
 

/* PROCESS */
_hiveVer = 0;

if (!_isNew) then {
	//RETURNING CHARACTER
	_inventory = _primary select 4;
	_backpack = _primary select 5;
	_survival = _primary select 6;
	_CharacterCoins = _primary select 7;
	_model = _primary select 8;
	_group = _primary select 9;
	_playerCoins = _primary select 10;
	_BankCoins = _primary select 11;
	_hiveVer = _primary select 12;
	if !(_model in AllPlayers) then {_model = "Survivor2_DZ";};
} else {
	_isInfected = if (DZE_PlayerZed) then {_primary select 3} else {0};
	_model = _primary select 4;
	_group = _primary select 5;
	_playerCoins = _primary select 6;
	_BankCoins = _primary select 7;
	_hiveVer = _primary select 8;	
	if (isNil "_model") then {
		_model = "Survivor2_DZ";
	} else {
		if (_model == "") then {_model = "Survivor2_DZ";};
	};
	
	//Record initial inventory only if not player zombie 
	if (_isInfected != 1) then {
		_config = configFile >> "CfgSurvival" >> "Inventory" >> "Default";
		_mags = getArray (_config >> "magazines");
		_wpns = getArray (_config >> "weapons");
		_bcpk = getText (_config >> "backpack");
		
		_isBandit = _humanity < -5000;
		_isHero = _humanity > 5000;

		if (_humanity > 5000) then {
			DefaultMagazines = ["ItemMap","HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
			DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
			DefaultBackpack = "DZ_Patrol_Pack_EP1";
			DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];
			};	
			
		if (_humanity < -5000) then {

			DefaultMagazines = ["ItemMap","HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
			DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
			DefaultBackpack = "DZ_Patrol_Pack_EP1";
			DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];
			}else{
			DefaultMagazines = ["ItemMap","HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
			DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
			DefaultBackpack = "DZ_Patrol_Pack_EP1";
			DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];
		
		};
		if (!isNil "DefaultMagazines") then {_mags = DefaultMagazines;};
		if (!isNil "DefaultWeapons") then {_wpns = DefaultWeapons;};
		if (!isNil "DefaultBackpack") then {_bcpk = DefaultBackpack;};
	
		//Wait for HIVE to be free
		_key = format["CHILD:203:%1:%2:%3:",_charID,[_wpns,_mags],[_bcpk,[],[]]];
		_key call server_hiveWrite;
	};
};

You should be glad that you dont life right next to me. All the birds flew out of the trees of my succes scream.

- Chargedlight1

 

Link to comment
Share on other sites

  • 0

@chargedlight1  this is a great contribution by you!!  i think you can start a new thread in epoch 1,6 mods or 1.6 tools about it.. to not loose it in time.

 

and you can add a donor list

private ["_player","_UID"];
_player = player;
_UID = getPlayerUID _player;
//Donor Loadout
DonorList = ["",""]; // Donors IDS
GrandDonorList = ["",""];
        if(_UID inGrandDonorList) then {
            DefaultMagazines = "";
            DefaultWeapons = "";
            DefaultBackpack = "DZ_Backpack_EP1";
            DefaultBackpackWeapon = "";
        }else{
           
            if(_UID in DonorList) then {
                DefaultMagazines = "";
                DefaultWeapons = "";
                DefaultBackpack = "DZ_ALICE_Pack_EP1";
                DefaultBackpackWeapon = "";
            
            };
        };

 

Link to comment
Share on other sites

  • 0

or add this bunch of code :laugh:

  Reveal hidden contents

 

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Discord

×
×
  • Create New...