Jump to content
  • 0

How do I? Several Questions!


Crystal

Question

Thought I'd save my questions up and just do one big post!

 

1. What are the trader id's for Chernarus?

 

2. Is there any way to make name tags compulsory, or even remove the option altogether.

 

3. I am using Infistar - is there any way I can use my own custom debug monitor?

 

4. Is there one big list of all the items / weapons / ammo with the database names? I'd like to put together my own trader stocks but with some additions and modifications.

 

5. I am using DZAI. I'd like to make the bandits extremely hard to kill - how can I adjust them in the config file?

 

6. Is there any way to assign a maintenance command to specific items? Sandbags for example...

 

Thank you in advance for any help :)

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

2. Is there any way to make name tags compulsory, or even remove the option altogether.
I believe you can just remove the option for it in fn_selfActions.sqf

if (!DZE_ForceNameTagsOff) then {
	if (s_player_showname < 0 and !_isPZombie) then {
		if (DZE_ForceNameTags) then {
			s_player_showname = 1;
			player setVariable["DZE_display_name",true,true];
		} else {
			s_player_showname = player addAction ["Display Name (Yes)", "\z\addons\dayz_code\actions\display_name.sqf",true, 0, true, false, "",""];
			s_player_showname1 = player addAction ["Display Name (No)", "\z\addons\dayz_code\actions\display_name.sqf",false, 0, true, false, "",""];
		};
	};
};

1. What are the trader id's for Chernarus?

Check the server_traders database table, should find the ID's there.

 

5. I am using DZAI. I'd like to make the bandits extremely hard to kill - how can I adjust them in the config file?

dzai_config.sqf at around line 253 and down. Change these values around.

DZAI_skill0 = [        
        ["aimingAccuracy",0.10,0.15],
        ["aimingShake",0.50,0.60],
        ["aimingSpeed",0.50,0.60],
        ["endurance",0.40,0.60],
        ["spotDistance",0.30,0.45],
        ["spotTime",0.50,0.65],
        ["courage",0.40,0.60],
        ["reloadSpeed",0.40,0.60],
        ["commanding",0.40,0.60],
        ["general",0.40,0.60]
];
Link to comment
Share on other sites

  • 0

3. I am using Infistar - is there any way I can use my own custom debug monitor?

 

In the AHconfig.sqf file, you just turn off Infistar's debug and yours will show (if set up correctly in the first place)

 

Shown below is turned off.

/*  Use DebugMonitor      */ _DMS =  false; /* true or false */ /* starts up with debugmonitor ON if true */
Link to comment
Share on other sites

  • 0

6. Is there any way to assign a maintenance command to specific items? Sandbags for example...
There is, however it's slightly complicated I believe. 

http://opendayz.net/threads/release-deploy-vehicles-done-the-right-way.15111/
 

Dami from OpenDayz has a nice script which makes you deploy vehicles through inventory. 
Take a look at his scripting and functions and see if you can get any ideas. 

Link to comment
Share on other sites

  • 0

3. Go into the AHConfig and search for this line: /*  Use DebugMonitor      */ _DMS =  true; /* true or false */ /* starts up with debugmonitor ON if true */

 

And set that to false, then just use a custom debug like you normally would

 

6. Not that i'm aware of.

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...