Jump to content

Arma 2 update 112555


cring0

Recommended Posts

So, I checked updates in DayZ Commander and saw an update for Arma 2 and just installed it without thinking.  Now every server I try connecting to says "bad version."  XD

 

I'm assuming this is the move from Gamespy to Steam?  I tried looking for information about the update but can't find any. =/  Hopefully servers are just behind on the update and Commander didn't just give me content that I didn't want. lol

Link to comment
Share on other sites

NUB MODE ENGAGED//  Soo.. requiredBuild = 112555 is all that's needed on the server's end?  So admins are slackin' and I just need to hang it out, or do I need to roll Arma 2 back somehow?

Link to comment
Share on other sites

NUB MODE ENGAGED//  Soo.. requiredBuild = 112555 is all that's needed on the server's end?  So admins are slackin' and I just need to hang it out, or do I need to roll Arma 2 back somehow?

 

 

I pushed the 112555 build out onto a few servers, many complaints of bad fps drops caused us to roll back to the stable 103718.

 

 

So, I checked updates in DayZ Commander and saw an update for Arma 2 and just installed it without thinking.  Now every server I try connecting to says "bad version."  XD

 

I'm assuming this is the move from Gamespy to Steam?  I tried looking for information about the update but can't find any. =/  Hopefully servers are just behind on the update and Commander didn't just give me content that I didn't want. lol

 

In the config.cfg you will find

reportingIP = "arma2oapc.master.gamespy.com";

So for us to switch off of gamespy we would have to get a new reportingIP from BIS.

Link to comment
Share on other sites

It's because patch 1.0.4.2 only works with patch 103718. It's on Commander just as an older version.

 

Since you replied already here. Any information about 1.0.5???? I mean you see that we have currently at least 4 threads about gamespy shutting down tomorrow and some of the people seem to hope that 1.0.5 fixes some of the bugs that are starting to showing up as soon as you apply the latest beta patch. Would be lovely if you would finally share something...

Link to comment
Share on other sites

