Jump to content
  • 0

How to disable Care Package and etc config?


J.Dominic

Question

7 answers to this question

Recommended Posts

  • 0
32 minutes ago, J.Dominic said:

1. How to disalbe Care Packages?

2. How to set infected percent for Drink Water system?

3. I try to set default item in init.sqf but doesn't work.

4. How to add more spawn point?

All my questions for 1.0.6.0 Epoch.

Thank you everybodys :)

1. In your server_monitor you can comment out the carepackage script

2. Not sure look for the infectious water hole file somewhere in dayz_code

3. You need to copy configVariables.sqf and edit default items inside it (make sure you change the filepath)

4. You need to make your own custom spawn menu if you wish to have more spawn points

Link to comment
Share on other sites

  • 0
1 hour ago, J.Dominic said:

1. How to disalbe Care Packages?

2. How to set infected percent for Drink Water system?

3. I try to set default item in init.sqf but doesn't work.

4. How to add more spawn point?

All my questions for 1.0.6.0 Epoch.

Thank you everybodys :)

3- custom loadout?  go to your init.sqf and uncoment the lines for the spawn gear..

look like this:I

// Uncomment the lines below to change the default loadout
DefaultMagazines = ["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

First things i want to say thank you for Joshyy and juandayz.

On 16/12/2559 at 7:54 PM, juandayz said:

3- custom loadout?  go to your init.sqf and uncoment the lines for the spawn gear..

look like this:I


// Uncomment the lines below to change the default loadout
DefaultMagazines = ["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"];

I uncomment at DefaultMagazines only, That is reason my loadout doesn't work?

Link to comment
Share on other sites

  • 0
10 hours ago, J.Dominic said:

First things i want to say thank you for Joshyy and juandayz.

I uncomment at DefaultMagazines only, That is reason my loadout doesn't work?

see when you put a bar ( // ) in front of a lines of code this mean that you are disallowing this line.

for example:

hello im juan.  (gonna work)

//hello im juan. (do not work anymore)

 

also in your server_monitor.sqf check this:

[] execVM "\z\addons\dayz_server\compile\server_spawnCarePackages.sqf";

Link to comment
Share on other sites

  • 0
On 18/12/2559 at 10:19 PM, juandayz said:

see when you put a bar ( // ) in front of a lines of code this mean that you are disallowing this line.

for example:

hello im juan.  (gonna work)

//hello im juan. (do not work anymore)

 

also in your server_monitor.sqf check this:

[] execVM "\z\addons\dayz_server\compile\server_spawnCarePackages.sqf";

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

That my init.

I uncomment only DefaultMagazines but doesn't work.

I should uncomment all Default?

 

Link to comment
Share on other sites

  • 0
20 minutes ago, J.Dominic said:

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

That my init.

I uncomment only DefaultMagazines but doesn't work.

I should uncomment all Default?

 

you need uncoment the lines that you gonna use.

in your example,, you only use

defaultMagazines

you can use something like this

// Uncomment the lines below to change the default loadout
DefaultMagazines = ["HandRoadFlare","ItemBandage","ItemSodaCoke","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
DefaultWeapons = ["Makarov_DZ","ItemFlashlight","ItemRadio","ItemToolbox"];
DefaultBackpack = "DZ_Patrol_Pack_EP1";

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Advertisement
  • Discord

×
×
  • Create New...