Jump to content

Insane Limits - Live Server Stats - Kills by Country, Clan, Weapon, ...


ImportBot

Recommended Posts

Originally Posted by maxdralle*:

 

Insane Limits - Live Server Stats - Kills by Country, Clan, Weapon, ...

 

this is a limit for live-server-stats. every 255 seconds it shows the stats from the current round in the ingame chat.

 

Posted Image

 

INSTALLATION - LIMIT#1

Settings for Insane Limits

 

Evaluation: OnIntervalServer

Evaluation_interval: 255

First_check: Code

First_check_code: copy paste code #1

limit_action: none

 

Code:

//////////////////////////////////
//   SPAMMER - PART 1-2 - PLAYER/ROUND STATS FOR IN-GAME-CHAT 
//////////////////////////////////
// info > insane limits settings: limit_evaluation: OnIntervalServer     ;     limit_evaluation_interval: 255          ;limit_first_check: Code       ;        limit_action: none


//   SETTINGS //
int MinPlayersOnServer = 10;  // min. # of players on server
int MinTimeRound = 3;  // min. playtime in minutes
int ChatMessages = 9;  // total # of all messages
//SETTINGS END //


// check for enable limit - min player/roundtime
if ((server.PlayerCount < MinPlayersOnServer) || (server.TimeRound <= (MinTimeRound * 60))) {return false;}
if (team1.KillsRound < 5) { return false; }

// get last msg
int TmpShowMsgNr = 0;
if (server.Data.issetInt("GlobalLastMsg")) TmpShowMsgNr = server.Data.getInt("GlobalLastMsg");
TmpShowMsgNr++;
if (TmpShowMsgNr > ChatMessages) {TmpShowMsgNr = 1;}
server.Data.setInt("GlobalLastMsg", TmpShowMsgNr);


//////////////////////////////////
//   HOW MANY PLAYERS FROM COUNTRY
//////////////////////////////////

if ((TmpShowMsgNr == 1) || (TmpShowMsgNr == 6)) {
	// load player list
	List<PlayerInfoInterface> playersList1 = new List<PlayerInfoInterface>();
	playersList1.AddRange(team1.players);
	playersList1.AddRange(team2.players);
	Dictionary<String, double> PlayerCountryList = new Dictionary<String, double>();

	foreach(PlayerInfoInterface player_info in playersList1)
	{
		if (!PlayerCountryList.ContainsKey(player_info.CountryName)) PlayerCountryList.Add(player_info.CountryName, 0);
		PlayerCountryList[player_info.CountryName]++;
	}

	// sort
	List<KeyValuePair<String, double>> PlayerCountryListSORTED = new List<KeyValuePair<String, double>>();

	foreach (KeyValuePair<String, double> pair in PlayerCountryList) {
		PlayerCountryListSORTED.Add(pair);
	}

	if (PlayerCountryListSORTED.Count > 0) {
		PlayerCountryListSORTED.Sort(
			delegate(KeyValuePair<String, double> firstPair, KeyValuePair<String, double> nextPair) {
				double na = PlayerCountryList[firstPair.Key];
				double nb = PlayerCountryList[nextPair.Key];
				if (na > nb) return -1;
				if (na < nb) return 0;
				return 0; // equal
			}
		);
	}

	// send chat msg
	plugin.SendGlobalMessage("-------   PLAYER FROM COUNTRY   ------");
	double TmpOtherCountry = 0;
	String TmpOtherCountryMsg = String.Empty;
	for (int TmpIndex = 1; TmpIndex <= PlayerCountryListSORTED.Count; TmpIndex++) {
		if (TmpIndex <= 6) {
			if ((TmpIndex == PlayerCountryListSORTED.Count) && (TmpIndex %2 != 0)) { 
				plugin.SendGlobalMessage(PlayerCountryListSORTED[TmpIndex-1].Key + " " + PlayerCountryListSORTED[TmpIndex-1].Value);
			} else {
				if((TmpIndex %2 != 0) || (TmpIndex == 1)) {plugin.SendGlobalMessage(PlayerCountryListSORTED[TmpIndex-1].Key + " " + PlayerCountryListSORTED[TmpIndex-1].Value + ", " + PlayerCountryListSORTED[TmpIndex].Key + " " + PlayerCountryListSORTED[TmpIndex].Value);}
			}
		} else {
			if (TmpIndex > 8) {
				TmpOtherCountry = TmpOtherCountry + PlayerCountryListSORTED[TmpIndex-1].Value;
				TmpOtherCountryMsg = ", Others: " + TmpOtherCountry;
				if (TmpIndex == PlayerCountryListSORTED.Count) { plugin.SendGlobalMessage(PlayerCountryListSORTED[6].Key + " " + PlayerCountryListSORTED[6].Value + ", " + PlayerCountryListSORTED[7].Key + " " + PlayerCountryListSORTED[7].Value + TmpOtherCountryMsg);}
			} else {
				if (TmpIndex == PlayerCountryListSORTED.Count) { plugin.SendGlobalMessage(PlayerCountryListSORTED[6].Key + " " + PlayerCountryListSORTED[6].Value );}
			}
		}
	}
	//plugin.SendGlobalMessage("---------------------------------------------------------------");
}
// HOW MANY PLAYERS FROM COUNTRY XY - END //


