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
  • 0
Gizda

Логирование

Всем привет. Подскажите, может кто делал уже. Нужно как то отследить в логах действие "выкопать" схрон лопатой. Реально такое вообще?

Share this post


Link to post
Share on other sites

5 answers to this question

Recommended Posts

  • 0

По мойму действия с инструментами, в том числе и лопатой логируются через мод BaseBuildingLogs. 

 

https://steamcommunity.com/sharedfiles/filedetails/?id=1576057168

Edited by Vladislavfaddeevich (see edit history)

Share this post


Link to post
Share on other sites



  • 0
В 19.10.2019 в 21:46, Gizda сказал:

Всем привет. Подскажите, может кто делал уже. Нужно как то отследить в логах действие "выкопать" схрон лопатой. Реально такое вообще?

Реально, но писать свой скрипт надо

Share this post


Link to post
Share on other sites
  • 0

Создал билет, чтобы разработчики добавили логирование этих действий:

https://feedback.bistudio.com/T150266

 

Пока что можете пользоваться вот этим кодом

actiondiginstash.c

modded class ActionDigInStash: ActionContinuousBase
{	
	override string GetAdminLogMessage(ActionData action_data)
	{
	  Object targetObject = action_data.m_Target.GetObject();

    return " buried " + targetObject.GetDisplayName() + " with " + action_data.m_MainItem.GetDisplayName();    
	}
};

actiondigoutstash.c

modded class ActionDigOutStash: ActionContinuousBase
{	
	override string GetAdminLogMessage(ActionData action_data)
	{
	  Object targetObject = action_data.m_Target.GetObject();
    
    return " dig up " + targetObject.GetDisplayName() + " with " + action_data.m_MainItem.GetDisplayName();
	}  
};

 

Edited by PR9INICHEK (see edit history)

Share this post


Link to post
Share on other sites
  • 0

Логируем ,кто закопал,что закопал,где закопал.и также обратно.Ребята.скоро всё будет ,допиливаем.Логируем у себя на серве каждый пук в игре.

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.