Jump to content
  • 0

waiting for server to authenticate


delruth

Question

So my server is an Epoch Cherno and it was running fine and im not sure what happened, after I reset the server I get this every time

 

This is directly from my RPT Active Log.

 

 

23:07:59 Error in expression < compile format ["%1",_data];

_status = _result select 0;
 
if (_status == "Objec>
23:07:59   Error position: <_result select 0;
 
if (_status == "Objec>
23:07:59   Error Undefined variable in expression: _result
23:07:59 File z\addons\dayz_server\system\server_monitor.sqf, line 288
23:07:59 Error in expression <status = _result select 0;
 
if (_status == "ObjectStreamStart") then {
_val = _r>
23:07:59   Error position: <== "ObjectStreamStart") then {
_val = _r>
23:07:59   Error Generic error in expression
23:07:59 File z\addons\dayz_server\system\server_monitor.sqf, line 290

 

so I go into my Server_Monitor open it with Notepad++ and this is line 286-300

 

//Process result

_result = call compile format ["%1",_data];
_status = _result select 0;
 
if (_status == "ObjectStreamStart") then {
_val = _result select 1;
//Stream Objects
//diag_log ("HIVE: Commence Menu Streaming...");
call compile format["ServerTcache_%1 = [];",_traderid];
for "_i" from 1 to _val do {
_data = "HiveEXT" callExtension _key;
_result = call compile format ["%1",_data];
call compile format["ServerTcache_%1 set [count ServerTcache_%1,%2]",_traderid,_result];
_retrader set [count _retrader,_result];
};

 

All I was doing before restart was adding weapons to the black market, hero, and bandit traders. Never delt with this before so any help or insight is appreciated. Thanks.

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Here is what mine looks like

//Process result
					_result = call compile format ["%1",_data];
					_status = _result select 0;
			
					if (_status == "ObjectStreamStart") then {
						_val = _result select 1;
						//Stream Objects
						//diag_log ("HIVE: Commence Menu Streaming...");
						call compile format["ServerTcache_%1 = [];",_traderid];
						for "_i" from 1 to _val do {
							_data = "HiveEXT" callExtension _key;
							_result = call compile format ["%1",_data];
							call compile format["ServerTcache_%1 set [count ServerTcache_%1,%2]",_traderid,_result];
							_retrader set [count _retrader,_result];
						};
						//diag_log ("HIVE: Streamed " + str(_val) + " objects");
					};

I honestly don't see what is wron, but if you like you could copy mine and see if it works :/ 

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Advertisement
  • Discord

×
×
  • Create New...