/////////////////////////////////
//   HOW MANY KILLS BY PLAYER
/////////////////////////////////

if (TmpShowMsgNr == 2) {
	// load player list
	List<PlayerInfoInterface> playersList3 = new List<PlayerInfoInterface>();
	playersList3.AddRange(team1.players);
	playersList3.AddRange(team2.players);
	//Dictionary<String, double> clanCounts = new Dictionary<String, double>();
	Dictionary<String, double> KillsByPlayerList = new Dictionary<String, double>();

	foreach(PlayerInfoInterface player_info in playersList3)
	{
		if (!KillsByPlayerList.ContainsKey(player_info.Name)) KillsByPlayerList.Add(player_info.Name, 0);
		KillsByPlayerList[player_info.Name] += player_info.KillsRound;
	}

	// sort
	List<KeyValuePair<String, double>> KillsByPlayerListSORTED = new List<KeyValuePair<String, double>>();

	foreach (KeyValuePair<String, double> pair in KillsByPlayerList) {
		KillsByPlayerListSORTED.Add(pair);
	}

	if (KillsByPlayerListSORTED.Count > 0) {
		KillsByPlayerListSORTED.Sort(
			delegate(KeyValuePair<String, double> firstPair, KeyValuePair<String, double> nextPair) {
				double na = KillsByPlayerList[firstPair.Key];
				double nb = KillsByPlayerList[nextPair.Key];
				if (na > nb) return -1;
				if (na < nb) return 0;
				return 0; // equal
			}
		);
	}

	// send chat msg
	plugin.SendGlobalMessage("-----------     KILLS BY PLAYER    -----------");
	int TmpIndex3 = 0;
	foreach(KeyValuePair<String, double> pair in KillsByPlayerListSORTED) {
		TmpIndex3++;
		if (TmpIndex3 > 3) break;
		plugin.SendGlobalMessage("#" + (TmpIndex3).ToString() + "  " + KillsByPlayerListSORTED[TmpIndex3-1].Key + "  >>  " + KillsByPlayerListSORTED[TmpIndex3-1].Value);
	}
	//plugin.SendGlobalMessage("---------------------------------------------------------------");
}
// HOW MANY KILLS BY PLAYER - END//


/////////////////////////////////
//   Playtime
/////////////////////////////////

