BR_ASGARD 0 Posted October 15, 2018 hello @robbyj Possible add reserved slot? > define number reserved slot > define personal message when player is kick > same rcon with battlemetrics ! have a good day Share this post Link to post Share on other sites
mrwolv 46 Posted October 15, 2018 so how would i set it to show player kills to player a killed player b Share this post Link to post Share on other sites
The Classified Rebel 2 Posted October 15, 2018 yeah it doesn't load the plugin at all for me either. Share this post Link to post Share on other sites
Aussie Cleetus 57 Posted October 15, 2018 in the override of the init, would you not want to call super.OnInit()? Share this post Link to post Share on other sites
Ton_41 1 Posted October 19, 2018 How to show time of server to display in server Share this post Link to post Share on other sites
FabianoMartins 6 Posted January 29, 2021 On 10/15/2018 at 7:37 AM, BR_ASGARD said: hello @robbyj Possible add reserved slot? > define number reserved slot > define personal message when player is kick > same rcon with battlemetrics ! have a good day With BEC you can do that! Share this post Link to post Share on other sites
FabianoMartins 6 Posted January 29, 2021 On 10/4/2018 at 12:37 AM, Mizev said: It's complicated. There is a simpler method. Add the script to a file: ..\DayZServer\mpmissions\dayzOffline.chernarusplus\init.c override void OnInit() { GetGame().GetCallQueue(CALL_CATEGORY_GAMEPLAY).CallLater(NumPLayersOnServer, 30000, true); // 30 seconds } void NumPLayersOnServer() { ref array<Man> players = new array<Man>; GetGame().GetPlayers( players ); int numPlayers = players.Count(); for ( int i = 0; i < players.Count(); ++i ) { Man player = players.Get(i); if( player ) { string messPlayers = "Players on the server: " + numPlayers.ToString(); Param1<string> m_MessageParam = new Param1<string>(messPlayers); GetGame().RPCSingleParam(player, ERPCs.RPC_USER_ACTION_MESSAGE, m_MessageParam, true, player.GetIdentity()); } } } Nice job brow!!! Thanks!!! I will try it on my server! 😃 Share this post Link to post Share on other sites