How to make custom Star-Gear in 1.7.7.1?

vfdesignz

New Member
Hey guys, I have a problem. I wan't to change the Start-Gear on my Server. I tried to edit the PVP-Gear in the instance table in the database, but it doesn't work, I tried this and it doesn't work too, and I tried to change the inventory in the Character_DATA table, and it doesnt' work either.

My Server is hosted by nitrado.net and currently running on Bliss/Reality.

Can someone help me? Ah, and If this is the wrong section for this thread, please move it.
 
I have the same problem With Nitrado. So please let me know when u know a way, or if someone else know:)?
 
This worked for me:

Open your "dayz_server.pbo" from "dayz\@bliss_1.chernarus\addons\".
Go to "compile" and extract the ""server_playerLogin.sqf"" and open it with Notepad++ or whatever you want.

Search for this:
//Record initial inventory _config = (configFile >> "CfgSurvival" >> "Inventory" >> "Default");
_mags = getArray (_config >> "magazines");
_wpns = getArray (_config >> "weapons");
_bcpk = getText (_config >> "backpack");
_randomSpot = true;

//Wait for HIVE to be free
_key = format["CHILD:203:%1:%2:%3:",_charID,[_wpns,_mags],[_bcpk,[],[]]]; _key call server_hiveWrite;

and replace it with this:

//Record initial inventory
_randomSpot = true;

_inventory = [["M4A1","M9SD","ItemGPS","ItemMap"],["30Rnd_556x45_Stanag","30Rnd_556x45_Stanag","30Rnd_556x45_Stanag","30Rnd_556x45_Stanag","ItemBandage","ItemBandage","15Rnd_9x19_M9SD","15Rnd_9x19_M9SD","15Rnd_9x19_M9SD","15Rnd_9x19_M9SD","15Rnd_9x19_M9SD","ItemPainkiller","ItemMorphine","ItemAntibiotic","ItemBloodbag"]];
_backpack = ["DZ_Backpack_EP1",[["huntingrifle"],[1]],[["5x_22_LR_17_HMR"],[4]]];
_key = format["CHILD:203:%1:%2:%3:",_charID,_inventory,_backpack];
_key call server_hiveWrite;

Now you can change the lines with the inventory and backpack. You can use the Loadout Generator for this, it's much easier.

Source: https://board.nitrado.net/support-d...-startgear-l-sst-sich-nicht-ndern/#post295207
 
Back
Top