Jump to content

Server Stats page for XpKiller's 'BF3 Chat, GUID, Stats and Mapstats Logger'


ImportBot

Recommended Posts

Originally Posted by leibhold*:
 
Finshed so post - now back to my own web page work...

if(mysql_num_rows($player_data_result)!=0)
{
//BEGIN ASSAULT RIFLES BLOCK
Statsout("tbl_weapons_assaultrifle",$table_suffix,$ThisID,"Assault Rifle");
//END ASSAULT RIFLES BLOCK

//BEGIN LMG BLOCK
Statsout("tbl_weapons_lmg",$table_suffix,$ThisID,"Light Machine Gun Stats");
//END LMG BLOCK

//BEGIN SHOTGUN BLOCK
Statsout("tbl_weapons_shotgun",$table_suffix,$ThisID,"Shot Gun");
//END SHOTGUN BLOCK

//BEGIN SMG BLOCK
Statsout("tbl_weapons_smg",$table_suffix,$ThisID,"Submachine Gun Stats");
//END SMG BLOCK

//BEGIN SNIPER BLOCK
Statsout("tbl_weapons_sniperrifle",$table_suffix,$ThisID,"Sniper Rifle Stats");
//END SNIPER BLOCK

//BEGIN PISTOLS BLOCK
Statsout("tbl_weapons_handgun",$table_suffix,$ThisID,"Hand Gun Stats");
//END PISTOLS BLOCK

//BEGIN ROCKETS BLOCK
Statsout("tbl_weapons_projectileexplosive",$table_suffix,$ThisID,"Projectile Explosive Stats");
//END ROCKETS BLOCK

//BEGIN EXPLOSIVES BLOCK
Statsout("tbl_weapons_explosive",$table_suffix,$ThisID,"Explosives Stats");
//END EXPLOSIVES BLOCK

//BEGIN OTHER WEAPONS BLOCK
Statsout("tbl_weapons_melee",$table_suffix,$ThisID,"Other Weapons Stats");
//END OTHER WEAPONS BLOCK
}
Function Statsout($tbl_name,$tbl_suffix,$TheID,$headingprint)
{
		$GetColumnNames = mysql_query("SHOW COLUMNS FROM $tbl_name$tbl_suffix") or die("mysql error");
		$numColumns = mysql_num_rows($GetColumnNames); 
		$x = 0; 
		while ($x < $numColumns) 
			{ 
    		$colname = mysql_fetch_row($GetColumnNames); 
    		$col[$x] = $colname[0]; 
    		$x++; 
			} 
		//Code from some smart guy on the internet
	$player_query = "SELECT * FROM $tbl_name$tbl_suffix where StatsID='$TheID'";
	$player_result = mysql_query($player_query);
	$row=mysql_fetch_assoc($player_result);
	if (!mysql_num_rows($player_result) == 0)  // Do we have any records for this player on this section _
		{
		$colloop=1;
		while ($colloop < $numColumns) 
			{ 
			$resulter[$col[$colloop]]=$row[$col[$colloop]];  // we put the name and the number into an array
			if (substr($col[$colloop],-6)=="_kills")   // this checks - is this a kills line
						{
						$sectionkillcount=$sectionkillcount + $row[$col[$colloop]];
						// as thsi is a kills line tally up the number of kills in the section
						}
					$colloop++;
			}
			// Once we have a tally of the kills - see if we will show this section.
			if($sectionkillcount > 0)    // tally of kills in the section - if zero then dont show section.
					{
					// We have kills so show the heading
					echo "<div style='margin-left: auto;margin-right: auto;width: 100%;background-color: #262626;border-radius: 15px;'>";
					echo "<table width='100%' border='0'>";
					echo "<tr><td width='100%'>";
					echo "<br/><center><b> $headingprint </b></center><br/>";
					// once we have dont the heading - then we can loop though the variable - which has the stats.
					foreach ($resulter as $weaponName => $value) 
						{
 						if (strrpos($weaponName,"_kills") > 0)  // check for a kills stat line
    						{
  							if ($value > 0 ) // its a kill stats line but any kills _
    							{
    							// there are kills so lets go - set ThereAreKills to true
    							$ThereAreKills=true;
								echo "<div style='margin-left: auto;margin-right: auto;width: 90%;background-color: #373737;border-radius: 10px;'>";
								echo "<table align='center' width='95%' border='0'>";
								echo "<tr>";
								// This is the row of the weapon with kills on it
								echo "<td width='25%' style='text-align: left'><font color='#CACACA'>";
								echo substr($weaponName,0,(strrpos($weaponName,"_kills")));
								echo ":</font></td>";
								echo "<td width='25%' style='text-align: left'><font color='#CACACA'>Kills:</font> $value</td>";
    							} // end of kills are greater than zero
    							else 
    							{
    								$ThereAreKills=false;
    							}
    						} // end of if a kills line
    						if ($ThereAreKills)  // we have to process the Headshots and Deaths - otherwise we dont
    							{
    								if (strrpos($weaponName,"_hs") > 0) //hopefully this is the headshot stat
    								{	
    								echo "<td width='25%' style='text-align: left'><font color='#CACACA'>Headshots:</font> $value</td>";
    								}
    						
									if (strrpos($weaponName,"_deaths") > 0) //hopefully this is the headshot stat
									{	
    								echo "<td width='25%' style='text-align: left'><font color='#CACACA'>Deaths:</font> $value</td>";
    								echo "</tr></table>";
				    				echo "</div><br/>";
    								}
    							} // End of if ThereAreKills
						} // end of variable loop
						// we can wrap up the end of the table
					echo "<br/>";
					echo "</td></tr>";
					echo "</table></div><br/>";
					} // end of the are there kills section
			} // End of check for zero entries
		}
