Jump to content
Sign in to follow this  
JacobJ

Turn off wounding system?

Recommended Posts

Hey all

I have problems turning the wounding system off. I have no Æ wounding system module in my mission and the wounding system is still active.

I have tried this:

description.ext (placed within the Class Params {

class woundingsystem	{

	title = "Wounding-system";
	values[] = {1,2};
	default = 2;
	texts[] = {"On", "Off"};
	};	

init.sqf

//Enable wounding system
switch (paramsarray select 7) do {
 case 1: {};
 case 2: {if (isServer) then {ace_sys_wounds_enabled = false; publicVariable 'ace_sys_wounds_enabled'}; };
};

But it doesnt turn the wounding system off.. What can I have done wrong?

/Jacob

Share this post


Link to post
Share on other sites
Guest
This topic is now closed to further replies.
Sign in to follow this  

×