if (TmpShowMsgNr == 3) {
	// load player list
	List<PlayerInfoInterface> playersList31 = new List<PlayerInfoInterface>();
	playersList31.AddRange(team1.players);
	playersList31.AddRange(team2.players);
	Dictionary<String, double> PlaytimeList = new Dictionary<String, double>();

	foreach(PlayerInfoInterface player_info in playersList31)
	{
		if (!PlaytimeList.ContainsKey(player_info.Name)) PlaytimeList.Add(player_info.Name, 0);
		PlaytimeList[player_info.Name] += Math.Round((player_info.TimeTotal / 60), 0);
	}

	// sort
	List<KeyValuePair<String, double>> PlaytimeListSORTED = new List<KeyValuePair<String, double>>();

	foreach (KeyValuePair<String, double> pair in PlaytimeList) {
		PlaytimeListSORTED.Add(pair);
	}

	if (PlaytimeListSORTED.Count > 0) {
		PlaytimeListSORTED.Sort(
			delegate(KeyValuePair<String, double> firstPair, KeyValuePair<String, double> nextPair) {
				double na = PlaytimeList[firstPair.Key];
				double nb = PlaytimeList[nextPair.Key];
				if (na > nb) return -1;
				if (na < nb) return 0;
				return 0; // equal
			}
		);
	}

	// send chat msg
	plugin.SendGlobalMessage("----------   !PLAYTIME IN MINUTES   ----------");
	int TmpIndex33 = 0;
	foreach(KeyValuePair<String, double> pair in PlaytimeListSORTED) {
		TmpIndex33++;
		if (TmpIndex33 > 3) break;
		plugin.SendGlobalMessage("#" + (TmpIndex33).ToString() + "  " + PlaytimeListSORTED[TmpIndex33-1].Key + "  >>  " + PlaytimeListSORTED[TmpIndex33-1].Value + " minutes");
	}
	//plugin.SendGlobalMessage("---------------------------------------------------------------");
}
// Playtime - END//


/////////////////////////////////
//   HOW MANY KILLS BY COUNTRY
/////////////////////////////////

if (TmpShowMsgNr == 4) {
	// load player list
	List<PlayerInfoInterface> playersList2 = new List<PlayerInfoInterface>();
	playersList2.AddRange(team1.players);
	playersList2.AddRange(team2.players);
	Dictionary<String, double> KillsByCountryList = new Dictionary<String, double>();
	Dictionary<String, double> DeathsByCountryList = new Dictionary<String, double>();

	foreach(PlayerInfoInterface player_info in playersList2)
	{
		if (!KillsByCountryList.ContainsKey(player_info.CountryName)) KillsByCountryList.Add(player_info.CountryName, 0);
		KillsByCountryList[player_info.CountryName] += player_info.KillsRound;
		if (!DeathsByCountryList.ContainsKey(player_info.CountryName)) DeathsByCountryList.Add(player_info.CountryName, 0);
		DeathsByCountryList[player_info.CountryName] += player_info.DeathsRound;
	}

	// sort
	List<KeyValuePair<String, double>> KillsByCountryListSORTED = new List<KeyValuePair<String, double>>();

	foreach (KeyValuePair<String, double> pair in KillsByCountryList) {
		KillsByCountryListSORTED.Add(pair);
	}

	if (KillsByCountryListSORTED.Count > 0) {
		KillsByCountryListSORTED.Sort(
			delegate(KeyValuePair<String, double> firstPair, KeyValuePair<String, double> nextPair) {
				double na = KillsByCountryList[firstPair.Key];
				double nb = KillsByCountryList[nextPair.Key];
				if (na > nb) return -1;
				if (na < nb) return 0;
				return 0; // equal
			}
		);
	}

	// send chat msg
	plugin.SendGlobalMessage("-----------   KILLS BY COUNTRY   -----------");
	int TmpIndex2 = 0;
	foreach(KeyValuePair<String, double> pair in KillsByCountryListSORTED) {
		TmpIndex2++;
		if (TmpIndex2 > 3) break;
		double TmpCountryKD = Math.Ceiling((double)KillsByCountryListSORTED[TmpIndex2-1].Value / (DeathsByCountryList[KillsByCountryListSORTED[TmpIndex2-1].Key] ) * 100) / 100;
		if (DeathsByCountryList[KillsByCountryListSORTED[TmpIndex2-1].Key] < 1) {TmpCountryKD = KillsByCountryListSORTED[TmpIndex2-1].Value ;}
		plugin.SendGlobalMessage("#" + (TmpIndex2).ToString() + "  " + KillsByCountryListSORTED[TmpIndex2-1].Key + "  >>  " + KillsByCountryListSORTED[TmpIndex2-1].Value + " @KD: " +  TmpCountryKD.ToString());
	}
	//plugin.SendGlobalMessage("---------------------------------------------------------------");
}
// HOW MANY KILLS BY COUNTRY - END //