* Restored post. It could be that the author is no longer active.
Link to comment
  • Replies 487
  • Created
  • Last Reply

Originally Posted by ty_ger07*:

 

Dont use select * from table unless you really need all columns.

 

The query is ok inner joins don't hurt. But leibholds query is a little bit better.

I am using all the columns from that table. Select * is perfectly appropriate for this case.

 

Hi ty_ger07

little suggestion.

 

Each gun type section you have a big query

 

 

$player_assault_query = "SELECT * FROM tbl_weapons_assaultrifle$table_suffix wa INNER JOIN tbl_server_player$table_suffix tsp ON tsp.StatsID = wa.StatsID INNER JOIN tbl_playerdata$table_suffix tpd ON tsp.PlayerID = tpd.PlayerID WHERE tsp.ServerID = '$server_ID' AND SoldierName = '$player_name'";

 

But really you only need to find the StatsID at the top - hold that in a variable ($hisID) then just do

 

$player_query = "SELECT * FROM tbl_weapons_lmg$table_suffix where StatsID='$hisID'";

 

 

Just a thought....

I agree with you and I did plan to use ...WHERE StatsID = '$StatsID' at one point since that variable already has all the necessary prerequisites associated with it. The reason I decided not to was simply for the purpose of integrity of each of the sections of the code. My goal from the beginning was to make a simple stats page and to divide it all up into sections (or 'blocks') in such a way that most of the sections have no requirements from other sections. This was done so that anyone can easily add or remove sections without affecting the integrity of the entire page displayed. I think it is lightning quick as it is and thus decided that there is no reason for me to change this plan of attack.

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

Originally Posted by ty_ger07*:

 

@leibhold

Whoa!

Ummm... wow.

Ok. I see that you are trying to eliminate all of the repetition of each of the weapon blocks.

I don't have time now, but will give your code a try later. Thanks for all your efforts.

I would like to say that, as I am sure you can see, I am not by any means an expert at any of this. Everything I know is self-taught and rather simple. I have little interest in making this project bigger than it already is.

If anyone wants to take my code and run with it, produce something awesome, and publish it, they are entirely welcome to it. Also, I would take a look at what 0mni is doing because what he has so far looks like it has a lot of potential.

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

Originally Posted by leibhold*:

 

I was looking at your web stuff cause it looked neat and got caught in a programming loop.

Looking at weapons stats for my webadmin page and got trapped in your web page code.:biggrin:

 

Means also if a weapon added later - it will find it by itself.

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

Originally Posted by mudracing*:

 

Enter your GGC-Stream server ID and GGC-Stream API Key.

 

Code:

// GGC-STREAM INFORMATION

$serverId        = ''; // server ID
$key            = ''; // API Key
where can I find the API Key on GGC?
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by ty_ger07*:

 

