Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
  • Need help?

    Create a topic in the appropriate section
    Don't write everything in the chat!
  • Take a look at the marketplace

    There you can buy
    everything related to game servers
  • Don't want a ban?

    Please read our rules
    Don't disturb the order!
  • Sell or buy?

    Use services of the guarantor
    We will make your deal safe
woid177

Бесконечные краш логи из-за EffectSound

Recommended Posts

Пытаюсь починить плеер для музыки, я ещё не во всем разбираюсь, хотел бы услышать совет от кого-то более опытного. Есть класс и фаил из-за которого как я думаю летят бесконечные варнинги, почему то сервер ругается при любом взаимодействии с модом и даже, когда сервер просто запущен и на нём ничего не происходит. Вот тот фаил ниже. (понимаю, что тут немало, кода, но это для понимания полной картины)

modded class EffectSound extends Effect
{
	AbstractWave GetAbstractWave()
	{
		return m_SoundWaveObject;
	}	
	
	void SetMaxVolume(float volume)
	{
		m_SoundWaveVolumeMax = volume;
	}

}

вот сам крашлог:

  1. [EffectSound::Effect] :: [WARNING] :: Created Effect on server.
  2. Class: 'EffectSound'
  3. Function: 'Effect'
  4. Stack trace:
  5. scripts/3_Game/effect.c:74
  6. scripts/3_Game/effectmanager.c:142
  7. scripts/3_Game/effectmanager.c:245
  8. Polifonia\scripts\4_World/vehicles\carscript.c:100
  9. Polifonia\scripts\4_World/vehicles\carscript.c:73 scripts/3_Game/tools\component\componentenergymanager.c:393
  10. scripts/3_Game/entities\entityai.c:2169 JM/CF/Scripts/4_World/communityframework\modstorage\modstorage_prepare.c:126

Плюс минус эти логи повторяются, потом ещё появляются Null - ы. Сервер начинает ругаться, чуть ли не на всё, что есть в моде.

Я думаю, что и по логам видно, что он ругается на AbstractWave, эта функция используется для синхронизации звука в этом файле.

class Polifonia_Cassette_Base extends ItemBase{};

class PolifoniaRadio : ItemBase
{
	ref EffectSound mCassetteSound = new EffectSound;
	protected float m_MusicVolume = 1.0;
	protected float m_CurrentMusicVolume = 1.0;
	protected int m_CurrentTrack = 1;
	protected int m_Track = 1;
	
	protected ref Timer	m_CurrentTrackLengthTimer;
	
	void PolifoniaRadio()
	{
		RegisterNetSyncVariableFloat("m_CurrentMusicVolume");
		RegisterNetSyncVariableInt("m_CurrentTrack");
	};

	override void OnVariablesSynchronized()
	{
		super.OnVariablesSynchronized();

		if (m_MusicVolume != m_CurrentMusicVolume)
		{
			m_MusicVolume = m_CurrentMusicVolume;
			if (mCassetteSound)
			{
				if (mCassetteSound.GetAbstractWave().IsHeaderLoaded())
				{			
					float time = mCassetteSound.GetAbstractWave().GetLength() * mCassetteSound.GetAbstractWave().GetCurrPosition();
					mCassetteSound.SetMaxVolume(m_MusicVolume);
					mCassetteSound.SetSoundVolume(m_MusicVolume);
				}
			}
		}
		
		if (m_Track != m_CurrentTrack)
		{
			m_Track = m_CurrentTrack;
			if (mCassetteSound )
			{
				OnSwitchOff();
				OnSwitchOn();
			}
		}
	};
	
	override bool CanReceiveAttachment(EntityAI attachment, int slotId)
	{
		super.CanReceiveAttachment(attachment, slotId);
		ItemBase item = ItemBase.Cast(attachment);

		if (GetCompEM().IsWorking())
		{
			return false;
		}

		return true;
	}

	bool CassetteValidityCheck()
	{
		if(FindAttachmentBySlotName("BaseCassette"))
		{
			return true;
		}
		return false;
	}

	override void OnSwitchOn()
	{
		if(CassetteValidityCheck())
		{
			Entity mAttachedCassette = EntityAI.Cast(FindAttachmentBySlotName("BaseCassette"));
			PlaySong(mAttachedCassette);
		}
	}