/////////////////////////////////
//   HOW MANY KILLS BY WEAPON CATEGORY
/////////////////////////////////

if (TmpShowMsgNr == 5) {
	Dictionary<String, int> TmpWeaponCat = new Dictionary<String, int>();
	if (plugin.RoundData.issetObject("StatsKillWeaponCategory")) {
		TmpWeaponCat = (Dictionary<String,int>)plugin.RoundData.getObject("StatsKillWeaponCategory");

		// sort
		List<KeyValuePair<String, int>> KillsByWeaponCatListSORTED = new List<KeyValuePair<String, int>>();

		foreach (KeyValuePair<String, int> pair in TmpWeaponCat) {
			KillsByWeaponCatListSORTED.Add(pair);
		}

		if (KillsByWeaponCatListSORTED.Count > 0) {
			KillsByWeaponCatListSORTED.Sort(
				delegate(KeyValuePair<String, int> firstPair, KeyValuePair<String, int> nextPair) {
					int na = TmpWeaponCat[firstPair.Key];
					int nb = TmpWeaponCat[nextPair.Key];
					if (na > nb) return -1;
					if (na < nb) return 0;
					return 0; // equal
				}
			);
		}

		// send chat msg
		plugin.SendGlobalMessage("----------   KILLS BY CATEGORY   ----------");
		int TmpIndex5 = 0;
		foreach(KeyValuePair<String, int> pair in KillsByWeaponCatListSORTED) {
			TmpIndex5++;
			if (TmpIndex5 > 3) break;
			String tmp_catname =  KillsByWeaponCatListSORTED[TmpIndex5-1].Key;
			if (tmp_catname == "None") { tmp_catname = "Vehicle";}
			plugin.SendGlobalMessage("#" + (TmpIndex5).ToString() + "  " + tmp_catname + "  >>  " + KillsByWeaponCatListSORTED[TmpIndex5-1].Value);
		}
		//plugin.SendGlobalMessage("---------------------------------------------------------------");
	}
}
// HOW MANY KILLS BY WEAPON CATEGORY - END //


/////////////////////////////////
//   HOW MANY KILLS BY CLAN
/////////////////////////////////

if (TmpShowMsgNr == 7) {
	// load player list
	List<PlayerInfoInterface> playersList4 = new List<PlayerInfoInterface>();
	playersList4.AddRange(team1.players);
	playersList4.AddRange(team2.players);
	Dictionary<String, double> KillsByClanList = new Dictionary<String, double>();
	Dictionary<String, double> DeathsByClanList = new Dictionary<String, double>();
	
	foreach(PlayerInfoInterface player_info in playersList4)
	{
		if (player_info.Tag != "") {
			if (!KillsByClanList.ContainsKey(player_info.Tag)) KillsByClanList.Add(player_info.Tag, 0);
			KillsByClanList[player_info.Tag] += player_info.KillsRound;
			if (!DeathsByClanList.ContainsKey(player_info.Tag)) DeathsByClanList.Add(player_info.Tag, 0);
			DeathsByClanList[player_info.Tag] += player_info.DeathsRound;
		}
	}

	// sort
	List<KeyValuePair<String, double>> KillsByClanListSORTED = new List<KeyValuePair<String, double>>();

	foreach (KeyValuePair<String, double> pair in KillsByClanList) {
		KillsByClanListSORTED.Add(pair);
	}

	if (KillsByClanListSORTED.Count > 0) {
		KillsByClanListSORTED.Sort(
			delegate(KeyValuePair<String, double> firstPair, KeyValuePair<String, double> nextPair) {
				double na = KillsByClanList[firstPair.Key];
				double nb = KillsByClanList[nextPair.Key];
				if (na > nb) return -1;
				if (na < nb) return 0;
				return 0; // equal
			}
		);
	}

	// send chat msg
	plugin.SendGlobalMessage("---------    KILLS BY CLAN TAG    ----------");
	int TmpIndex4 = 0;
	foreach(KeyValuePair<String, double> pair in KillsByClanListSORTED) {
		TmpIndex4++;
		if (TmpIndex4 > 3) break;
		double TmpClanKD = Math.Ceiling((double)KillsByClanListSORTED[TmpIndex4-1].Value / (DeathsByClanList[KillsByClanListSORTED[TmpIndex4-1].Key] ) * 100) / 100;
		if (DeathsByClanList[KillsByClanListSORTED[TmpIndex4-1].Key] < 1) {TmpClanKD = KillsByClanListSORTED[TmpIndex4-1].Value ;}
		plugin.SendGlobalMessage("#" + (TmpIndex4).ToString() + "  Clan [" + KillsByClanListSORTED[TmpIndex4-1].Key + "]  >>  " + KillsByClanListSORTED[TmpIndex4-1].Value + " @KD: " +  TmpClanKD.ToString());
	}
	//plugin.SendGlobalMessage("---------------------------------------------------------------");
}
// HOW MANY KILLS BY CLAN - END //


