Перейти к публикации
Поиск в
  • Дополнительно...
Искать результаты, содержащие...
Искать результаты в...
  • Нужна помощь?

    Создайте тему в соответствующем разделе
    Не нужно писать всё в чат!
  • Загляните на торговую площадку

    Там вы можете купить
    всё что касается игровых серверов
  • Не хотите бан?

    Пожалуйста, ознакомьтесь с нашими правилами
    Не нарушайте порядок!
  • Продаёте или покупаете?

    Пользуйтесь услугами гаранта
    Мы сделаем вашу сделку безопасной
  • 0
hooligan334

Not work toasts Serwer Dedicated ??

Help me guys 

Hello i have problem.... install! copy mods folder serwer @dayZ-Expansion-Notifications and copy Expansion.bikey to folders keys Serwers. 

my bat -mod=@Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock @dayZ-Expansion-Chat;@BaseBuildingLogs;@GoreZ;@Airdrop;@CF @dayZ-Expansion-Notifications;@Server_Information_Panel;@Community-Online-Tools 

Where add this line 

GetNotificationSystem().CreateNotification_Old("Hello", "Welcome to the server", ARGB(255, 255, 255, 255), 10);  

??
add mpmissions\dayzOffline.chernarusplus\ init.c not work.

My init.c

void main()
{
    //INIT WEATHER BEFORE ECONOMY INIT------------------------
    Weather weather = g_Game.GetWeather();


    weather.MissionWeather(false);    // false = use weather controller from Weather.c


    weather.GetOvercast().Set( Math.RandomFloatInclusive(0.4, 0.6), 1, 0);
    weather.GetRain().Set( 0, 0, 1);
    weather.GetFog().Set( Math.RandomFloatInclusive(0.05, 0.1), 1, 0);


    //INIT ECONOMY--------------------------------------
    Hive ce = CreateHive();
    if ( ce )
        ce.InitOffline();


    //DATE RESET AFTER ECONOMY INIT-------------------------
    int year, month, day, hour, minute;
    int reset_month = 9, reset_day = 20;
    GetGame().GetWorld().GetDate(year, month, day, hour, minute);


    if ((month == reset_month) && (day < reset_day))
    {
        GetGame().GetWorld().SetDate(year, reset_month, reset_day, hour, minute);
    }
    else
    {
        if ((month == reset_month + 1) && (day > reset_day))
        {
            GetGame().GetWorld().SetDate(year, reset_month, reset_day, hour, minute);
        }
        else
        {
            if ((month < reset_month) || (month > reset_month + 1))
            {
                GetGame().GetWorld().SetDate(year, reset_month, reset_day, hour, minute);
            }
        }
    }
}


class CustomMission: MissionServer
{    
    void SetRandomHealth(EntityAI itemEnt)
    {
        if ( itemEnt )
        {
            int rndHlt = Math.RandomInt(55,100);
            itemEnt.SetHealth("","",rndHlt);
        }
    }


    override PlayerBase CreateCharacter(PlayerIdentity identity, vector pos, ParamsReadContext ctx, string characterName)
    {
        Entity playerEnt;
        playerEnt = GetGame().CreatePlayer(identity, characterName, pos, 0, "NONE");//Creates random player
        Class.CastTo(m_player, playerEnt);
        
        GetGame().SelectPlayer(identity, m_player);
        
        return m_player;
    }
    
    override void StartingEquipSetup(PlayerBase player, bool clothesChosen)
    {
        EntityAI itemTop;
        EntityAI itemEnt;
        ItemBase itemBs;
        float rand;
        
        itemTop = player.FindAttachmentBySlotName("Body");
        
        if ( itemTop )
        {
            itemEnt = itemTop.GetInventory().CreateInInventory("Rag");
            if ( Class.CastTo(itemBs, itemEnt ) )
                itemBs.SetQuantity(4);


            SetRandomHealth(itemEnt);
            
            itemEnt = itemTop.GetInventory().CreateInInventory("RoadFlare");
            SetRandomHealth(itemEnt);
            
            rand = Math.RandomFloatInclusive(0.0, 1.0);
            if ( rand < 0.35 )
                itemEnt = player.GetInventory().CreateInInventory("Apple");
            else if ( rand > 0.65 )
                itemEnt = player.GetInventory().CreateInInventory("Pear");
            else
                itemEnt = player.GetInventory().CreateInInventory("Plum");
        
            SetRandomHealth(itemEnt);
        }
    }
};
  
Mission CreateCustomMission(string path)
{
    return new CustomMission();
}

Mods:https://steamcommunity.com/workshop/filedetails/?id=1585487785

Поделиться сообщением


Ссылка на сообщение
Поделиться на других сайтах

Рекомендованные сообщения

  • 0

hooligan334 


Do it in this way. Inside override void StartingEquipSetup(PlayerBase player, bool clothesChosen)

 

Цитата

override void StartingEquipSetup(PlayerBase player, bool clothesChosen)
    {
        EntityAI itemTop;
        EntityAI itemEnt;
        ItemBase itemBs;
        float rand;
        
        itemTop = player.FindAttachmentBySlotName("Body");
        
        if ( itemTop )
        {
            itemEnt = itemTop.GetInventory().CreateInInventory("Rag");
            if ( Class.CastTo(itemBs, itemEnt ) )
                itemBs.SetQuantity(4);


            SetRandomHealth(itemEnt);
            
            itemEnt = itemTop.GetInventory().CreateInInventory("RoadFlare");
            SetRandomHealth(itemEnt);
            
            rand = Math.RandomFloatInclusive(0.0, 1.0);
            if ( rand < 0.35 )
                itemEnt = player.GetInventory().CreateInInventory("Apple");
            else if ( rand > 0.65 )
                itemEnt = player.GetInventory().CreateInInventory("Pear");
            else
                itemEnt = player.GetInventory().CreateInInventory("Plum");
        
            SetRandomHealth(itemEnt);
        }
        
        GetNotificationSystem().CreateNotification_Old("Hello", "Welcome to the server", ARGB(255, 255, 255, 255), 10);
    }

 

Поделиться сообщением


Ссылка на сообщение
Поделиться на других сайтах





  • 0
8 часов назад, polpa сказал:

chuligan334 


Zrób to w ten sposób. Inside  override void StartingEquipSetup (PlayerBase player, bool clothesChosen)

 

 

Thank you bro.

 

Im Have next problem airdrop not work

install mods https://steamcommunity.com/sharedfiles/filedetails/?id=1586921998&searchtext=airdrop

How to install the mods ?/

Im create profile\airdrop\settings

copy keys to root and add bat. mods not work ??

no message .script log

SCRIPT       : [Airdrop] Base class created
SCRIPT       : [Airdrop] Settings class created
SCRIPT       : [Airdrop] Plane destroyed

 

Поделиться сообщением


Ссылка на сообщение
Поделиться на других сайтах
  • 0

Ok all WOrk 

have a question mods toasts how to make it every 5 minutes GetNotificationSystem().CreateNotification_Old("Witaj", "Trader locate Green Mountain and kumyrna!! :)", ARGB(255, 255, 255, 255), 60); ?

Поделиться сообщением


Ссылка на сообщение
Поделиться на других сайтах
  • 0

polpa 

GetGame().GetCallQueue(CALL_CATEGORY_SYSTEM).CallLater(GetNotificationSystem().CreateNotification_Old, 600000, true, "Witaj", "Trader locate Green Mountain and kumyrna!! :)", ARGB(255, 255, 255, 255),60);

 