	override void OnSwitchOff()
	{
		if(CassetteValidityCheck())
		{
			StopSong();
			delete mCassetteSound;
		}
	}

	override void EEDelete(EntityAI parent)
	{
		if (mCassetteSound)
		mCassetteSound.SoundStop();
		delete mCassetteSound;
	}

	void PlaySong( Polifonia_Cassette_Base item)
	{
		StopSong();
		string GetSongFromConfig = item.ConfigGetString("song");			
		string CassetteName;		
		CassetteName = "Polifonia_Cassette_"+GetSongFromConfig+"_"+m_CurrentTrack+"_SoundSet";
		
		mCassetteSound = SEffectManager.PlaySoundOnObject(CassetteName, this);	
		mCassetteSound.Event_OnSoundWaveEnded.Insert(AutoNextTrack);
		mCassetteSound.SetSoundAutodestroy(true);
		SetTapeVolume();
		SetSynchDirty();
	}
	
	void StopSong()
	{
		if (mCassetteSound)
		mCassetteSound.SoundStop();		
	}
	
	void NextTrack()
	{
		if(CassetteValidityCheck())
		{
			Entity mAttachedCassette = EntityAI.Cast(FindAttachmentBySlotName("BaseCassette"));
			int GetTracksFromConfig = mAttachedCassette.ConfigGetInt("tracks");	
			
			m_CurrentTrack = m_CurrentTrack + 1 ;
		
			if (m_CurrentTrack > GetTracksFromConfig)
			{
				m_CurrentTrack = 1;
			}
			SetSynchDirty();
		}	
	}
	
	void AutoNextTrack()
	{		
		if(CassetteValidityCheck())
		{
			Entity mAttachedCassette = EntityAI.Cast(FindAttachmentBySlotName("BaseCassette"));
			int GetTracksFromConfig = mAttachedCassette.ConfigGetInt("tracks");	
			
			m_CurrentTrack = m_CurrentTrack + 1 ;
		
			if (m_CurrentTrack > GetTracksFromConfig)
			{
				m_CurrentTrack = 1;
			}
			m_Track = m_CurrentTrack;
			PlaySong(mAttachedCassette);
			SetSynchDirty();
		}
		
	}
	
	void PreviousTrack()
	{
		m_CurrentTrack = m_CurrentTrack - 1 ;
		if (m_CurrentTrack < 1)
		{
			m_CurrentTrack = 1;
		}
	
		SetSynchDirty();
	}

	void TurnVolumeUp()
	{
		m_CurrentMusicVolume = m_CurrentMusicVolume <= 1.4;
		m_CurrentMusicVolume = m_CurrentMusicVolume * 2;        
		SetSynchDirty();
	}

	void TurnVolumeDown()
	{
		m_CurrentMusicVolume = m_CurrentMusicVolume / 2;

		SetSynchDirty();
	}

	override bool CanReleaseAttachment(EntityAI attachment)
	{
		super.CanReleaseAttachment(attachment);
		if (GetCompEM().IsWorking())
		{
			return false;
		}
		return true;
	}

	void SetTapeVolume()
    {
        mCassetteSound.SetMaxVolume(0.7);
    }
	
	override void SetActions()
	{
		super.SetActions();	
		AddAction( ActionTurnOnWhileInHands );
		AddAction( ActionTurnOffWhileInHands );
		AddAction( ActionTurnOnWhileOnGround );
		AddAction( ActionTurnOffWhileOnGround );
		AddAction( ActionNextTrackInHand );
		AddAction( ActionNextTrack );
		AddAction( ActionPreviousTrack );
		AddAction( ActionPreviousTrackInHand );
		AddAction( ActionPolifoniaVolumeUp );
		AddAction( ActionPolifoniaVolumeDown );
		AddAction( ActionPolifoniaVolumeUpInHand );
		AddAction( ActionPolifoniaVolumeDownInHand );
	}
}

и ещё тут в этом файле: 