/////////////////////////////////
//   HOW MANY KILLS BY TEAM ID
/////////////////////////////////

if (TmpShowMsgNr == 8) {
	String[] TeamShortName = new String[]{"US", "RU", "CN"};
	double Team1KD = Math.Ceiling((double)team1.KillsRound / (team1.DeathsRound ) * 100) / 100;
	double Team2KD = Math.Ceiling((double)team2.KillsRound / (team2.DeathsRound ) * 100) / 100;
	if (team1.DeathsRound < 1) {Team1KD = team1.KillsRound ;}
	if (team2.DeathsRound < 1) {Team2KD = team2.KillsRound ;}
	
	// send chat msg
	plugin.SendGlobalMessage("----------    KILLS BY TEAM    ----------");
	plugin.SendGlobalMessage("Team " + TeamShortName[team1.Faction] + "  >>  " + team1.KillsRound + " @KD: " + Team1KD.ToString());
	plugin.SendGlobalMessage("Team " + TeamShortName[team2.Faction] + "  >>  " + team2.KillsRound + " @KD: " + Team2KD.ToString());
	//plugin.SendGlobalMessage("---------------------------------------------------------------");
}
// HOW MANY KILLS BY TEAM ID - END //




/////////////////////////////////
//   HOW MANY KILLS BY WEAPON NAME
/////////////////////////////////

if (TmpShowMsgNr == 9) {
	Dictionary<String, int> TmpWeaponName = new Dictionary<String, int>();
	if (plugin.RoundData.issetObject("StatsKillWeaponName")) {
		TmpWeaponName = (Dictionary<String,int>)plugin.RoundData.getObject("StatsKillWeaponName");

		// sort
		List<KeyValuePair<String, int>> KillsByWeaponNameListSORTED = new List<KeyValuePair<String, int>>();

		foreach (KeyValuePair<String, int> pair in TmpWeaponName) {
			KillsByWeaponNameListSORTED.Add(pair);
		}

		if (KillsByWeaponNameListSORTED.Count > 0) {
			KillsByWeaponNameListSORTED.Sort(
				delegate(KeyValuePair<String, int> firstPair, KeyValuePair<String, int> nextPair) {
					int na = TmpWeaponName[firstPair.Key];
					int nb = TmpWeaponName[nextPair.Key];
					if (na > nb) return -1;
					if (na < nb) return 0;
					return 0; // equal
				}
			);
		}

		// send chat msg
		plugin.SendGlobalMessage("-----------   KILLS BY WEAPON    -----------");
		int TmpIndex6 = 0;
		foreach(KeyValuePair<String, int> pair in KillsByWeaponNameListSORTED) {
			TmpIndex6++;
			if (TmpIndex6 > 3) break;
			String tmp_weaponname =  KillsByWeaponNameListSORTED[TmpIndex6-1].Key;
			if (tmp_weaponname == "Death") { tmp_weaponname = "Vehicle";}
			plugin.SendGlobalMessage("#" + (TmpIndex6).ToString() + "  " + tmp_weaponname + "  >>  " + KillsByWeaponNameListSORTED[TmpIndex6-1].Value );
		}
		//plugin.SendGlobalMessage("---------------------------------------------------------------");
	}
}
// HOW MANY KILLS BY WEAPON NAME - END //
INSTALLATION - LIMIT#2