Поделиться сообщением


Ссылка на сообщение
Поделиться на других сайтах
  • 0

BorizzK  я знаю)) расскажи hooligan334

Поделиться сообщением


Ссылка на сообщение
Поделиться на других сайтах
  • 0

Не туда жмакнул

hooligan334 

GetGame().GetCallQueue(CALL_CATEGORY_SYSTEM).CallLater(GetNotificationSystem().CreateNotification_Old, 600000, true, "Witaj", "Trader locate Green Mountain and kumyrna!! :)", ARGB(255, 255, 255, 255),60);

 

Поделиться сообщением


Ссылка на сообщение
Поделиться на других сайтах
  • 0

not work

GetGame().GetCallQueue(CALL_CATEGORY_SYSTEM).CallLater(GetNotificationSystem().CreateNotification_Old, 5, true, "Witaj", "Trader locate Green Mountain and kumyrna!! :)", ARGB(255, 255, 255, 255),60);

how use timer ? no call_category_system

Поделиться сообщением


Ссылка на сообщение
Поделиться на других сайтах
  • 0

BorizzK 

//BBP Cement Mixers -Begin-
void SpawnObject( string type, vector position, vector orientation )
{
    auto obj = GetGame().CreateObject( type, position );
    obj.SetPosition( position );
    obj.SetOrientation( orientation );
    //Force collision update
    vector roll = obj.GetOrientation();
    roll [ 2 ] = roll [ 2 ] - 1;
    obj.SetOrientation( roll );
    roll [ 2 ] = roll [ 2 ] + 1;
    obj.SetOrientation( roll );
}
//BBP Cement Mixers -End-

void main()
{
	//BBP Cement Mixers -Begin-
	SpawnObject("BBP_Cement_Mixer", "10054.915039 5.998347 1824.814575", "140.320999 0.000000 0.000000");				//ELEKTRO
	SpawnObject("BBP_Cement_Mixer", "8025.974121 14.320039 3112.555664", "-134.317001 0.000000 -0.000001");				//CHERNO
	SpawnObject("BBP_Cement_Mixer", "2259.967285 185.386688 5228.343262", "31.421862 0.000000 0.000000");				//ZELNO
	SpawnObject("BBP_Cement_Mixer", "13320.810547 9.184664 6120.320313", "0.488000 0.002672 1.681928");					//SOLNICHY
	SpawnObject("BBP_Cement_Mixer", "11916.333008 28.763134 14286.380859", "105.104500 0.000000 0.000000");				//NOVO
	SpawnObject("BBP_Cement_Mixer", "8005.100098 129.204407 12594.500000", "-12.629600 -0.734632 0.240260");			//UNKNOWN
	SpawnObject("BBP_Cement_Mixer", "5216.392578 340.970093 9886.897461", "-109.342987 -0.042234 0.007777");			//NWAF1
	SpawnObject("BBP_Cement_Mixer", "2943.952881 220.784470 12637.526367", "-158.010208 0.018145 -0.044932");			//UNKNOWN
	//BBP Cement Mixers -End-
	
	//INIT WEATHER BEFORE ECONOMY INIT------------------------
	Weather weather = g_Game.GetWeather();

	weather.MissionWeather(false);    // false = use weather controller from Weather.c

	weather.GetOvercast().Set( Math.RandomFloatInclusive(0.4, 0.6), 1, 0);
	weather.GetRain().Set( 0, 0, 1);
	weather.GetFog().Set( Math.RandomFloatInclusive(0.05, 0.1), 1, 0);

	//INIT ECONOMY--------------------------------------
	Hive ce = CreateHive();
	if ( ce )
		ce.InitOffline();

	//DATE RESET AFTER ECONOMY INIT-------------------------
	int year, month, day, hour, minute;
	int reset_month = 9, reset_day = 20;
	GetGame().GetWorld().GetDate(year, month, day, hour, minute);

    if ((month == reset_month) && (day < reset_day))
    {
        GetGame().GetWorld().SetDate(year, reset_month, reset_day, hour, minute);
    }
    else
    {
        if ((month == reset_month + 1) && (day > reset_day))
        {
            GetGame().GetWorld().SetDate(year, reset_month, reset_day, hour, minute);
        }
        else
        {
            if ((month < reset_month) || (month > reset_month + 1))
            {
                GetGame().GetWorld().SetDate(year, reset_month, reset_day, hour, minute);
            }
        }
    }
}

class CustomMission: MissionServer
{	
	void SetRandomHealth(EntityAI itemEnt)
	{
		if ( itemEnt )
		{
			int rndHlt = Math.RandomInt(55,100);
			itemEnt.SetHealth("","",rndHlt);
		}
	}

	override PlayerBase CreateCharacter(PlayerIdentity identity, vector pos, ParamsReadContext ctx, string characterName)
	{
		Entity playerEnt;
		playerEnt = GetGame().CreatePlayer(identity, characterName, pos, 0, "NONE");//Creates random player
		Class.CastTo(m_player, playerEnt);
		
		GetGame().SelectPlayer(identity, m_player);
		
		return m_player;
	}
	
	override void StartingEquipSetup(PlayerBase player, bool clothesChosen)
	{
		EntityAI itemTop;
		EntityAI itemEnt;
		ItemBase itemBs;
		float rand;
		
		itemTop = player.FindAttachmentBySlotName("Body");
		
		if ( itemTop )
		{
			itemEnt = itemTop.GetInventory().CreateInInventory("Rag");
			if ( Class.CastTo(itemBs, itemEnt ) )
				itemBs.SetQuantity(4);

			SetRandomHealth(itemEnt);
			
			itemEnt = itemTop.GetInventory().CreateInInventory("RoadFlare");
			SetRandomHealth(itemEnt);
			
			rand = Math.RandomFloatInclusive(0.0, 1.0);
			if ( rand < 0.35 )
				itemEnt = player.GetInventory().CreateInInventory("Apple");
			else if ( rand > 0.65 )
				itemEnt = player.GetInventory().CreateInInventory("Pear");
			else
				itemEnt = player.GetInventory().CreateInInventory("Plum");
		
			SetRandomHealth(itemEnt);
		}
	    GetGame().GetCallQueue(CALL_CATEGORY_SYSTEM).CallLater(GetNotificationSystem().CreateNotification_Old, 2, true, "Witaj", "Trader locate Green Mountain and kumyrna!! :)", ARGB(255, 255, 255, 255),60);
	}
};
  
Mission CreateCustomMission(string path)
{
	return new CustomMission();
}

this is mods add buildingplus

Поделиться сообщением


Ссылка на сообщение
Поделиться на других сайтах
  • 0

hooligan334 i not see any problems with this call... What errors you have?

Why You set call delay to 2 milliseconds??? :joy:

Поделиться сообщением


Ссылка на сообщение
Поделиться на других сайтах
  • 0

hooligan334

1000ms = 1decond

10000ms = 10 seconds

60000ms = 60 seconds = 1 minute

600000ms = 600 seconds = 5 minutes

 

 

Изменено пользователем BorizzK (история изменений)

Поделиться сообщением


Ссылка на сообщение
Поделиться на других сайтах
  • 0

BorizzK thx :)

 

Where Find Scrip Connect player or disconnect player one the serwer ??

Поделиться сообщением