modded class CarScript
{
	ref EffectSound mCassetteSound = new EffectSound;
	protected float m_MusicVolume = 1.0;
	protected float m_CurrentMusicVolume = 1.0;
	protected int m_CurrentTrack = 1;
	protected int m_Track = 1;
	
	protected ref Timer	m_CurrentTrackLengthTimer;
	
	void CarScript()
	{
		RegisterNetSyncVariableFloat("m_CurrentMusicVolume");
		RegisterNetSyncVariableInt("m_CurrentTrack");
	};

	override void OnVariablesSynchronized()
	{
		super.OnVariablesSynchronized();

		if (m_MusicVolume != m_CurrentMusicVolume)
		{
			m_MusicVolume = m_CurrentMusicVolume;
			if (mCassetteSound)
			{
				if (mCassetteSound.GetAbstractWave().IsHeaderLoaded())
				{			
					float time = mCassetteSound.GetAbstractWave().GetLength() * mCassetteSound.GetAbstractWave().GetCurrPosition();
					mCassetteSound.SetMaxVolume(m_MusicVolume);
					mCassetteSound.SetSoundVolume(m_MusicVolume);
				}
			}
		}
		
		if (m_Track != m_CurrentTrack)
		{
			m_Track = m_CurrentTrack;
			if (mCassetteSound )
			{
				OnSwitchOff();
				OnSwitchOn();
			}
		}
	};
	
	override bool CanReceiveAttachment(EntityAI attachment, int slotId)
	{
		super.CanReceiveAttachment(attachment, slotId);
		ItemBase item = ItemBase.Cast(attachment);

		if (GetCompEM().IsWorking())
		{
			return false;
		}

		return true;
	}

	bool CassetteValidityCheck()
	{
		if(FindAttachmentBySlotName("Cassette"))
		{
			return true;
		}
		return false;
	}

	override void OnSwitchOn()
	{
		if(CassetteValidityCheck())
		{
			Entity mAttachedCassette = EntityAI.Cast(FindAttachmentBySlotName("Cassette"));
			PlaySong(mAttachedCassette);
		}
	}

	override void OnSwitchOff()
	{
		if(CassetteValidityCheck())
		{
			StopSong();
			delete mCassetteSound;
		}
	}

	override void EEDelete(EntityAI parent)
	{
		if (mCassetteSound)
		mCassetteSound.SoundStop();
		delete mCassetteSound;
	}

	void PlaySong( Polifonia_Cassette_Base item)
	{
		StopSong();
		string GetSongFromConfig = item.ConfigGetString("song");			
		string CassetteName;		
		CassetteName = "Polifonia_Cassette_"+GetSongFromConfig+"_"+m_CurrentTrack+"_SoundSet";
		
		mCassetteSound = SEffectManager.PlaySoundOnObject(CassetteName, this);	
		mCassetteSound.Event_OnSoundWaveEnded.Insert(AutoNextTrack);
		mCassetteSound.SetSoundAutodestroy(true);
		mCassetteSound.SetMaxVolume(m_CurrentMusicVolume);
		SetSynchDirty();
	}
	
	void StopSong()
	{
		if (mCassetteSound)
		mCassetteSound.SoundStop();		
	}
	
	void NextTrack()
	{
		if(CassetteValidityCheck())
		{
			Entity mAttachedCassette = EntityAI.Cast(FindAttachmentBySlotName("Cassette"));
			int GetTracksFromConfig = mAttachedCassette.ConfigGetInt("tracks");	
			
			m_CurrentTrack = m_CurrentTrack + 1 ;
		
			if (m_CurrentTrack > GetTracksFromConfig)
			{
				m_CurrentTrack = 1;
			}
			SetSynchDirty();
		}	
	}
	
	void AutoNextTrack()
	{		
		if(CassetteValidityCheck())
		{
			Entity mAttachedCassette = EntityAI.Cast(FindAttachmentBySlotName("Cassette"));
			int GetTracksFromConfig = mAttachedCassette.ConfigGetInt("tracks");	
			
			m_CurrentTrack = m_CurrentTrack + 1 ;
		
			if (m_CurrentTrack > GetTracksFromConfig)
			{
				m_CurrentTrack = 1;
			}
			m_Track = m_CurrentTrack;
			PlaySong(mAttachedCassette);
			SetSynchDirty();
		}		
	}
	
	void PreviousTrack()
	{
		m_CurrentTrack = m_CurrentTrack - 1 ;
		if (m_CurrentTrack < 1)
		{
			m_CurrentTrack = 1;
		}
	
		SetSynchDirty();
	}

	void TurnVolumeUp()
	{
		m_CurrentMusicVolume = m_CurrentMusicVolume <= 1.4;
		m_CurrentMusicVolume = m_CurrentMusicVolume * 2;
        SetSynchDirty();
	}

	void TurnVolumeDown()
	{
		m_CurrentMusicVolume = m_CurrentMusicVolume / 2;

		SetSynchDirty();
	}

	override bool CanReleaseAttachment(EntityAI attachment)
	{
		super.CanReleaseAttachment(attachment);
		if (GetCompEM().IsWorking())
		{
			return false;
		}
		return true;
	}
	
	void SetTapeVolume()
    {
        mCassetteSound.SetMaxVolume(0.7);
    }
	
	override void SetActions()
	{
		super.SetActions();	
		AddAction( ActionTogglePolifoniaRadioInCar );
		AddAction( ActionNextTrackInCar );
		AddAction( ActionPreviousTrackInCar );	
		AddAction( ActionPolifoniaVolumeUpInCar );
		AddAction( ActionPolifoniaVolumeDownInCar );
	}
}