where can I find the API Key on GGC?

Go to your user control panel next to your logged in name at top right. Then click on account and you will see your API key listed on the right towards the bottom of your account page.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by ty_ger07*:

 

Just a super minor update:

 

Changed the web links color so that links aren't so dull and unnoticed.

Cleaned up the banned player query so that it will find banned players faster.

Search player function now ignores if someone accidentally adds spaces to the search.

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

Originally Posted by ty_ger07*:

 

I recommend you update to the latest code.

 

Changes:

- Older browser compatibility improvements

- Visual adjustments for text visibility

- Minor code improvements

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

Originally Posted by ty_ger07*:

 

Just so that you guys know, 'GGC-Stream failed to respond' means that one of three things happened:

 

It could be because:

1) You didn't enter your GGC-Stream information or you haven't set up a GGC-Stream account

2) GGC-Stream's web service is not working properly (rare)

3) GGC-Streams's web service flood protection threshold set it because too many players were checking your stats page at the same time. The ban data should start working again within 10 minutes after it is allowed to 'cool down'. This is a protection feature on GGC-Stream's side which I cannot disable.

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

Originally Posted by ty_ger07*:

 

great thanks=). http://bf3.stronghold-guild.net/

Why don't work " all banned players"? GGC-STREAM information configured

First of all, you are not using the most recent version of the code.

 

 

What isn't working?

 

It looks like it is working to me:

http://bf3.stronghold-guild.net/play...Banned+Players...

 

If you are banning with PRoCon, then they won't show up on the list. The Banned Players list can only show all the players who have been banned using GGC-Stream who are logged in your stats database. Currently, it looks like only one person on your GGC-Stream ban list has been found in your player stats database.

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

Originally Posted by kopoBko*:

 

First of all, you are not using the most recent version of the code.

 

 

What isn't working?

 

It looks like it is working to me:

http://bf3.stronghold-guild.net/play...Banned+Players...

 

If you are banning with PRoCon, then they won't show up on the list. The Banned Players list can only show all the players who have been banned using GGC-Stream who are logged in your stats database. Currently, it looks like only one person on your GGC-Stream ban list has been found in your player stats database.

where the most recent version of the code_o_O

I figured with banlist, was too lazy to go to the forum and write it =)

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

Originally Posted by ty_ger07*:

 

I added a player rank calculating function to our clan's stats page, but will not release it in this code yet. XpKiller will be releasing an update for his plugin soon which will calculate the player's rank at game round end and store the value for each player in the database where it can be retrieved my faster than my current method.

 

Here is an example of what I have for the time being:

http://thetacteam.info/player_stats1..._player=Search

 

Rank: 1 / 14069

Notice how slow it is though. This is why I am waiting for the official update from XpKiller which will be much faster.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by kopoBko*:

 

I added a player rank calculating function to our clan's stats page, but will not release it in this code yet. XpKiller will be releasing an update for his plugin soon which will calculate the player's rank at game round end and store the value for each player in the database where it can be retrieved my faster than my current method.

 

Here is an example of what I have for the time being:

http://thetacteam.info/player_stats1..._player=Search

 

 

 

Notice how slow it is though. This is why I am waiting for the official update from XpKiller which will be much faster.

i added "last seens"=)

how to convert a date form YYYY.MM.DD to DD.MM.YYYY?

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

Originally Posted by kopoBko*:

 

$gooddate=date("d-m-Y",strtotime($baddate));

Thanks, but I can not figure out how to add this line to the time:sad:

 

add. $gooddate=date("d.M.Y H:i;s",strtotime($LastSeenOnServer));

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

Originally Posted by ty_ger07*:

 

Another pretty size-able change. I recommend that everyone update.

 

Changes:

- Cleaned up suspicious players query to increase speed

- Cleaned up code to reduce its size

- Cleaned up player stats page to make it more visually stimulating

- Added first seen, last seen, country, and rank to player stats page

 

Rank query on player stats page will be sped up when XpKiller releases the next version of his stats logger plugin.

 

stats_update.png

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

Originally Posted by ty_ger07*:

 

Another update has been posted in the first post.

 

Changes:

- Player rank function sped up

- Player rank function made more accurate

- Player rank function compatibility for people with multiple server IDs

- Player rank function for player search using wrong case