Ссылка на сообщение
Поделиться на других сайтах
  • 0
override PlayerBase CreateCharacter(PlayerIdentity identity, vector pos, ParamsReadContext ctx, string characterName)
	{
		Entity playerEnt;
		playerEnt = GetGame().CreatePlayer(identity, characterName, pos, 0, "NONE");//Creates random player
		Class.CastTo(m_player, playerEnt);
		
		GetGame().SelectPlayer(identity, m_player);
		//inform all players about new player connected
		ref array<Man> players = new array<Man>; //define array for all players
		GetGame().GetPlayers( players ); //put all players in to array players
		if ( players.Count() > 0 ) // if players count > 0
		{			
			string Message = "NEW Player " + m_player.GetIdentity().GetName() + " connected!"; //message text
			MessageAllPlayers(Message); // call MessageAllPlayers function with Message param
		}

		return m_player;
	
	
}

not work

Поделиться сообщением


Ссылка на сообщение
Поделиться на других сайтах
  • 0

hey guys how add image information png ??

GetGame().GetCallQueue(CALL_CATEGORY_SYSTEM).CallLater(GetNotificationSystem().CreateNotification_Old, 1200000, true, "Hello", "Trader locate Green Mountain and kumyrna!! :)", ARGB(255, 255, 255, 255),60);

 

Поделиться сообщением


Ссылка на сообщение
Поделиться на других сайтах
  • 0
2 часа назад, BorizzK сказал:

hooligan334 Gdzie jest funkcja MessageAllPlayers w twojej klasie misji?

 

I do not have it class MessageAllPlayers

 

Поделиться сообщением


Ссылка на сообщение
Поделиться на других сайтах
  • 0
4 минуты назад, hooligan334 сказал:

hey guys how add image information png ??


GetGame().GetCallQueue(CALL_CATEGORY_SYSTEM).CallLater(GetNotificationSystem().CreateNotification_Old, 1200000, true, "Hello", "Trader locate Green Mountain and kumyrna!! :)", ARGB(255, 255, 255, 255),60);

 

Not possible
Only make client/server mod with client-side images

 

4 минуты назад, hooligan334 сказал:

 

I do not have it class MessageAllPlayers

 

not class

function

 

Поделиться сообщением


Ссылка на сообщение
Поделиться на других сайтах
  • 0
11 минуту назад, BorizzK сказал:

Nie jest możliwe
Tylko mod / serwer z obrazami po stronie klienta

 

nie klasa

funkcjonować

 

Where find exmaple work MessageAllPlayers

Поделиться сообщением


Ссылка на сообщение
Поделиться на других сайтах
  • 0

BorizzK 

Add is to init.c

ref array<string> m_pointPlayerPVP = new array<string>;;
	ref map<string, int> m_playersSetUID = new map<string, int>;
	
	//SERVER INIT
	override void OnInit()
	{
		
		Print("::: init.c ::: OnInit() ::: ");
		
		//???
		//Print("PSOVIS: new player");
		PrintString( "isServer " + GetGame().IsServer().ToString() );
		PrintString( "isClient " + GetGame().IsClient().ToString() );
		PrintString( "isMultiplayer " + GetGame().IsMultiplayer().ToString() );

		string line_content; 
		
		//Выбор координат спавна
		//ФАЙЛ pointPlayerPVP.lst кладем в папку указанную в параметре запуска сервера -profiles=
		//Формат координат в файле: X Z Y
		//Любая ошибка приведет к крашу сервера
		//Например:
		//6010.40 0 7742.71
		//6386.92 0 7945.12
		//6478.50 0 7874.77
		//6044.73 0 7699.81
		//5966.05 0 7720.02
		//5912.13 0 7768.36
		//5945.08 0 7759.17

		FileHandle file = OpenFile("$profile:pointPlayerPVP.lst", FileMode.READ);
		Print("::: OpenFile : pointPlayerPVP.lst : $profile");
		
		if (file != 0)
		{ 
			while ( FGets( file,  line_content ) > 0 )    
			{
				m_pointPlayerPVP.Insert( line_content);
			}
			CloseFile(file);
		}	
		m_pointPlayerPVP.Debug();
		array<string> strFileParam;
	
		//ФАЙЛ playersSetUID.ini кладем в папку указанную в параметре запуска сервера -profiles=
		//Формат файла:
		//Steam UID в привычном виде|номер комплекта
		//Любая ошибка приведет к крашу сервера
		//Пример:
		// 76562298156537007|1
		// 76561998116927207|3
		//Ели UID в файле нет комплект выбирается рандомно
		
		file = OpenFile("$profile:playersSetUID.ini", FileMode.READ);
		Print("::: OpenFile : playersSetUID.ini : $profile");
		
		if (file != 0)
		{ 
			while ( FGets( file,  line_content ) > 0 )    
			{
				strFileParam = new array<string>;
				line_content.Split( "|", strFileParam );
				m_playersSetUID.Insert(strFileParam.Get(0), strFileParam.Get(1).ToInt());
			}
			CloseFile(file);
		}
		
		//MZ
		//Message to all players
		GetGame().GetCallQueue(CALL_CATEGORY_GAMEPLAY).CallLater(MessagePlayerCounts, 60000, true); //300 seconds = 300000
	}	
	
	//MZ
	//Messaging all players
	//USAGE: MessageAllPlayers("TEXT");
	void MessageAllPlayers(string message) 
	{ 
		ref array<Man> players = new array<Man>; 
		GetGame().GetPlayers( players );
		if ( players.Count() > 0 )
		{
			for ( int i = 0; i < players.Count(); i++ ) 
			{ 
				PlayerBase player; 
				Class.CastTo(player, players.Get(i)); 
				Param1<string> m_MessageParam = new Param1<string>(message); 
				GetGame().RPCSingleParam(player, ERPCs.RPC_USER_ACTION_MESSAGE, m_MessageParam, true, player.GetIdentity()); 
			} 
			Print("::: init.c ::: MessageAllPlayers(string message) ::: m_MessageParam: " + message);
		}
	}
	
	//MZ
	//Message about players count
	void MessagePlayerCounts() 
	{
		ref array<Man> players = new array<Man>; 
		GetGame().GetPlayers( players ); 
		if ( players.Count() > 0 )
		{
			int count_pl = players.Count(); 
			string Message = "Players online: [" + count_pl.ToString() + "]";
			//MessageAllPlayers("Players online: [" + count_pl + "]");
			MessageAllPlayers(Message);
			Print("::: init.c ::: MessagePlayerCounts() ::: Message: " + Message);
		}
	}

	override void OnClientReadyEvent(PlayerIdentity identity, PlayerBase player)
	{
		GetGame().SelectPlayer(identity, player);
		
		//inform all players about player connected
		ref array<Man> players = new array<Man>;
		GetGame().GetPlayers( players );
		if ( players.Count() > 0 )
		{			
			string Message = "Player " + player.GetIdentity().GetName() + " connected!";
			MessageAllPlayers(Message);
			Print("::: init.c ::: OnClientReadyEvent(PlayerIdentity identity, PlayerBase player) ::: " + Message);
		}
	}	

 

crash.log

---------------------------------------------
Log D:\Dayz\Profile\crash_2019-07-17_08-45-06.log started at 17.07. 08:45:43