Хотелось бы понять, что ему не нравится и как это пофиксить. Заранее спасибо!

Share this post


Link to post
Share on other sites



Проблема у тебя с тем, что эффекты типа звуков и визуала на сервере вообще не нужны, это забота лишь клиента, а ты где-то вызываешь их и на клиенте и на сервере
 

7 часов назад, woid177 сказал:

Polifonia\scripts\4_World/vehicles\carscript.c:100

Скорее всего там ты найдёшь что-то типа "Создать новый звук"

Просто оберни этот блок кода в 

if (GetGame().IsClient())
{
	/*
    Код, связанный с запусков эффектов
    */
}

Скорее всего у тебя таких мест не одно, но если убирать такие ошибки по одному не придётся судорожно листать крашлог в попытке найти что-то новое - просто раз за разом убирать первое что видишь

Share this post


Link to post
Share on other sites
6 часов назад, XenoZD сказал:

Проблема у тебя с тем, что эффекты типа звуков и визуала на сервере вообще не нужны, это забота лишь клиента, а ты где-то вызываешь их и на клиенте и на сервере
 

Скорее всего там ты найдёшь что-то типа "Создать новый звук"

Просто оберни этот блок кода в 

if (GetGame().IsClient()) { /* Код, связанный с запусков эффектов */ }


if (GetGame().IsClient())
{
	/*
    Код, связанный с запусков эффектов
    */
}

Скорее всего у тебя таких мест не одно, но если убирать такие ошибки по одному не придётся судорожно листать крашлог в попытке найти что-то новое - просто раз за разом убирать первое что видишь

Ошибка в 100 строчке carscript, который я скидывал выше. Там находится блок воспроизведения музыки:
 

void PlaySong( Polifonia_Cassette_Base item)
	{
		StopSong();
		string GetSongFromConfig = item.ConfigGetString("song");			
		string CassetteName;		
		CassetteName = "Polifonia_Cassette_"+GetSongFromConfig+"_"+m_CurrentTrack+"_SoundSet";
		
		mCassetteSound = SEffectManager.PlaySoundOnObject(CassetteName, this);	
		mCassetteSound.Event_OnSoundWaveEnded.Insert(AutoNextTrack);
		mCassetteSound.SetSoundAutodestroy(true);
		mCassetteSound.SetMaxVolume(m_CurrentMusicVolume);
		SetSynchDirty();
	}

А вот и сама 100 строчка:
mCassetteSound = SEffectManager.PlaySoundOnObject(CassetteName, this);    
Получается мне нужно обернуть весь PlaySong в обработку, которую вы написали выше?
Или же просто одну строчку?
 

Share this post


Link to post
Share on other sites
6 часов назад, woid177 сказал:

Ошибка в 100 строчке carscript, который я скидывал выше. Там находится блок воспроизведения музыки:
 

void PlaySong( Polifonia_Cassette_Base item) { StopSong(); string GetSongFromConfig = item.ConfigGetString("song"); string CassetteName; CassetteName = "Polifonia_Cassette_"+GetSongFromConfig+"_"+m_CurrentTrack+"_SoundSet"; mCassetteSound = SEffectManager.PlaySoundOnObject(CassetteName, this); mCassetteSound.Event_OnSoundWaveEnded.Insert(AutoNextTrack); mCassetteSound.SetSoundAutodestroy(true); mCassetteSound.SetMaxVolume(m_CurrentMusicVolume); SetSynchDirty(); }