- Added $clan_name variable to top of file so that it can be added as a search engine keyword

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

Originally Posted by ty_ger07*:

 

Nice Code thanks but i Have also some problems with my database : http://vzoneserver.dyndns.org/BF_Stats/

Nothings appears but i have correctly configure my database in innoDB and the plugin works.. so what appens..?

Thanks for answers.

You should seek help from XpKiller in his thread regarding the stats logger plugin. I don't offer support for his plugin. This code only makes use of the database which his plugin creates when properly configured.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by ty_ger07*:

 

Update:

 

Changes:

- Country reported in player stats page is full country name instead of just two letter abreviation

- Country stats page added

 

Here is the php code for translating country code to full country name (where $CountryCode is a supplied value):

Code:

$country_array = array('Unknown'=>'--','Afghanistan'=>'AF','Albania'=>'AL','Algeria'=>'DZ','American Samoa'=>'AS','Andorra'=>'AD','Angola'=>'AO','Anguilla'=>'AI','Antarctica'=>'AQ','Antigua'=>'AG','Argentina'=>'AR','Armenia'=>'AM','Aruba'=>'AW','Australia'=>'AU','Austria'=>'AT','Azerbaijan'=>'AZ','Bahamas'=>'BS','Bahrain'=>'BH','Bangladesh'=>'BD','Barbados'=>'BB','Belarus'=>'BY','Belgium'=>'BE','Belize'=>'BZ','Benin'=>'BJ','Bermuda'=>'BM','Bhutan'=>'BT','Bolivia'=>'BO','Bosnia'=>'BA','Botswana'=>'BW','Bouvet Island'=>'BV','Brazil'=>'BR','Indian Ocean'=>'IO','Brunei Darussalum'=>'BN','Bulgaria'=>'BG','Burkina Faso'=>'BF','Burundi'=>'BI','Cambodia'=>'KH','Cameroon'=>'CM','Canada'=>'CA','Cape Verde'=>'CV','Cayman Islands'=>'KY','Central Africa'=>'CF','Chad'=>'TD','Chile'=>'CL','China'=>'CN','Christmas Island'=>'CX','Cocos Islands'=>'CC','Columbia'=>'CO','Comoros'=>'KM','Congo'=>'CG','Republic of Congo'=>'CD','Cook Islands'=>'CK','Costa Rica'=>'CR','Ivory Coast'=>'CI','Croatia'=>'HR','Cuba'=>'CU','Cyprus'=>'CY','Czech Repuplic'=>'CZ','Denmark'=>'DK','Djibouti'=>'DJ','Dominica'=>'DM','Dominican Republic'=>'DO','East Timor'=>'TP','Ecuador'=>'EC','Egypt'=>'EG','El Salvador'=>'SV','Equatorial Guinea'=>'GQ','Eritrea'=>'ER','Estonia'=>'EE','Ethiopia'=>'ET','Falkland Islands'=>'FK','Faroe Islands'=>'FO','Fiji'=>'FJ','Finland'=>'FI','France'=>'FR','Metropolitan France'=>'FX','French Guiana'=>'GF','French Polynesia'=>'PF','French Territories'=>'TF','Gabon'=>'GA','Gambia'=>'GM','Georgia'=>'GE','Germany'=>'DE','Ghana'=>'GH','Gibraltar'=>'GI','Greece'=>'GR','Greenland'=>'GL','Grenada'=>'GD','Guadeloupe'=>'GP','Guam'=>'GU','Guatemala'=>'GT','Guinea'=>'GN','Guinea-Bissau'=>'GW','Guyana'=>'GY','Haiti'=>'HT','McDonald Islands'=>'HM','Vatican City'=>'VA','Honduras'=>'HN','Hong Kong'=>'HK','Hungary'=>'HU','Iceland'=>'IS','India'=>'IN','Indonesia'=>'ID','Iran'=>'IR','Iraq'=>'IQ','Ireland'=>'IE','Israel'=>'IL','Italy'=>'IT','Jamaica'=>'JM','Japan'=>'JP','Jordan'=>'JO','Kazakstan'=>'KZ','Kenya'=>'KE','Kiribati'=>'KI','North Korea'=>'KP','South Korea'=>'KR','Kuwait'=>'KW','Kyrgyzstan'=>'KG','Lao'=>'LA','Latvia'=>'LV','Lebanon'=>'LB','Lesotho'=>'LS','Liberia'=>'LR','Libya'=>'LY','Liechtenstein'=>'LI','Lithuania'=>'LT','Luxembourg'=>'LU','Macau'=>'MO','Macedonia'=>'MK','Madagascar'=>'MG','Malawi'=>'MW','Malaysia'=>'MY','Maldives'=>'MV','Mali'=>'ML','Malta'=>'MT','Marshall Islands'=>'MH','Martinique'=>'MQ','Mauritania'=>'MR','Mauritius'=>'MU','Mayotte'=>'YT','Mexico'=>'MX','Micronesia'=>'FM','Moldova'=>'MD','Monaco'=>'MC','Mongolia'=>'MN','Montserrat'=>'MS','Morocco'=>'MA','Mozambique'=>'MZ','Myanmar'=>'MM','Namibia'=>'NA','Nauru'=>'NR','Nepal'=>'NP','Netherlands'=>'NL','Netherlands Antilles'=>'AN','New Caledonia'=>'NC','New Zealand'=>'NZ','Nicaragua'=>'NI','Niger'=>'NE','Nigeria'=>'NG','Niue'=>'NU','Norfolk Island'=>'NF','Mariana Islands'=>'MP','Norway'=>'NO','Oman'=>'OM','Pakistan'=>'PK','Palau'=>'PW','Palestine'=>'PS','Panama'=>'PA','Papua New Guinea'=>'PG','Paraguay'=>'PY','Peru'=>'PE','Philippines'=>'PH','Pitcairn'=>'PN','Poland'=>'PL','Portugal'=>'PT','Puerto Rico'=>'PR','Qatar'=>'QA','Reunion'=>'RE','Romania'=>'RO','Russian Federation'=>'RU','Rwanda'=>'RW','Saint Helena'=>'SH','Saint Kitts'=>'KN','Saint Lucia'=>'LC','Saint Pierre'=>'PM','Saint Vincent'=>'VC','Samoa'=>'WS','San Marino'=>'SM','Sao Tome'=>'ST','Saudi Arabia'=>'SA','Senegal'=>'SN','Seychelles'=>'SC','Sierra Leone'=>'SL','Singapore'=>'SG','Slovakia'=>'SK','Slovenia'=>'SI','Solomon Islands'=>'SB','Somalia'=>'SO','South Africa'=>'ZA','Sandwich Islands'=>'GS','Spain'=>'ES','Sri Lanka'=>'LK','Sudan'=>'SD','Suriname'=>'SR','Svalbard'=>'SJ','Swaziland'=>'SZ','Sweden'=>'SE','Switzerland'=>'CH','Syria'=>'SY','Taiwan'=>'TW','Tajikistan'=>'TJ','Tanzania'=>'TZ','Thailand'=>'TH','Togo'=>'TG','Tokelau'=>'TK','Tonga'=>'TO','Trinidad'=>'TT','Tunisia'=>'TN','Turkey'=>'TR','Turkmenistan'=>'TM','Turks Islands'=>'TC','Tuvalu'=>'TV','Uganda'=>'UG','Ukraine'=>'UA','United Arab Emirates'=>'AE','United Kingdom'=>'GB','United States'=>'US','US Minor Outlying Islands'=>'UM','Uruguay'=>'UY','Uzbekistan'=>'UZ','Vanuatu'=>'VU','Venezuela'=>'VE','Vietnam'=>'VN','Virgin Islands (British)'=>'VG','Virgin Islands (US)'=>'VI','Wallis and Futuna'=>'WF','Western Sahara'=>'EH','Yemen'=>'YE','Yugoslavia'=>'YU','Zambia'=>'ZM','Zimbabwe'=>'ZW');

$country = array_search($CountryCode,$country_array);
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by dakeeper*:

 

Very Great!

 

I`m missing some things...

 

e.g. "Show all players"

 

And perhaps...you can manage ist to make something like "Ranks for Weapons". Most kills with AK74M, or Top 3 etc...

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

Originally Posted by ty_ger07*:

 

I`m missing some things...

 

e.g. "Show all players"

What do you mean by 'show all players'?

 

If you have 20,000 people logged, who is going to look at a list of 20,000 players? Just type in the name of the player you are interested in using the player search box.

* 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.