------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:45:43
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:45:44
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:45:45
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:45:46
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:45:47
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:45:48
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:45:48
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:45:49
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:45:50
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:45:51
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:45:52
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:45:53
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:45:53
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:45:54
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:45:55
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:45:56
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:45:57
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:45:58
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:45:58
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:45:59
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:00
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:01
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:02
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:03
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:03
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:04
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:05
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:06
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:07
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:08
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:08
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:09
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:10
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:11
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:12
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:13
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:239
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:13
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:13
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:14
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:15
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:16
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:17
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:18
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:18
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:19
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:20
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:21
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:22
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:23
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:23
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:24
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:25
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:26
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:27
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:28
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:28
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:29
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:30
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:31
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:32
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:33
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:33
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:34
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:35
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:36
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:37
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:38
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:38
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:39
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:40
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:41
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:42
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:43
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:239
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:43
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:43
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:44
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:45
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:46
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:47
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:48
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:48
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:49
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:50
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:51
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:52
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:53
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:53
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:54
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:55
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:56
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:57
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:58
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:58
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:46:59
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:00
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:01
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:02
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:03
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:03
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:04
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:05
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:06
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:07
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:08
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:08
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:09
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:10
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:11
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:12
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:13
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:239
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:13
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:13
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:14
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:15
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:16
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:17
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:18
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:18
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:19
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:20
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:21
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:22
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:23
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:23
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:24
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:25
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:26
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:27
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:28
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:28
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:29
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:30
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:31
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:32
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:33
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:33
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:34
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:35
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:36
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:37
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:38
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:38
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:39
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:40
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:41
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:42
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:43
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:239
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:43
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:43
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:44
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:45
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:46
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:47
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:48
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:193
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:48
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:49
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:50
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  


------------------------------------
DESKTOP-CKNJ7J7, 17.07 2019 08:47:51
NULL pointer to instance
Class:      'CustomMission'
Function: 'OnUpdate'
Stack trace:
TM/Trader/scripts/5_Mission/mission\missionserver.c:182
scripts/3_Game/dayzgame.c:2212

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @Trader;@Trader Wallet;@PartyMe;@DisableBaseDestruction;@BuildAnywhere;@Code Lock;@BaseBuildingLogs;@GoreZ;@Airdrop;@CompassHUD;@Saline Bag+;@BaseBuildingPlus;@Zombies-Health-rebalance;@GrandeHordes;@Base Furniture Mods;@Sneaky Stashes and Stuff;@Infected Wolf;@CF;@DayZ-Expansion-Chat;@DayZ-Expansion-Notifications;@Server_Information_Panel;@ZomBerry Admin Tools BEpath D:\Dayz\battleye profiles Profile dologs  adminlog  netlog  

 

my init.c full

//BBP Cement Mixers -Begin-
void SpawnObject( string type, vector position, vector orientation )
{
    auto obj = GetGame().CreateObject( type, position );
    obj.SetPosition( position );
    obj.SetOrientation( orientation );
    //Force collision update
    vector roll = obj.GetOrientation();
    roll [ 2 ] = roll [ 2 ] - 1;
    obj.SetOrientation( roll );
    roll [ 2 ] = roll [ 2 ] + 1;
    obj.SetOrientation( roll );
}
//BBP Cement Mixers -End-