void PlaySong( Polifonia_Cassette_Base item)
	{
		StopSong();
		string GetSongFromConfig = item.ConfigGetString("song");			
		string CassetteName;		
		CassetteName = "Polifonia_Cassette_"+GetSongFromConfig+"_"+m_CurrentTrack+"_SoundSet";
		
		mCassetteSound = SEffectManager.PlaySoundOnObject(CassetteName, this);	
		mCassetteSound.Event_OnSoundWaveEnded.Insert(AutoNextTrack);
		mCassetteSound.SetSoundAutodestroy(true);
		mCassetteSound.SetMaxVolume(m_CurrentMusicVolume);
		SetSynchDirty();
	}

А вот и сама 100 строчка:
mCassetteSound = SEffectManager.PlaySoundOnObject(CassetteName, this);    
Получается мне нужно обернуть весь PlaySong в обработку, которую вы написали выше?
Или же просто одну строчку?
 


Можно вызов PlaySong просто обернуть, у тебя вызов функции нечасто так что можно не заморачиваться с оборачиванием внутри функции

Share this post


Link to post
Share on other sites

вариант решения проблемы, описанной в топикстарте, является то что указано в посте:

по вопросу что оборачивать в проверку - решайте сами, можно хоть сам вызов, создающий звук, хоть функцию или функции, вызывающие место с созданием звука. Смысл ошибки прост - если этот код (а именно функции типа  PlaySoundOnObject, CreateSound и CreateSoundOnObject) начинает  обрабатывать серверная сторона игры - будет крашлог при каждом вызове этого кода новой строкой. Более простыми словами - тебе авторы игры говорят, намекая в открытую 'Вася, кончай бухать, звуки на стороне сервера нельзя создавать, а то премии лишим!'

Share this post


Link to post
Share on other sites

Спасибо всем за ответы, сейчас займусь тестами)

Share this post


Link to post
Share on other sites

Так же сыпит краши...
Вот так же должно выглядеть изменение?
 

void PlaySong( Polifonia_Cassette_Base item)
	if (GetGame().IsClient())
   {
	{
		StopSong();
		string GetSongFromConfig = item.ConfigGetString("song");			
		string CassetteName;		
		CassetteName = "Polifonia_Cassette_"+GetSongFromConfig+"_"+m_CurrentTrack+"_SoundSet";
		
		mCassetteSound = SEffectManager.PlaySoundOnObject(CassetteName, this);	
		mCassetteSound.Event_OnSoundWaveEnded.Insert(AutoNextTrack);
		mCassetteSound.SetSoundAutodestroy(true);
		SetTapeVolume();
		SetSynchDirty();
	}
   }

 

Share this post


Link to post
Share on other sites

И ещё после добавления изменений в код выше, исчезла функция прибавления громкости)

Share this post


Link to post
Share on other sites

Поменял, код на такой, функции с прибавлениям громкости появилась, но ошибки сыпит те же и в том же количестве 620 строк...
 

void PlaySong( Polifonia_Cassette_Base item)
	{ 
	    if (GetGame().IsClient())
		{	
		StopSong();
		string GetSongFromConfig = item.ConfigGetString("song");			
		string CassetteName;		
		CassetteName = "Polifonia_Cassette_"+GetSongFromConfig+"_"+m_CurrentTrack+"_SoundSet";
		
		mCassetteSound = SEffectManager.PlaySoundOnObject(CassetteName, this);	
		mCassetteSound.Event_OnSoundWaveEnded.Insert(AutoNextTrack);
		mCassetteSound.SetSoundAutodestroy(true);
		SetTapeVolume();
		SetSynchDirty();
		}
	}

 

Share this post


Link to post
Share on other sites

Вот какой крашлог выдает.( может даст больше информации)

---------------------------------------------
Log E:\games\Steam\steamapps\common\DayZServer\profiles\crash_2023-04-15_02-21-01.log started at 15.04. 02:21:50