Settings for Insane Limits

 

Evaluation: OnKill

First_check: Code

First_check_code: copy paste code #2

limit_action: none

Code:

//////////////////////////////////
//   SPAMMER - PART 2-2 - PLAYER/ROUND STATS FOR IN-GAME-CHAT 
//////////////////////////////////

// info > insane limits settings: limit_evaluation: OnKill     ;     limit_first_check: Code       ;        limit_action: none


// count kill by weapon category
Dictionary<String, int> TmpWeaponCat = new Dictionary<String, int>();
if (!plugin.RoundData.issetObject("StatsKillWeaponCategory")) plugin.RoundData.setObject("StatsKillWeaponCategory", new Dictionary<String, int>());
TmpWeaponCat = (Dictionary<String,int>)plugin.RoundData.getObject("StatsKillWeaponCategory");
if (!TmpWeaponCat.ContainsKey(kill.Category)) { TmpWeaponCat.Add(kill.Category, 0); }
TmpWeaponCat[kill.Category] += 1;
plugin.RoundData.setObject("StatsKillWeaponCategory", TmpWeaponCat);


// count kill by weapon name
KillReasonInterface friendly = plugin.FriendlyWeaponName(kill.Weapon);
//plugin.ConsoleWrite(friendly.Name);

Dictionary<String, int> TmpWeaponName = new Dictionary<String, int>();
if (!plugin.RoundData.issetObject("StatsKillWeaponName")) plugin.RoundData.setObject("StatsKillWeaponName", new Dictionary<String, int>());
TmpWeaponName = (Dictionary<String,int>)plugin.RoundData.getObject("StatsKillWeaponName");
if (!TmpWeaponName.ContainsKey(friendly.Name)) { TmpWeaponName.Add(friendly.Name, 0); }
TmpWeaponName[friendly.Name] += 1;
plugin.RoundData.setObject("StatsKillWeaponName", TmpWeaponName);
* Restored post. It could be that the author is no longer active.
Link to comment
  • 1 year later...
  • 2 weeks later...

Originally Posted by fps_shadow*:

 

[15:31:28 96] [insane Limits] Thread(activator): Compiling Limit #2 - Name2 - OnKill

[15:31:29 38] [insane Limits] Thread(activator): ERROR: 3 errors compiling Code

[15:31:29 38] [insane Limits] Thread(activator): ERROR: (CS0117, line: 38, column: 48): "PRoConEvents.KillInfoInterface" ?? ???????? ??????????? ??? "Category"

[15:31:29 38] [insane Limits] Thread(activator): ERROR: (CS0117, line: 38, column: 83): "PRoConEvents.KillInfoInterface" ?? ???????? ??????????? ??? "Category"

[15:31:29 38] [insane Limits] Thread(activator): ERROR: (CS0117, line: 39, column: 31): "PRoConEvents.KillInfoInterface" ?? ???????? ??????????? ??? "Category"

* Restored post. It could be that the author is no longer active.
Link to comment

Archived