void main()
{
	//BBP Cement Mixers -Begin-
	SpawnObject("BBP_Cement_Mixer", "10054.915039 5.998347 1824.814575", "140.320999 0.000000 0.000000");				//ELEKTRO
	SpawnObject("BBP_Cement_Mixer", "8025.974121 14.320039 3112.555664", "-134.317001 0.000000 -0.000001");				//CHERNO
	SpawnObject("BBP_Cement_Mixer", "2259.967285 185.386688 5228.343262", "31.421862 0.000000 0.000000");				//ZELNO
	SpawnObject("BBP_Cement_Mixer", "13320.810547 9.184664 6120.320313", "0.488000 0.002672 1.681928");					//SOLNICHY
	SpawnObject("BBP_Cement_Mixer", "11916.333008 28.763134 14286.380859", "105.104500 0.000000 0.000000");				//NOVO
	SpawnObject("BBP_Cement_Mixer", "8005.100098 129.204407 12594.500000", "-12.629600 -0.734632 0.240260");			//UNKNOWN
	SpawnObject("BBP_Cement_Mixer", "5216.392578 340.970093 9886.897461", "-109.342987 -0.042234 0.007777");			//NWAF1
	SpawnObject("BBP_Cement_Mixer", "2943.952881 220.784470 12637.526367", "-158.010208 0.018145 -0.044932");			//UNKNOWN
	SpawnObject("SneakyTreeChest", "13000.000000 112.093437 6042.850098", "-63.190300 6.600370 8.241270");
SpawnObject("SneakyTreeChest", "12924.500000 170.476410 4394.439941", "153.817001 0.857851 2.028400");
SpawnObject("SneakyTreeChest", "10103.500000 64.587524 4000.620117", "173.205002 4.406800 13.377600");
SpawnObject("SneakyHayBailChest", "3032.469971 320.014252 7739.979980", "168.348984 0.000000 0.000000");
SpawnObject("SneakyHayBailChest", "7677.939941 214.996780 5151.390137", "161.373001 2.000000 0.000000");
SpawnObject("SneakyDumpsterPileStash", "7789.270020 2.680397 3018.929932", "62.719105 -5.545700 7.479710");
SpawnObject("SneakyWoodenCrate", "4903.229980 9.966694 2501.260010", "-11.228400 0.000000 0.000000");
SpawnObject("SneakyCardBoardBoxStash", "1133.060059 5.804822 2442.639893", "-52.373402 0.022157 0.017080");
SpawnObject("SneakyWoodenCrate", "2146.159912 89.388733 3325.290039", "134.349014 -0.012352 -0.050861");
SpawnObject("SneakyCardBoardBoxStash", "2609.419922 196.207047 5043.669922", "-122.181000 0.038794 -0.035164");
SpawnObject("SneakyTreeChest", "3233.479980 276.563293 5278.220215", "-2.942390 1.828620 12.028999");
SpawnObject("SneakyTreeChest", "5325.560059 240.217331 6579.620117", "55.826099 1.433230 12.734401");
SpawnObject("SneakyWashingMachineChest", "8379.870117 292.727325 5977.950195", "-141.272003 0.000000 0.000000");
SpawnObject("SneakyDumpsterPileStash", "5861.850098 137.935440 4929.640137", "-40.985802 -2.141360 3.481111");
SpawnObject("SneakyCashierChest", "10428.000000 5.996028 2367.199951", "155.345993 -0.052577 0.027544");
SpawnObject("SneakySmallBoatStash", "9746.230469 2.562871 1719.239990", "-43.081402 3.475790 2.596280");
SpawnObject("SneakySmallBoatStash", "1984.359985 4.254091 2136.840088", "-32.149899 8.493300 -1.302570");
SpawnObject("SneakyCardBoardBoxStash", "6065.529785 58.709671 3317.979980", "176.703979 1.303760 0.314296");
SpawnObject("SneakyCamo_Barrel_Admin", "2724.350098 6.412563 1246.359985", "118.926010 1.883760 1.040690");
SpawnObject("SneakyWashingMachineChest", "3622.479980 6.996428 2232.399902", "11.782100 0.000000 0.000000");
SpawnObject("SneakyCamo_Barrel_Admin", "13963.112305 0.514875 11147.110352", "142.925491 0.000000 0.000000");
SpawnObject("SneakySmallBoatStash", "14064.544922 4.247793 11422.737305", "-143.696716 10.877382 -3.688041");
SpawnObject("SneakySmallBoatStash", "14311.313477 2.650296 12753.425781", "8.719112 2.724285 4.883398");
SpawnObject("SneakyCardBoardBoxStash", "13856.682617 32.971577 2888.470703", "148.713379 0.000000 0.000000");
SpawnObject("SneakyTreeChest", "13025.411133 19.119293 3214.679443", "77.870026 9.526937 -0.087178");
SpawnObject("SneakyPaintingStash", "12155.286133 6.928720 3510.557129", "171.769012 0.000000 -16.000004");
SpawnObject("SneakyWashingMachineChest", "11254.598633 253.395584 5440.191895", "-116.678566 0.000000 -2.000000");
SpawnObject("SneakyHayBailChest", "9875.591797 255.175339 5415.290527", "-156.647858 0.000000 0.000000");
SpawnObject("SneakyTreeChest", "12921.987305 26.828617 7932.911133", "-1.290355 1.633715 12.536540");
SpawnObject("SneakyDumpsterPileStash", "12840.149414 6.408428 8070.471191", "-49.123871 2.207718 0.229293");
SpawnObject("SneakyHayBailChest", "12582.999023 6.682876 9871.635742", "-16.106447 0.000000 0.000000");
SpawnObject("SneakySmallBoatStash", "13505.650391 2.636400 6506.986328", "-63.383274 0.750315 1.401028");
SpawnObject("SneakyTreeChest", "11292.219727 162.826126 10728.176758", "-70.793678 2.291745 0.478867");
SpawnObject("SneakyHayBailChest", "9794.439453 286.876495 8722.353516", "-25.576948 0.000000 0.000000");
SpawnObject("SneakyLargeRockChest", "11318.100586 69.949303 6542.410156", "61.813473 -15.000032 7.896515");
SpawnObject("SneakyWashingMachineChest", "11689.680664 70.273079 9183.172852", "58.745708 0.000000 0.000000");
SpawnObject("SneakySodaMachineStash", "10682.366211 212.197342 8013.115234", "-56.714138 0.000000 0.027974");
SpawnObject("SneakyCardBoardBoxStash", "3761.328857 311.830475 8919.788086", "70.160835 -0.000001 0.000006");
SpawnObject("SneakyLargeRockChest", "4477.213379 319.029205 8809.979492", "12.692442 2.351582 -4.966178");
SpawnObject("SneakyDumpsterPileStash", "6059.652344 308.537659 7935.181152", "110.408203 -2.936296 1.105920");
SpawnObject("SneakyHayBailChest", "7898.712402 451.622742 9404.686523", "124.204224 0.000000 0.000000");
SpawnObject("SneakyTreeChest", "8946.080078 378.965424 7472.262207", "4.665575 2.610492 10.794286");
SpawnObject("SneakyLargeRockChest", "6848.759766 389.613220 11568.659180", "-54.817696 -21.968758 -13.400344");
SpawnObject("SneakyLargeRockChest", "6629.909180 136.052078 12684.270508", "81.761559 3.612076 9.754567");
SpawnObject("SneakyWoodenCrate", "5217.290527 204.329330 13508.821289", "-24.632092 -0.000003 0.000001");
SpawnObject("SneakyHayBailChest", "5230.630859 204.366928 13508.402344", "5.741641 0.000000 0.000000");
SpawnObject("SneakyPaintingStash", "3385.447510 214.721161 12737.074219", "7.427010 -3.018536 -17.006897");
SpawnObject("SneakyHayBailChest", "14182.932617 140.878265 15021.328125", "51.494480 0.000000 0.000000");
SpawnObject("SneakyHayBailChest", "14188.073242 140.869812 15027.480469", "-25.946552 0.000000 0.000000");
SpawnObject("SneakyCamo_Barrel_Admin", "11349.369141 109.247253 14701.415039", "-24.774923 0.000000 -0.000000");
	//BBP Cement Mixers -End-
	
	//INIT WEATHER BEFORE ECONOMY INIT------------------------
	Weather weather = g_Game.GetWeather();

	weather.MissionWeather(false);    // false = use weather controller from Weather.c

	weather.GetOvercast().Set( Math.RandomFloatInclusive(0.4, 0.6), 1, 0);
	weather.GetRain().Set( 0, 0, 1);
	weather.GetFog().Set( Math.RandomFloatInclusive(0.05, 0.1), 1, 0);

	//INIT ECONOMY--------------------------------------
	Hive ce = CreateHive();
	if ( ce )
		ce.InitOffline();

	//DATE RESET AFTER ECONOMY INIT-------------------------
	int year, month, day, hour, minute;
	int reset_month = 9, reset_day = 20;
	GetGame().GetWorld().GetDate(year, month, day, hour, minute);

    if ((month == reset_month) && (day < reset_day))
    {
        GetGame().GetWorld().SetDate(year, reset_month, reset_day, hour, minute);
    }
    else
    {
        if ((month == reset_month + 1) && (day > reset_day))
        {
            GetGame().GetWorld().SetDate(year, reset_month, reset_day, hour, minute);
        }
        else
        {
            if ((month < reset_month) || (month > reset_month + 1))
            {
                GetGame().GetWorld().SetDate(year, reset_month, reset_day, hour, minute);
            }
        }
    }
}

class CustomMission: MissionServer
{	
	ref array<string> m_pointPlayerPVP = new array<string>;;
	ref map<string, int> m_playersSetUID = new map<string, int>;
	
	//SERVER INIT
	override void OnInit()
	{
		
		Print("::: init.c ::: OnInit() ::: ");
		
		//???
		//Print("PSOVIS: new player");
		PrintString( "isServer " + GetGame().IsServer().ToString() );
		PrintString( "isClient " + GetGame().IsClient().ToString() );
		PrintString( "isMultiplayer " + GetGame().IsMultiplayer().ToString() );

		string line_content; 
		
		//Выбор координат спавна
		//ФАЙЛ pointPlayerPVP.lst кладем в папку указанную в параметре запуска сервера -profiles=
		//Формат координат в файле: X Z Y
		//Любая ошибка приведет к крашу сервера
		//Например:
		//6010.40 0 7742.71
		//6386.92 0 7945.12
		//6478.50 0 7874.77
		//6044.73 0 7699.81
		//5966.05 0 7720.02
		//5912.13 0 7768.36
		//5945.08 0 7759.17

		FileHandle file = OpenFile("$profile:pointPlayerPVP.lst", FileMode.READ);
		Print("::: OpenFile : pointPlayerPVP.lst : $profile");
		
		if (file != 0)
		{ 
			while ( FGets( file,  line_content ) > 0 )    
			{
				m_pointPlayerPVP.Insert( line_content);
			}
			CloseFile(file);
		}	
		m_pointPlayerPVP.Debug();
		array<string> strFileParam;
	
		//ФАЙЛ playersSetUID.ini кладем в папку указанную в параметре запуска сервера -profiles=
		//Формат файла:
		//Steam UID в привычном виде|номер комплекта
		//Любая ошибка приведет к крашу сервера
		//Пример:
		// 76562298156537007|1
		// 76561998116927207|3
		//Ели UID в файле нет комплект выбирается рандомно
		
		file = OpenFile("$profile:playersSetUID.ini", FileMode.READ);
		Print("::: OpenFile : playersSetUID.ini : $profile");
		
		if (file != 0)
		{ 
			while ( FGets( file,  line_content ) > 0 )    
			{
				strFileParam = new array<string>;
				line_content.Split( "|", strFileParam );
				m_playersSetUID.Insert(strFileParam.Get(0), strFileParam.Get(1).ToInt());
			}
			CloseFile(file);
		}
		
		//MZ
		//Message to all players
		GetGame().GetCallQueue(CALL_CATEGORY_GAMEPLAY).CallLater(MessagePlayerCounts, 60000, true); //300 seconds = 300000
	}	
	