------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:50
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:51
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:51
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:51
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:51
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:51
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:51
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:51
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:51
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:51
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:51
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:51
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:51
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:51
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:51
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:51
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:51
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:51
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:51
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:21:51
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/vehicles\carscript.c:11
$CurrentDir:mpmissions\dayzOffline.chernarusplus\init.c:6

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:24:03
[EffectSound::Effect] :: [WARNING] :: Created Effect on server.
Class:      'EffectSound'
Function: 'Effect'
Stack trace:
scripts/3_Game/effect.c:74
Polifonia\scripts\4_World/polifoniaradio.c:13

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:25:00
NULL pointer to instance
Class:      'EffectSound'
Function: 'SetEnableEventFrame'
Stack trace:
scripts/3_Game/effect.c:277
scripts/3_Game/effect.c:93
Polifonia\scripts\4_World/polifoniaradio.c:84
scripts/3_Game/tools\component\componentenergymanager.c:427
scripts/4_World/classes\useractionscomponent\actions\singleuse\actionturnoffwhileinhands.c:52
scripts/4_World/classes\useractionscomponent\animatedactionbase.c:205
scripts/4_World/classes\useractionscomponent\actions\actionsingleusebase.c:15

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


------------------------------------
Какой-то пользователь-ПК, 15.04 2023 02:25:17
NULL pointer to instance
Class:      'EffectSound'
Function: 'SetEnableEventFrame'
Stack trace:
scripts/3_Game/effect.c:277
scripts/3_Game/effect.c:93
Polifonia\scripts\4_World/vehicles\carscript.c:82
scripts/3_Game/tools\component\componentenergymanager.c:427
Polifonia\scripts\4_World/actions\cars\actiontogglepolifoniaradioincar.c:74
scripts/4_World/classes\useractionscomponent\animatedactionbase.c:205
scripts/4_World/classes\useractionscomponent\actions\actioninteractbase.c:20

Runtime mode
CLI params: config serverDZ.cfg port 2302 mod @CF;@VPPAdminTools;@BasicSpawnSelect;@Basic Map;@BuildEverywhere;@Breachingcharge;@Code Lock;@CRAFTING FOOD;@AmmoStackBullet;@BuilderItems;@MMG Base Storage;@SchanaModParty;@Nulledkillfeed;@SchanaModGlobalChat;@WindstridesClothingPack;@Cabin_Mod_RaGed;@Cabin_Mod_CodeLock_RaGed;@No-Vehicle-Damage;@Ear-Plugs;@Spurgles_BagZ;@Basic Territories;@Notifications;@Care Packages;@InventoryInCar;@TF-UAZ3151;@CarsForAll;@Tactical Flava;@ClothingInventoryFix;@Advanced King of The Hill;@Modern Scopes;@ClothesRetekstur;@Magnitolaebana9; servermod @GainZ; profiles profiles cpuCount 4 dologs  adminlog  netlog  freezecheck  


 

Share this post


Link to post
Share on other sites

Он ругается в основном вот на эти два метода, один в обычном радио
 

void PolifoniaRadio()
	{
		RegisterNetSyncVariableFloat("m_CurrentMusicVolume");
		RegisterNetSyncVariableInt("m_CurrentTrack");
	};

а вот второй метод в carscript, на который тоже ругается, но эти метода одинаковые

void CarScript()
	{
		RegisterNetSyncVariableFloat("m_CurrentMusicVolume");
		RegisterNetSyncVariableInt("m_CurrentTrack");
	};

ну и 3 типа руганий на сам EffectManager как я понял

Share this post


Link to post
Share on other sites
15 часов назад, woid177 сказал:

Он ругается в основном вот на эти два метода, один в обычном радио
 

void PolifoniaRadio() { RegisterNetSyncVariableFloat("m_CurrentMusicVolume"); RegisterNetSyncVariableInt("m_CurrentTrack"); };


void PolifoniaRadio()
	{
		RegisterNetSyncVariableFloat("m_CurrentMusicVolume");
		RegisterNetSyncVariableInt("m_CurrentTrack");
	};

а вот второй метод в carscript, на который тоже ругается, но эти метода одинаковые

void CarScript() { RegisterNetSyncVariableFloat("m_CurrentMusicVolume"); RegisterNetSyncVariableInt("m_CurrentTrack"); };


void CarScript()
	{
		RegisterNetSyncVariableFloat("m_CurrentMusicVolume");
		RegisterNetSyncVariableInt("m_CurrentTrack");
	};

ну и 3 типа руганий на сам EffectManager как я понял

здесь ругаться не на что. Если он у тебя пишет эти строки - убирай шифрованные пбо из модов. что включены у тебя. ибо они могут отображение ошибок ломать.

по проблеме - замени блок проверки

if (GetGame().IsClient())

на