This topic is now archived and is closed to further replies.



  • Our picks

    • Game Server Hosting:

      We're happy to announce that EZRCON will branch out into the game server provider scene. This is a big step for us so please having patience if something doesn't go right in this area. Now, what makes us different compared to other providers? Well, we're going with the idea of having a scaleable server hosting and providing more control in how you set up your server. For example, in Minecraft, you have the ability to control how many CPU cores you wish your server to have access to, how much RAM you want to use, how much disk space you want to use. This type of control can't be offered in a single service package so you're able to configure a custom package the way you want it.

      You can see all the available games here. Currently, we have the following games available.

      Valheim (From $1.50 USD)


      Rust (From $3.20 USD)


      Minecraft (Basic) (From $4.00 USD)


      Call of Duty 4X (From $7.00 USD)


      OpenTTD (From $4.00 USD)


      Squad (From $9.00 USD)


      Insurgency: Sandstorm (From $6.40 USD)


      Changes to US-East:

      Starting in January 2022, we will be moving to a different provider that has better support, better infrastructure, and better connectivity. We've noticed that the connection/routes to this location are not ideal and it's been hard getting support to correct this. Our contract for our two servers ends in March/April respectively. If you currently have servers in this location you will be migrated over to the new provider. We'll have more details when the time comes closer to January. The new location for this change will be based out of Atlanta, GA. If you have any questions/concerns please open a ticket and we'll do our best to answer them.
      • 5 replies
    • Hello All,

      I wanted to give an update to how EZRCON is doing. As of today we have 56 active customers using the services offered. I'm glad its doing so well and it hasn't been 1 year yet. To those that have services with EZRCON, I hope the service is doing well and if not please let us know so that we can improve it where possible. We've done quite a few changes behind the scenes to improve the performance hopefully. 

      We'll be launching a new location for hosting procon layers in either Los Angeles, USA or Chicago, IL. Still being decided on where the placement should be but these two locations are not set in stone yet. We would like to get feedback on where we should have a new location for hosting the Procon Layers, which you can do by replying to this topic. A poll will be created where people can vote on which location they would like to see.

      We're also looking for some suggestions on what else you would like to see for hosting provider options. So please let us know your thoughts on this matter.
      • 4 replies
    • Added ability to disable the new API check for player country info


      Updated GeoIP database file


      Removed usage sending stats


      Added EZRCON ad banner



      If you are upgrading then you may need to add these two lines to your existing installation in the file procon.cfg. To enable these options just change False to True.

      procon.private.options.UseGeoIpFileOnly False
      procon.private.options.BlockRssFeedNews False



       
      • 2 replies
    • I wanted I let you know that I am starting to build out the foundation for the hosting services that I talked about here. The pricing model I was originally going for wasn't going to be suitable for how I want to build it. So instead I decided to offer each service as it's own product instead of a package deal. In the future, hopefully, I will be able to do this and offer discounts to those that choose it.

      Here is how the pricing is laid out for each service as well as information about each. This is as of 7/12/2020.

      Single MySQL database (up to 30 GB) is $10 USD per month.



      If you go over the 30 GB usage for the database then each additional gigabyte is charged at $0.10 USD each billing cycle. If you're under 30GB you don't need to worry about this.


      Databases are replicated across 3 zones (regions) for redundancy. One (1) on the east coast of the USA, One (1) in Frankfurt, and One (1) in Singapore. Depending on the demand, this would grow to more regions.


      Databases will also be backed up daily and retained for 7 days.




      Procon Layer will be $2 USD per month.


      Each layer will only allow one (1) game server connection. The reason behind this is for performance.


      Each layer will also come with all available plugins installed by default. This is to help facilitate faster deployments and get you up and running quickly.


      Each layer will automatically restart if Procon crashes. 


      Each layer will also automatically restart daily at midnight to make sure it stays in tip-top shape.


      Custom plugins can be installed by submitting a support ticket.




      Battlefield Admin Control Panel (BFACP) will be $5 USD per month


      As I am still working on building version 3 of the software, I will be installing the last version I did. Once I complete version 3 it will automatically be upgraded for you.





      All these services will be managed by me so you don't have to worry about the technical side of things to get up and going.

      If you would like to see how much it would cost for the services, I made a calculator that you can use. It can be found here https://ezrcon.com/calculator.html

       
      • 11 replies
    • I have pushed out a new minor release which updates the geodata pull (flags in the playerlisting). This should be way more accurate now. As always, please let me know if any problems show up.

       
      • 9 replies
×
×
  • Create New...

Important Information

Please review our Terms of Use 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.