	//MZ
	//Messaging all players
	//USAGE: MessageAllPlayers("TEXT");
	void MessageAllPlayers(string message) 
	{ 
		ref array<Man> players = new array<Man>; 
		GetGame().GetPlayers( players );
		if ( players.Count() > 0 )
		{
			for ( int i = 0; i < players.Count(); i++ ) 
			{ 
				PlayerBase player; 
				Class.CastTo(player, players.Get(i)); 
				Param1<string> m_MessageParam = new Param1<string>(message); 
				GetGame().RPCSingleParam(player, ERPCs.RPC_USER_ACTION_MESSAGE, m_MessageParam, true, player.GetIdentity()); 
			} 
			Print("::: init.c ::: MessageAllPlayers(string message) ::: m_MessageParam: " + message);
		}
	}
	
	//MZ
	//Message about players count
	void MessagePlayerCounts() 
	{
		ref array<Man> players = new array<Man>; 
		GetGame().GetPlayers( players ); 
		if ( players.Count() > 0 )
		{
			int count_pl = players.Count(); 
			string Message = "Players online: [" + count_pl.ToString() + "]";
			//MessageAllPlayers("Players online: [" + count_pl + "]");
			MessageAllPlayers(Message);
			Print("::: init.c ::: MessagePlayerCounts() ::: Message: " + Message);
		}
	}

	override void OnClientReadyEvent(PlayerIdentity identity, PlayerBase player)
	{
		GetGame().SelectPlayer(identity, player);
		
		//inform all players about player connected
		ref array<Man> players = new array<Man>;
		GetGame().GetPlayers( players );
		if ( players.Count() > 0 )
		{			
			string Message = "Player " + player.GetIdentity().GetName() + " connected!";
			MessageAllPlayers(Message);
			Print("::: init.c ::: OnClientReadyEvent(PlayerIdentity identity, PlayerBase player) ::: " + Message);
		}
	}	
	
	
	void SetRandomHealth(EntityAI itemEnt)
	{
		if ( itemEnt )
		{
			int rndHlt = Math.RandomInt(55,100);
			itemEnt.SetHealth("","",rndHlt);
		}
	}

	override PlayerBase CreateCharacter(PlayerIdentity identity, vector pos, ParamsReadContext ctx, string characterName)
	{
		Entity playerEnt;
		playerEnt = GetGame().CreatePlayer(identity, characterName, pos, 0, "NONE");//Creates random player
		Class.CastTo(m_player, playerEnt);
		
		GetGame().SelectPlayer(identity, m_player);
		
		return m_player;
	}
	
	override void StartingEquipSetup(PlayerBase player, bool clothesChosen)
	{
		EntityAI itemTop;
		EntityAI itemEnt;
		ItemBase itemBs;
		float rand;
		
		itemTop = player.FindAttachmentBySlotName("Body");
		
		if ( itemTop )
		{
			itemEnt = itemTop.GetInventory().CreateInInventory("Rag");
			if ( Class.CastTo(itemBs, itemEnt ) )
				itemBs.SetQuantity(4);

			SetRandomHealth(itemEnt);
			
			itemEnt = itemTop.GetInventory().CreateInInventory("RoadFlare");
			SetRandomHealth(itemEnt);
			
			rand = Math.RandomFloatInclusive(0.0, 1.0);
			if ( rand < 0.35 )
				itemEnt = player.GetInventory().CreateInInventory("Apple");
			else if ( rand > 0.65 )
				itemEnt = player.GetInventory().CreateInInventory("Pear");
			else
				itemEnt = player.GetInventory().CreateInInventory("Plum");
		
			SetRandomHealth(itemEnt);
		}
	
	}
};
  
Mission CreateCustomMission(string path)
{
	return new CustomMission();
}

 

Поделиться сообщением


Ссылка на сообщение
Поделиться на других сайтах
  • 0

hooligan334 

1 Error in TM/Trader (Mod Trader)

 

Becouse no call native OnInit in overrided OnInit()

 