#ifndef SERVER
				// твой код
				#endif

и сам код между этими ифами стороной сервера впринуипе не будет даже компилиться

Share this post


Link to post
Share on other sites
5 часов назад, 123new сказал:

здесь ругаться не на что. Если он у тебя пишет эти строки - убирай шифрованные пбо из модов. что включены у тебя. ибо они могут отображение ошибок ломать.

по проблеме - замени блок проверки

if (GetGame().IsClient())


if (GetGame().IsClient())

на

#ifndef SERVER // твой код #endif


#ifndef SERVER
				// твой код
				#endif

и сам код между этими ифами стороной сервера впринуипе не будет даже компилиться

попробую сейчас. Вот хотел спросить, если оставить такое количество ошибок и их будет дальше так сыпать, то серверу при нагрузке с онлайном капец будет и он будет падать?

Share this post


Link to post
Share on other sites

Также ругается, может просто в другое место нужна проверку вставить?

 

Share this post


Link to post
Share on other sites
1 час назад, woid177 сказал:

попробую сейчас. Вот хотел спросить, если оставить такое количество ошибок и их будет дальше так сыпать, то серверу при нагрузке с онлайном капец будет и он будет падать?

серверу фиолетово по сути, а вот жесткий диск тебя явно по гроб жизни запомнит. 😄

31 минуту назад, woid177 сказал:

Также ругается, может просто в другое место нужна проверку вставить?

 

а без мода вообще ругается? Если нет то ищи куски кода, где еще комманда создания звука задействуется. Либо код переписывай, чтобы функция на звук всетаки сама его создавала, а не вызывала ванильный код, который у тебя первой строкой в стактрейс влетает.

Share this post


Link to post
Share on other sites

Без мода ошибок нет, у меня в самом начале новый эффект создается, может из-за него всё, а функция воспроизведения музыки один раз используется для магнитолы в машине и в руках

void PlaySong( Polifonia_Cassette_Base item)
	{
		StopSong();
		string GetSongFromConfig = item.ConfigGetString("song");			
		string CassetteName;		
		CassetteName = "Polifonia_Cassette_"+GetSongFromConfig+"_"+m_CurrentTrack+"_SoundSet";
		
		mCassetteSound = SEffectManager.PlaySoundOnObject(CassetteName, this);	
		mCassetteSound.Event_OnSoundWaveEnded.Insert(AutoNextTrack);
		mCassetteSound.SetSoundAutodestroy(true);
		SetTapeVolume();
		SetSynchDirty();
	}

 

Share this post


Link to post
Share on other sites
4 минуты назад, woid177 сказал:

Без мода ошибок нет, у меня в самом начале новый эффект создается, может из-за него всё, а функция воспроизведения музыки один раз используется для магнитолы в машине и в руках

void PlaySong( Polifonia_Cassette_Base item) { StopSong(); string GetSongFromConfig = item.ConfigGetString("song"); string CassetteName; CassetteName = "Polifonia_Cassette_"+GetSongFromConfig+"_"+m_CurrentTrack+"_SoundSet"; mCassetteSound = SEffectManager.PlaySoundOnObject(CassetteName, this); mCassetteSound.Event_OnSoundWaveEnded.Insert(AutoNextTrack); mCassetteSound.SetSoundAutodestroy(true); SetTapeVolume(); SetSynchDirty(); }


void PlaySong( Polifonia_Cassette_Base item)
	{
		StopSong();
		string GetSongFromConfig = item.ConfigGetString("song");			
		string CassetteName;		
		CassetteName = "Polifonia_Cassette_"+GetSongFromConfig+"_"+m_CurrentTrack+"_SoundSet";
		
		mCassetteSound = SEffectManager.PlaySoundOnObject(CassetteName, this);	
		mCassetteSound.Event_OnSoundWaveEnded.Insert(AutoNextTrack);
		mCassetteSound.SetSoundAutodestroy(true);
		SetTapeVolume();
		SetSynchDirty();
	}

 

по идее достаточно такого

void PlaySong( Polifonia_Cassette_Base item)
	{
		#ifndef SERVER
			StopSong();
			string GetSongFromConfig = item.ConfigGetString("song");			
			string CassetteName;		
			CassetteName = "Polifonia_Cassette_"+GetSongFromConfig+"_"+m_CurrentTrack+"_SoundSet";
			
			mCassetteSound = SEffectManager.PlaySoundOnObject(CassetteName, this);	
			mCassetteSound.Event_OnSoundWaveEnded.Insert(AutoNextTrack);
			mCassetteSound.SetSoundAutodestroy(true);
			SetTapeVolume();
			SetSynchDirty();
		#endif
	}