I was playing on AmongTheDead(Cen's server) this morning since they were the only ones I could find near me that was updated and it seemed to run fine.  My FPS was sitting at a solid 60.  Care to elaborate on some of the bugs?

Link to comment
Share on other sites

Great for you guys running servers on dedicated boxes, but those of us using hosting companies, we can't update.

^This

Im just waiting for Vilayer to tell me its been updated :/

nothing i can do till then, all my players will have to directly connect via IP

Link to comment
Share on other sites

I was playing on AmongTheDead(Cen's server) this morning since they were the only ones I could find near me that was updated and it seemed to run fine.  My FPS was sitting at a solid 60.  Care to elaborate on some of the bugs?

 

Only thing I've seen so far is some RPT errors about undefined variables (mostly custom code stuff) and HALO spawn the parachute doesn't disappear when you land (we don't use HALO spawn).

Link to comment
Share on other sites

Will attempt to push it on to my servers today, not noticed any major changes on my test server except a few .rpt errors as mentioned earlier. 

Edit: When pushing it to my other servers I keep getting:

"Error found in file ALL\ARMA2OASERVER.EXE"

 

Guess it will take a bit longer before I get some results.

Link to comment
Share on other sites

Only thing I've seen so far is some RPT errors about undefined variables (mostly custom code stuff) and HALO spawn the parachute doesn't disappear when you land (we don't use HALO spawn).

 

 

Agreed, most of the error's I've got are from undefined in the various mission systems, fixed most of them bar one now. 

 

My HALO spawn works fine, parachute disappears when you land,  I am using custom code for an altimeter and the likes, maybe its something in the default halo spawn?

 

Once I get this undefined variable bug with DZMS ironed out, I'll be pushing the update onto my servers :)

Link to comment
Share on other sites

Biggest one is this which stops loot from being cleaned up.

 

Anyone know of a fix?

14:02:40 Error in expression <x getVariable ["permaLoot",false];
if (!_keep) then {
_created = _x getVariable >
14:02:40   Error position: <_keep) then {
_created = _x getVariable >
14:02:40   Error Undefined variable in expression: _keep
14:02:40 File z\addons\dayz_server\init\server_functions.sqf, line 810

Function is this:

server_spawnCleanLoot = {
	private ["_created","_delQty","_nearby","_age","_keep","_qty","_missionObjs","_dateNow"];
	if (DZE_DYN_AntiStuck > 3) then { DZE_DYN_cleanLoot = nil; DZE_DYN_AntiStuck = 0; };
	if(!isNil "DZE_DYN_cleanLoot") exitWith {  DZE_DYN_AntiStuck = DZE_DYN_AntiStuck + 1;};
	DZE_DYN_cleanLoot = true;

	_missionObjs =  allMissionObjects "ReammoBox";
	_delQty = 0;
	_dateNow = (DateToNumber date);
	{
		_keep = _x getVariable ["permaLoot",false];
		if (!_keep) then {
			_created = _x getVariable ["created",-0.1];
			if (_created == -0.1) then {
				_x setVariable ["created",_dateNow,false];
				_created = _dateNow;
			} else {
				_age = (_dateNow - _created) * 525948;
				if (_age > 8) then {
					_nearby = {(isPlayer _x) and (alive _x)} count (_x nearEntities [["CAManBase","AllVehicles"], 100]);
					if (_nearby==0) then {
						deleteVehicle _x;
						sleep 0.025;
						_delQty = _delQty + 1;
					};
				};
			};
		};
		sleep 0.001;
	} forEach _missionObjs;
	if (_delQty > 0) then {
		_qty = count _missionObjs;
		diag_log (format["CLEANUP: Deleted %1 Loot Piles out of %2",_delQty,_qty]);
	};
	DZE_DYN_cleanLoot = nil;
};
Link to comment
Share on other sites

I'm having similar problems with Sarge_AI....

14:38:49 Error in expression <[];
{
if (_foreachindex > 0 && {!isnull _x} && {alive _x} && {!captive _x} ) the>
14:38:49   Error position: <_x} && {alive _x} && {!captive _x} ) the>
14:38:49   Error Undefined variable in expression: _x
14:38:49 File mpmissions\__cur_mp.chernarus\addons\UPSMON\scripts\Init_UPSMON.sqf, line 353
14:38:50 Error in expression <yz_serverObjectMonitor;

sleep 5;

if ((_chk_counts != 0) && {count dayz_serverO>
14:38:50   Error position: <_chk_counts != 0) && {count dayz_serverO>
14:38:50   Error Undefined variable in expression: _chk_counts
14:38:50 File mpmissions\__cur_mp.chernarus\addons\SARGE\SAR_vehicle_fix.sqf, line 36
14:38:50 Error in expression <while {_loop} do {

_chk_counts = count dayz_serverObjectMonitor;

sleep 5;

if >
14:38:50   Error position: <dayz_serverObjectMonitor;

sleep 5;

if >
14:38:50   Error Undefined variable in expression: dayz_serverobjectmonitor
14:38:50 File mpmissions\__cur_mp.chernarus\addons\SARGE\SAR_vehicle_fix.sqf, line 32

14:38:57 Error in expression <yz_serverObjectMonitor;

sleep 5;

if ((_chk_count != 0) && {count dayz_serverO>
14:38:57   Error position: <_chk_count != 0) && {count dayz_serverO>
14:38:57   Error Undefined variable in expression: _chk_count

The server report is flooded  with it.  I'll have to stop using sarge_ai

Link to comment
Share on other sites

0 Error Undefined variable in expression: dzmsmindone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMinTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error position: <DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmajdone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMajTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error position: <DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmindone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMinTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error position: <DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmajdone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMajTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error position: <DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmindone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMinTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error position: <DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmajdone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMajTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error position: <DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmindone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMinTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error position: <DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmajdone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMajTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error position: <DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmindone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMinTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error position: <DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmajdone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMajTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error position: <DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmindone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMinTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error position: <DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmajdone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMajTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error position: <DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmindone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMinTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error position: <DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmajdone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMajTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error position: <DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmindone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMinTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error position: <DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmajdone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMajTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error position: <DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmindone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMinTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error position: <DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmajdone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMajTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error position: <DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmindone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMinTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error position: <DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmajdone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMajTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error position: <DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmindone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMinTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error position: <DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmajdone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMajTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error position: <DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmindone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMinTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error position: <DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmajdone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMajTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error position: <DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmindone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMinTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error position: <DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmajdone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMajTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error position: <DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmindone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMinTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error position: <DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmajdone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMajTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error position: <DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmindone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMinTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error position: <DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmajdone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMajTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error position: <DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmindone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMinTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error position: <DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmajdone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMajTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error position: <DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmindone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMinTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error position: <DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmajdone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMajTimer.sqf, line 42
14:59:50 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error position: <DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:50 Error Undefined variable in expression: dzmsmindone
14:59:50 File z\addons\dayz_server\DZMS\Scripts\DZMSMinTimer.sqf, line 42
14:59:51 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:51 Error position: <DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:51 Error Undefined variable in expression: dzmsmajdone
14:59:51 File z\addons\dayz_server\DZMS\Scripts\DZMSMajTimer.sqf, line 42
14:59:51 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:51 Error position: <DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:51 Error Undefined variable in expression: dzmsmindone
14:59:51 File z\addons\dayz_server\DZMS\Scripts\DZMSMinTimer.sqf, line 42
14:59:51 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:51 Error position: <DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:51 Error Undefined variable in expression: dzmsmajdone
14:59:51 File z\addons\dayz_server\DZMS\Scripts\DZMSMajTimer.sqf, line 42
14:59:51 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:51 Error position: <DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:51 Error Undefined variable in expression: dzmsmindone
14:59:51 File z\addons\dayz_server\DZMS\Scripts\DZMSMinTimer.sqf, line 42
14:59:51 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:51 Error position: <DZMSMajDone};
DZMSMajDone = nil;
};>
14:59:51 Error Undefined variable in expression: dzmsmajdone
14:59:51 File z\addons\dayz_server\DZMS\Scripts\DZMSMajTimer.sqf, line 42
14:59:51 Error in expression <or Mission %1.",_varName];


waitUntil {DZMSMinDone};
DZMSMinDone = nil;
};>
14:59:51 Error position: <DZMSMinDone};
DZMSMinDone = nil;
};>
Link to comment
Share on other sites

So, since 1.0.5 will be using 112555 and 112555 is throwing all these errors in the RPT file, then it stands to reason that the people that made these mods will need to update them for 1.0.5? Sounds like it's going to be a real headache when that is released.

 

like always

Link to comment
Share on other sites

These are the errors im getting in my rpt for anyone else getting the same
 
fnc_plyrHit.sqf - note, in 1.0.5 the section causing the error isn't changed

15:39:59 Error in expression <;

_weapon = weaponState _attacker;
if (_weapon select 0 == "Throw") then 
{
_we>
15:39:59   Error position: <_weapon select 0 == "Throw") then 
{
_we>
15:39:59   Error Undefined variable in expression: _weapon
15:39:59 File z\addons\dayz_server\compile\fnc_plyrHit.sqf, line 10

Note, I do not have WAI/DZAI or any addons where this below has previously been reported, theres no change in Epoch 1.0.5 server_functions.sqf that would change this as the error stll occurs

15:44:26 Error in expression <x getVariable ["permaLoot",false];
if (!_keep) then {
_created = _x getVariable >
15:44:26   Error position: <_keep) then {
_created = _x getVariable >
15:44:26   Error Undefined variable in expression: _keep
15:44:26 File z\addons\dayz_server\init\server_functions.sqf, line 837

DZE_DeathMsgSide doesn't work so you need to define it in init.sqf in your mission file or you get this error (code)

 

Include all 3 and define that one that you wish to use, side doesn't work!

 

DZE_DeathMsgGlobal = true;
DZE_DeathMsgSide = false;
DZE_DeathMsgTitleText = false;

 2:07:04 Error in expression <_this select 1) }] call RE;
};

if(DZE_DeathMsgSide) then {
[nil, nil, rspa>
 2:07:04   Error position: <DZE_DeathMsgSide) then {
[nil, nil, rspa>
 2:07:04   Error Undefined variable in expression: dze_deathmsgside
 2:07:04 File z\addons\dayz_server\compile\server_playerDied.sqf, line 45

Last thing, i'm using the server_cleanup.fsm from Epoch 1.0.5

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
×
×
  • Create New...