Add call native function super.OnInit(); like this:

	override void OnInit()
	{
		
		Print("::: init.c ::: OnInit() ::: ");
		
		super.OnInit(); // Must be here!!!

 

Поделиться сообщением


Ссылка на сообщение
Поделиться на других сайтах
  • 0

BorizzK 

this ?? 

//BBP Cement Mixers -Begin-
void SpawnObject( string type, vector position, vector orientation )
{
    auto obj = GetGame().CreateObject( type, position );
    obj.SetPosition( position );
    obj.SetOrientation( orientation );
    //Force collision update
    vector roll = obj.GetOrientation();
    roll [ 2 ] = roll [ 2 ] - 1;
    obj.SetOrientation( roll );
    roll [ 2 ] = roll [ 2 ] + 1;
    obj.SetOrientation( roll );
}
//BBP Cement Mixers -End-

void main()
{
	//BBP Cement Mixers -Begin-
	SpawnObject("BBP_Cement_Mixer", "10054.915039 5.998347 1824.814575", "140.320999 0.000000 0.000000");				//ELEKTRO
	SpawnObject("BBP_Cement_Mixer", "8025.974121 14.320039 3112.555664", "-134.317001 0.000000 -0.000001");				//CHERNO
	SpawnObject("BBP_Cement_Mixer", "2259.967285 185.386688 5228.343262", "31.421862 0.000000 0.000000");				//ZELNO
	SpawnObject("BBP_Cement_Mixer", "13320.810547 9.184664 6120.320313", "0.488000 0.002672 1.681928");					//SOLNICHY
	SpawnObject("BBP_Cement_Mixer", "11916.333008 28.763134 14286.380859", "105.104500 0.000000 0.000000");				//NOVO
	SpawnObject("BBP_Cement_Mixer", "8005.100098 129.204407 12594.500000", "-12.629600 -0.734632 0.240260");			//UNKNOWN
	SpawnObject("BBP_Cement_Mixer", "5216.392578 340.970093 9886.897461", "-109.342987 -0.042234 0.007777");			//NWAF1
	SpawnObject("BBP_Cement_Mixer", "2943.952881 220.784470 12637.526367", "-158.010208 0.018145 -0.044932");			//UNKNOWN
	SpawnObject("SneakyTreeChest", "13000.000000 112.093437 6042.850098", "-63.190300 6.600370 8.241270");
SpawnObject("SneakyTreeChest", "12924.500000 170.476410 4394.439941", "153.817001 0.857851 2.028400");
SpawnObject("SneakyTreeChest", "10103.500000 64.587524 4000.620117", "173.205002 4.406800 13.377600");
SpawnObject("SneakyHayBailChest", "3032.469971 320.014252 7739.979980", "168.348984 0.000000 0.000000");
SpawnObject("SneakyHayBailChest", "7677.939941 214.996780 5151.390137", "161.373001 2.000000 0.000000");
SpawnObject("SneakyDumpsterPileStash", "7789.270020 2.680397 3018.929932", "62.719105 -5.545700 7.479710");
SpawnObject("SneakyWoodenCrate", "4903.229980 9.966694 2501.260010", "-11.228400 0.000000 0.000000");
SpawnObject("SneakyCardBoardBoxStash", "1133.060059 5.804822 2442.639893", "-52.373402 0.022157 0.017080");
SpawnObject("SneakyWoodenCrate", "2146.159912 89.388733 3325.290039", "134.349014 -0.012352 -0.050861");
SpawnObject("SneakyCardBoardBoxStash", "2609.419922 196.207047 5043.669922", "-122.181000 0.038794 -0.035164");
SpawnObject("SneakyTreeChest", "3233.479980 276.563293 5278.220215", "-2.942390 1.828620 12.028999");
SpawnObject("SneakyTreeChest", "5325.560059 240.217331 6579.620117", "55.826099 1.433230 12.734401");
SpawnObject("SneakyWashingMachineChest", "8379.870117 292.727325 5977.950195", "-141.272003 0.000000 0.000000");
SpawnObject("SneakyDumpsterPileStash", "5861.850098 137.935440 4929.640137", "-40.985802 -2.141360 3.481111");
SpawnObject("SneakyCashierChest", "10428.000000 5.996028 2367.199951", "155.345993 -0.052577 0.027544");
SpawnObject("SneakySmallBoatStash", "9746.230469 2.562871 1719.239990", "-43.081402 3.475790 2.596280");
SpawnObject("SneakySmallBoatStash", "1984.359985 4.254091 2136.840088", "-32.149899 8.493300 -1.302570");
SpawnObject("SneakyCardBoardBoxStash", "6065.529785 58.709671 3317.979980", "176.703979 1.303760 0.314296");
SpawnObject("SneakyCamo_Barrel_Admin", "2724.350098 6.412563 1246.359985", "118.926010 1.883760 1.040690");
SpawnObject("SneakyWashingMachineChest", "3622.479980 6.996428 2232.399902", "11.782100 0.000000 0.000000");
SpawnObject("SneakyCamo_Barrel_Admin", "13963.112305 0.514875 11147.110352", "142.925491 0.000000 0.000000");
SpawnObject("SneakySmallBoatStash", "14064.544922 4.247793 11422.737305", "-143.696716 10.877382 -3.688041");
SpawnObject("SneakySmallBoatStash", "14311.313477 2.650296 12753.425781", "8.719112 2.724285 4.883398");
SpawnObject("SneakyCardBoardBoxStash", "13856.682617 32.971577 2888.470703", "148.713379 0.000000 0.000000");
SpawnObject("SneakyTreeChest", "13025.411133 19.119293 3214.679443", "77.870026 9.526937 -0.087178");
SpawnObject("SneakyPaintingStash", "12155.286133 6.928720 3510.557129", "171.769012 0.000000 -16.000004");
SpawnObject("SneakyWashingMachineChest", "11254.598633 253.395584 5440.191895", "-116.678566 0.000000 -2.000000");
SpawnObject("SneakyHayBailChest", "9875.591797 255.175339 5415.290527", "-156.647858 0.000000 0.000000");
SpawnObject("SneakyTreeChest", "12921.987305 26.828617 7932.911133", "-1.290355 1.633715 12.536540");
SpawnObject("SneakyDumpsterPileStash", "12840.149414 6.408428 8070.471191", "-49.123871 2.207718 0.229293");
SpawnObject("SneakyHayBailChest", "12582.999023 6.682876 9871.635742", "-16.106447 0.000000 0.000000");
SpawnObject("SneakySmallBoatStash", "13505.650391 2.636400 6506.986328", "-63.383274 0.750315 1.401028");
SpawnObject("SneakyTreeChest", "11292.219727 162.826126 10728.176758", "-70.793678 2.291745 0.478867");
SpawnObject("SneakyHayBailChest", "9794.439453 286.876495 8722.353516", "-25.576948 0.000000 0.000000");
SpawnObject("SneakyLargeRockChest", "11318.100586 69.949303 6542.410156", "61.813473 -15.000032 7.896515");
SpawnObject("SneakyWashingMachineChest", "11689.680664 70.273079 9183.172852", "58.745708 0.000000 0.000000");
SpawnObject("SneakySodaMachineStash", "10682.366211 212.197342 8013.115234", "-56.714138 0.000000 0.027974");
SpawnObject("SneakyCardBoardBoxStash", "3761.328857 311.830475 8919.788086", "70.160835 -0.000001 0.000006");
SpawnObject("SneakyLargeRockChest", "4477.213379 319.029205 8809.979492", "12.692442 2.351582 -4.966178");
SpawnObject("SneakyDumpsterPileStash", "6059.652344 308.537659 7935.181152", "110.408203 -2.936296 1.105920");
SpawnObject("SneakyHayBailChest", "7898.712402 451.622742 9404.686523", "124.204224 0.000000 0.000000");
SpawnObject("SneakyTreeChest", "8946.080078 378.965424 7472.262207", "4.665575 2.610492 10.794286");
SpawnObject("SneakyLargeRockChest", "6848.759766 389.613220 11568.659180", "-54.817696 -21.968758 -13.400344");
SpawnObject("SneakyLargeRockChest", "6629.909180 136.052078 12684.270508", "81.761559 3.612076 9.754567");
SpawnObject("SneakyWoodenCrate", "5217.290527 204.329330 13508.821289", "-24.632092 -0.000003 0.000001");
SpawnObject("SneakyHayBailChest", "5230.630859 204.366928 13508.402344", "5.741641 0.000000 0.000000");
SpawnObject("SneakyPaintingStash", "3385.447510 214.721161 12737.074219", "7.427010 -3.018536 -17.006897");
SpawnObject("SneakyHayBailChest", "14182.932617 140.878265 15021.328125", "51.494480 0.000000 0.000000");
SpawnObject("SneakyHayBailChest", "14188.073242 140.869812 15027.480469", "-25.946552 0.000000 0.000000");
SpawnObject("SneakyCamo_Barrel_Admin", "11349.369141 109.247253 14701.415039", "-24.774923 0.000000 -0.000000");
	//BBP Cement Mixers -End-
	
	//INIT WEATHER BEFORE ECONOMY INIT------------------------
	Weather weather = g_Game.GetWeather();

	weather.MissionWeather(false);    // false = use weather controller from Weather.c

	weather.GetOvercast().Set( Math.RandomFloatInclusive(0.4, 0.6), 1, 0);
	weather.GetRain().Set( 0, 0, 1);
	weather.GetFog().Set( Math.RandomFloatInclusive(0.05, 0.1), 1, 0);

	//INIT ECONOMY--------------------------------------
	Hive ce = CreateHive();
	if ( ce )
		ce.InitOffline();

	//DATE RESET AFTER ECONOMY INIT-------------------------
	int year, month, day, hour, minute;
	int reset_month = 9, reset_day = 20;
	GetGame().GetWorld().GetDate(year, month, day, hour, minute);

    if ((month == reset_month) && (day < reset_day))
    {
        GetGame().GetWorld().SetDate(year, reset_month, reset_day, hour, minute);
    }
    else
    {
        if ((month == reset_month + 1) && (day > reset_day))
        {
            GetGame().GetWorld().SetDate(year, reset_month, reset_day, hour, minute);
        }
        else
        {
            if ((month < reset_month) || (month > reset_month + 1))
            {
                GetGame().GetWorld().SetDate(year, reset_month, reset_day, hour, minute);
            }
        }
    }
}

class CustomMission: MissionServer
{	
	ref array<string> m_pointPlayerPVP = new array<string>;;
	ref map<string, int> m_playersSetUID = new map<string, int>;
	
	//SERVER INIT
	override void OnInit()
	{
		
		Print("::: init.c ::: OnInit() ::: ");
		
		super.OnInit(); // Must be here!!!
		//???
		//Print("PSOVIS: new player");
		PrintString( "isServer " + GetGame().IsServer().ToString() );
		PrintString( "isClient " + GetGame().IsClient().ToString() );
		PrintString( "isMultiplayer " + GetGame().IsMultiplayer().ToString() );

		string line_content; 
		
		//Выбор координат спавна
		//ФАЙЛ pointPlayerPVP.lst кладем в папку указанную в параметре запуска сервера -profiles=
		//Формат координат в файле: X Z Y
		//Любая ошибка приведет к крашу сервера
		//Например:
		//6010.40 0 7742.71
		//6386.92 0 7945.12
		//6478.50 0 7874.77
		//6044.73 0 7699.81
		//5966.05 0 7720.02
		//5912.13 0 7768.36
		//5945.08 0 7759.17

		FileHandle file = OpenFile("$profile:pointPlayerPVP.lst", FileMode.READ);
		Print("::: OpenFile : pointPlayerPVP.lst : $profile");
		
		if (file != 0)
		{ 
			while ( FGets( file,  line_content ) > 0 )    
			{
				m_pointPlayerPVP.Insert( line_content);
			}
			CloseFile(file);
		}	
		m_pointPlayerPVP.Debug();
		array<string> strFileParam;
	
		//ФАЙЛ playersSetUID.ini кладем в папку указанную в параметре запуска сервера -profiles=
		//Формат файла:
		//Steam UID в привычном виде|номер комплекта
		//Любая ошибка приведет к крашу сервера
		//Пример:
		// 76562298156537007|1
		// 76561998116927207|3
		//Ели UID в файле нет комплект выбирается рандомно
		
		file = OpenFile("$profile:playersSetUID.ini", FileMode.READ);
		Print("::: OpenFile : playersSetUID.ini : $profile");
		
		if (file != 0)
		{ 
			while ( FGets( file,  line_content ) > 0 )    
			{
				strFileParam = new array<string>;
				line_content.Split( "|", strFileParam );
				m_playersSetUID.Insert(strFileParam.Get(0), strFileParam.Get(1).ToInt());
			}
			CloseFile(file);
		}
		
		//MZ
		//Message to all players
		GetGame().GetCallQueue(CALL_CATEGORY_GAMEPLAY).CallLater(MessagePlayerCounts, 60000, true); //300 seconds = 300000
	}	
	
	//MZ
	//Messaging all players
	//USAGE: MessageAllPlayers("TEXT");
	void MessageAllPlayers(string message) 
	{ 
		ref array<Man> players = new array<Man>; 
		GetGame().GetPlayers( players );
		if ( players.Count() > 0 )
		{
			for ( int i = 0; i < players.Count(); i++ ) 
			{ 
				PlayerBase player; 
				Class.CastTo(player, players.Get(i)); 
				Param1<string> m_MessageParam = new Param1<string>(message); 
				GetGame().RPCSingleParam(player, ERPCs.RPC_USER_ACTION_MESSAGE, m_MessageParam, true, player.GetIdentity()); 
			} 
			Print("::: init.c ::: MessageAllPlayers(string message) ::: m_MessageParam: " + message);
		}
	}
	
	//MZ
	//Message about players count
	void MessagePlayerCounts() 
	{
		ref array<Man> players = new array<Man>; 
		GetGame().GetPlayers( players ); 
		if ( players.Count() > 0 )
		{
			int count_pl = players.Count(); 
			string Message = "Players online: [" + count_pl.ToString() + "]";
			//MessageAllPlayers("Players online: [" + count_pl + "]");
			MessageAllPlayers(Message);
			Print("::: init.c ::: MessagePlayerCounts() ::: Message: " + Message);
		}
	}

	override void OnClientReadyEvent(PlayerIdentity identity, PlayerBase player)
	{
		GetGame().SelectPlayer(identity, player);
		
		//inform all players about player connected
		ref array<Man> players = new array<Man>;
		GetGame().GetPlayers( players );
		if ( players.Count() > 0 )
		{			
			string Message = "Player " + player.GetIdentity().GetName() + " connected!";
			MessageAllPlayers(Message);
			Print("::: init.c ::: OnClientReadyEvent(PlayerIdentity identity, PlayerBase player) ::: " + Message);
		}
	}	
	
	
	void SetRandomHealth(EntityAI itemEnt)
	{
		if ( itemEnt )
		{
			int rndHlt = Math.RandomInt(55,100);
			itemEnt.SetHealth("","",rndHlt);
		}
	}

	override PlayerBase CreateCharacter(PlayerIdentity identity, vector pos, ParamsReadContext ctx, string characterName)
	{
		Entity playerEnt;
		playerEnt = GetGame().CreatePlayer(identity, characterName, pos, 0, "NONE");//Creates random player
		Class.CastTo(m_player, playerEnt);
		
		GetGame().SelectPlayer(identity, m_player);
		
		return m_player;
	}
	
	override void StartingEquipSetup(PlayerBase player, bool clothesChosen)
	{
		EntityAI itemTop;
		EntityAI itemEnt;
		ItemBase itemBs;
		float rand;
		
		itemTop = player.FindAttachmentBySlotName("Body");
		
		if ( itemTop )
		{
			itemEnt = itemTop.GetInventory().CreateInInventory("Rag");
			if ( Class.CastTo(itemBs, itemEnt ) )
				itemBs.SetQuantity(4);

			SetRandomHealth(itemEnt);
			
			itemEnt = itemTop.GetInventory().CreateInInventory("RoadFlare");
			SetRandomHealth(itemEnt);
			
			rand = Math.RandomFloatInclusive(0.0, 1.0);
			if ( rand < 0.35 )
				itemEnt = player.GetInventory().CreateInInventory("Apple");
			else if ( rand > 0.65 )
				itemEnt = player.GetInventory().CreateInInventory("Pear");
			else
				itemEnt = player.GetInventory().CreateInInventory("Plum");
		
			SetRandomHealth(itemEnt);
		}
	
	}
};
  
Mission CreateCustomMission(string path)
{
	return new CustomMission();
}

 

Поделиться сообщением


Ссылка на сообщение
Поделиться на других сайтах

Создайте аккаунт или войдите в него для комментирования

Вы должны быть пользователем, чтобы оставить комментарий

Создать аккаунт

Зарегистрируйтесь для получения аккаунта. Это просто!

Зарегистрировать аккаунт

Войти

Уже зарегистрированы? Войдите здесь.

Войти сейчас

×
×
  • Создать...

Важная информация

Используя этот сайт, вы автоматически обязуетесь соблюдать наши Правила и Политика конфиденциальности.
Чтобы сделать этот веб-сайт лучше, мы разместили cookies на вашем устройстве. Вы можете изменить свои настройки cookies, в противном случае мы будем считать, что вы согласны с этим.