а так надо смотреть каждый новый крашлог после теста и анализировать ваши файлы, все что могу сказать.

Фраза

[EffectSound::Effect] :: [WARNING] :: Created Effect on server.

как раз говорит о том, что это лишь предупреждение об ошибке в коде, на что надо обратить внимание. Плюс пояснение о том, что зву не должен создаваться на стороне сервера, а лишь клиентом игры. И в теории то что выше скинул в этом куске кода этот вопрос должно железно решить. А вот сколько таких кусков кода у вас, увы, не могу знать. Но точно не в RegisterNetSyncVariableFloat проблема, поскольку это регистратор переменной для синхронизации ее между сервером и клиентами.

Share this post


Link to post
Share on other sites
16.04.2023 в 00:57, 123new сказал:

по идее достаточно такого

void PlaySong( Polifonia_Cassette_Base item) { #ifndef SERVER StopSong(); string GetSongFromConfig = item.ConfigGetString("song"); string CassetteName; CassetteName = "Polifonia_Cassette_"+GetSongFromConfig+"_"+m_CurrentTrack+"_SoundSet"; mCassetteSound = SEffectManager.PlaySoundOnObject(CassetteName, this); mCassetteSound.Event_OnSoundWaveEnded.Insert(AutoNextTrack); mCassetteSound.SetSoundAutodestroy(true); SetTapeVolume(); SetSynchDirty(); #endif }


void PlaySong( Polifonia_Cassette_Base item)
	{
		#ifndef SERVER
			StopSong();
			string GetSongFromConfig = item.ConfigGetString("song");			
			string CassetteName;		
			CassetteName = "Polifonia_Cassette_"+GetSongFromConfig+"_"+m_CurrentTrack+"_SoundSet";
			
			mCassetteSound = SEffectManager.PlaySoundOnObject(CassetteName, this);	
			mCassetteSound.Event_OnSoundWaveEnded.Insert(AutoNextTrack);
			mCassetteSound.SetSoundAutodestroy(true);
			SetTapeVolume();
			SetSynchDirty();
		#endif
	}

а так надо смотреть каждый новый крашлог после теста и анализировать ваши файлы, все что могу сказать.

Фраза

[EffectSound::Effect] :: [WARNING] :: Created Effect on server.


[EffectSound::Effect] :: [WARNING] :: Created Effect on server.

как раз говорит о том, что это лишь предупреждение об ошибке в коде, на что надо обратить внимание. Плюс пояснение о том, что зву не должен создаваться на стороне сервера, а лишь клиентом игры. И в теории то что выше скинул в этом куске кода этот вопрос должно железно решить. А вот сколько таких кусков кода у вас, увы, не могу знать. Но точно не в RegisterNetSyncVariableFloat проблема, поскольку это регистратор переменной для синхронизации ее между сервером и клиентами.

Я попробовал запустить мод на пустом сервере без единого дополнительного мода, кроме админки и  cf. Ошибки вылетают те же самые даже с фиксом.
Может я просто не там роюсь, но то что вы посоветовали сделать я  сделал, только к сожалению не помогло

Share this post


Link to post
Share on other sites

ну в таком случае надо смотретьс все ваши файлы и запускать у себя локально, а также смотреть крашлог АКТУАЛЬНЫЙ, дабы понять что ему не нравится. Я не ванга, гадать на кофейной гуще не умею, потому остается лишь своими ручками тестировать. А это, извините, время.

Share this post


Link to post
Share on other sites
5 часов назад, 123new сказал:

ну в таком случае надо смотретьс все ваши файлы и запускать у себя локально, а также смотреть крашлог АКТУАЛЬНЫЙ, дабы понять что ему не нравится. Я не ванга, гадать на кофейной гуще не умею, потому остается лишь своими ручками тестировать. А это, извините, время.

Переписал вес код к чертям собачьим, теперь работает)
Так что тему можно закрывать. Ещё раз спасибо за предыдущие консультации)

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...

Important Information

By using this site, you automaticly agree to our Guidelines and Privacy Policy.
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.