Jump to content

Adaptive Ticket Count (1.2.1.1 - 12/08/13)


ImportBot

Recommended Posts

  • Replies 694
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Posted Images

  • 1 month later...

Originally Posted by asgard*:

 

hello,

i will 1200 ticket for all mod/map but procon /

[09:21:02 76] AdaptiveTicketCount: WORK -> 0 players; Ticket count: 150% (1200/1200 actual tickets)

[09:21:03 99] AdaptiveTicketCount: INFO -> Level loaded.

 

iN BATTLOG :

É-U

2400

RU

2400

 

ty

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

Originally Posted by spatieman*:

 

small isue with BF4

it always set tickets to 600 tickets here.

i set from 0 to 4 players 200 tickets, and up when more players after round end.

but ,sticks to 600 tickets.

any idea?

i also use map manager.

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

Originally Posted by spatieman*:

 

nvr mind, i found out that it seems not fully compatible with all the BF4 modes.

cough, most of BF4 map modes arnt in it, hehe

think gonna experiment with with setting new ticket rate on end of round.

or new,, dunno, its a test worth it.

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

Originally Posted by leibhold*:

 

Any reason there isn't installation deets provided with this as well - like the votemap plugin, which installed easy enough?

Cause its from 12/08/13 and back then peeps knew how to install a plugin.

 

Stick it in directory (like with any other plugin) and setup using menu system after you restart.

 

Also the author

I'm still around, but no longer have the means to work on plugins.

But lastly showthread....ered-Tutorials*
* Restored post. It could be that the author is no longer active.
Link to comment
  • 1 year later...
  • Administrators

Hey guys, I hope this is the correct plugin.

 

We want to lower ticket count to 800 with low pop and raise to 1,000 tickets with high pop.

 

Concerned about if we have a high pop that drops to low pop in the middle of the round, will it restart the round in the middle of the match?

 

As far as I remember, no, changing the ticket count requires a round restart.

The developer of the Battlefield Admin Control Panel (BFACP)

For BFACP support please post in the BFACP topic linked above.

Do not contact me via PM on the forums for help with procon. Please make a topic for it. Only PM's I will accept will revolve around any website issues.

spacer.png

Link to comment
  • 10 months later...

Not sure how much this thread is still monitored but I'm hoping somebody has a suggestion here.  I am trying to run a map rotation of CQ Small and CQ Large maps. on BF4.  The issue is that when using the plugin to control the tickets, (I want all maps to be 800 tickets) when it switches between a CQ Small and Large map, the ticket count won't carry over unless the map is restarted again. Such as, its on Small map with 800 tickets, it changes to a CQ Large map and the tickets double to 1600. When it changes from a Large map to a Small map, the tickets default back to 400. I've tried using Actual Number of Tickets and also by Percentage. It experiences the same issue regardless.  The only way to get it back to 800 tickets is to restart the map a second time after the initial change.   I've even tried using the Ultimate Map Manager using Custom presets with the VARS ticket count and it still experiences the same issues.  

It doesn't seem possible in BF4 to have a rotation of CQ Large/Small maps while maintaining one defined ticket count, regardless of the Small or Large?  

Edited by Hockster
Link to comment
  • Administrators
9 hours ago, Hockster said:

Not sure how much this thread is still monitored but I'm hoping somebody has a suggestion here.  I am trying to run a map rotation of CQ Small and CQ Large maps. on BF4.  The issue is that when using the plugin to control the tickets, (I want all maps to be 800 tickets) when it switches between a CQ Small and Large map, the ticket count won't carry over unless the map is restarted again. Such as, its on Small map with 800 tickets, it changes to a CQ Large map and the tickets double to 1600. When it changes from a Large map to a Small map, the tickets default back to 400. I've tried using Actual Number of Tickets and also by Percentage. It experiences the same issue regardless.  The only way to get it back to 800 tickets is to restart the map a second time after the initial change.   I've even tried using the Ultimate Map Manager using Custom presets with the VARS ticket count and it still experiences the same issues.  

It doesn't seem possible in BF4 to have a rotation of CQ Large/Small maps while maintaining one defined ticket count, regardless of the Small or Large?  

Ticket count changes should be done before the map actually loads but IIRC its not perfect. Hence why you experience that issue. Not sure of a solution other than just have a set number of tickets every mode.

The developer of the Battlefield Admin Control Panel (BFACP)

For BFACP support please post in the BFACP topic linked above.

Do not contact me via PM on the forums for help with procon. Please make a topic for it. Only PM's I will accept will revolve around any website issues.

spacer.png

Link to comment
  • 2 weeks later...
On 7/22/2020 at 8:28 PM, Prophet731 said:

Ticket count changes should be done before the map actually loads but IIRC its not perfect. Hence why you experience that issue. Not sure of a solution other than just have a set number of tickets every mode.

Thanks for the response. Good to see peeps are still reading these great boards.  Sincece posting,  I've literally tried everything I could think of and could never fix it. I think somehow once the vars.gameModeCounter  is set to a fixed ticket percentage, making any change do it with a Preset in UMM requires an additional restart on the round for it to kick in.  Such as, Changing from a Chain Link map at 200% tickets to a Conquest Large map with 100% tickets, it will double the Conquest tickets to 1600 with the first load of the map. Restarting it will set it back to 100%. Super frustating because Chain Link 1000 ticket rounds are way to short and 400 tickets for a CQ Small map isn't enough. 

Link to comment
  • Plugin Developer

i would do it with the plugin INSANE LIMITS. i am not sure how it is being handle with UMM and ATT plugin.

// Round End - Server Ticket Changer
// settings for insane limits:     limit_evaluation: OnRoundOver     ,    limit_first_check: Code

if ((server.NextGamemode == "Chainlink0") && (server.GameModeCounter != 200)) {
	plugin.ServerCommand("vars.gameModeCounter", "200");
	plugin.ServerCommand("vars.roundTimeLimit", "200");
	plugin.ConsoleWrite("Set 200% ticket count for next round (" + server.NextGamemode + ")");
} else if ((server.NextGamemode != "Chainlink0") && (server.GameModeCounter != 100)) {
	plugin.ServerCommand("vars.gameModeCounter", "100");
	plugin.ServerCommand("vars.roundTimeLimit", "100");
	plugin.ConsoleWrite("Set 100% ticket count for next round (" + server.NextGamemode + ")");
}

 

Link to comment
9 hours ago, maxdralle said:

i would do it with the plugin INSANE LIMITS. i am not sure how it is being handle with UMM and ATT plugin.


// Round End - Server Ticket Changer
// settings for insane limits:     limit_evaluation: OnRoundOver     ,    limit_first_check: Code

if ((server.NextGamemode == "Chainlink0") && (server.GameModeCounter != 200)) {
	plugin.ServerCommand("vars.gameModeCounter", "200");
	plugin.ServerCommand("vars.roundTimeLimit", "200");
	plugin.ConsoleWrite("Set 200% ticket count for next round (" + server.NextGamemode + ")");
} else if ((server.NextGamemode != "Chainlink0") && (server.GameModeCounter != 100)) {
	plugin.ServerCommand("vars.gameModeCounter", "100");
	plugin.ServerCommand("vars.roundTimeLimit", "100");
	plugin.ConsoleWrite("Set 100% ticket count for next round (" + server.NextGamemode + ")");
}

 

Thank you for the suggestion. I'll definitely try this out. I have Insane Limits installed but have never used it. It looks like i need to do some reading on how it works.   I'll report back on if your suggestion worked or not in case anyone else asks the same question.

 

Link to comment
9 hours ago, maxdralle said:

i would do it with the plugin INSANE LIMITS. i am not sure how it is being handle with UMM and ATT plugin.


// Round End - Server Ticket Changer
// settings for insane limits:     limit_evaluation: OnRoundOver     ,    limit_first_check: Code

if ((server.NextGamemode == "Chainlink0") && (server.GameModeCounter != 200)) {
	plugin.ServerCommand("vars.gameModeCounter", "200");
	plugin.ServerCommand("vars.roundTimeLimit", "200");
	plugin.ConsoleWrite("Set 200% ticket count for next round (" + server.NextGamemode + ")");
} else if ((server.NextGamemode != "Chainlink0") && (server.GameModeCounter != 100)) {
	plugin.ServerCommand("vars.gameModeCounter", "100");
	plugin.ServerCommand("vars.roundTimeLimit", "100");
	plugin.ConsoleWrite("Set 100% ticket count for next round (" + server.NextGamemode + ")");
}

 

With some much appreciated help from [E4GL] Hedius,  we got the script going in Insane Limits. It partially works.  The main server config has the default tickets for both CQ Large and Chain Link set at 125%, making Chain Link tickets 1250.  The Insane Limits is changing the Conquest LG rounds to 800 tickets, like it should. However it sets Chain Link at 1000, which is the default 100%.  

 

Edited by Hockster
Link to comment
21 minutes ago, Hockster said:

With some much appreciated help from [E4GL] Hedius,  we got the script going in Insane Limits. It partially works.  The main server config has the default tickets for both CQ Large and Chain Link set at 125%, making Chain Link tickets 1250.  The Insane Limits is changing the Conquest LG rounds to 800 tickets, like it should. However it sets Chain Link at 1000, which is the default 100%.  

 

I should also mention that this was tested on a server with one player and no official round going. 

Link to comment

I've tested the script on my test server. It changes the counter correctly. The problem is probably that his server is empty. Would just wait for a full round.

Shoutout to @maxdralle for the script :)

Need new plugin features? I can change: Adkats, AdKatsLRT, LanguageEnforcer, InsaneLimits, xVotemap for you. Also working on new plugins. Have an idea? Share it and I might include it in my repos. Github.com/hedius

 

Check out E4GLAdKats for an advancded and maintained AdKats version.

Link to comment
1 hour ago, Hedius said:

I've tested the script on my test server. It changes the counter correctly. The problem is probably that his server is empty. Would just wait for a full round.

Shoutout to @maxdralle for the script :)

He is correct. We needed to get official rounds going for it to kick in. We once did it works fine and changes between 2000 and 800 tickets as planned. Again, thank you very much for the help. Much appreciated!!

 

Link to comment
15 hours ago, Hockster said:

He is correct. We needed to get official rounds going for it to kick in. We once did it works fine and changes between 2000 and 800 tickets as planned. Again, thank you very much for the help. Much appreciated!!

 

@Hockster

pls ask questions here....

So to add conquest small: example:

// Round End - Server Ticket Changer
// settings for insane limits:     limit_evaluation: OnRoundOver     ,    limit_first_check: Code

if (server.NextGamemode == "Chainlink0") { // chainlink
	plugin.ServerCommand("vars.gameModeCounter", "200");
	plugin.ServerCommand("vars.roundTimeLimit", "200");
	plugin.ConsoleWrite("Set 200% ticket count for next round (" + server.NextGamemode + ")");
}
else if (server.NextGamemode == "ConquestSmall0") { // cq small
	plugin.ServerCommand("vars.gameModeCounter", "150");
	plugin.ServerCommand("vars.roundTimeLimit", "150");
	plugin.ConsoleWrite("Set 150% ticket count for next round (" + server.NextGamemode + ")");
}
else { // all other modes
	plugin.ServerCommand("vars.gameModeCounter", "100");
	plugin.ServerCommand("vars.roundTimeLimit", "100");
	plugin.ConsoleWrite("Set 100% ticket count for next round (" + server.NextGamemode + ")");
}

 

Edited by Hedius

Need new plugin features? I can change: Adkats, AdKatsLRT, LanguageEnforcer, InsaneLimits, xVotemap for you. Also working on new plugins. Have an idea? Share it and I might include it in my repos. Github.com/hedius

 

Check out E4GLAdKats for an advancded and maintained AdKats version.

Link to comment
2 minutes ago, Hedius said:

Script had a mistake. should work now

Chainlink: 200%

CQ small: 150%

all other modes: 100%

Thanks for the change and I think I'm starting to get a grasp on this stuff.  I don't have any background in coding. I'm actually in Sales for a living 🙂  I'll test this new script and will report back.

 

Link to comment
Just now, Hockster said:

Thanks for the change and I think I'm starting to get a grasp on this stuff.  I don't have any background in coding. I'm actually in Sales for a living 🙂  I'll test this new script and will report back.

 

No problem :) Just ask here if you need further help :) Happy to be able to help :)

Need new plugin features? I can change: Adkats, AdKatsLRT, LanguageEnforcer, InsaneLimits, xVotemap for you. Also working on new plugins. Have an idea? Share it and I might include it in my repos. Github.com/hedius

 

Check out E4GLAdKats for an advancded and maintained AdKats version.

Link to comment
Just now, Hedius said:

No problem :) Just ask here if you need further help :) Happy to be able to help :)

@Hockster edited the limit again. Made it easier to change. It will send settings now after each round, but that's totally fine.

Just add a game mode in a new else if condition if you want to have special settings for it.

Need new plugin features? I can change: Adkats, AdKatsLRT, LanguageEnforcer, InsaneLimits, xVotemap for you. Also working on new plugins. Have an idea? Share it and I might include it in my repos. Github.com/hedius

 

Check out E4GLAdKats for an advancded and maintained AdKats version.

Link to comment
1 hour ago, Hedius said:

@Hockster edited the limit again. Made it easier to change. It will send settings now after each round, but that's totally fine.

Just add a game mode in a new else if condition if you want to have special settings for it.

I just learned that if i uncheck the Insane Limits plugin and reboot the Procon Layer, I lose all my settings.  I reconfigured it but now the Limit #1 is saying Enabled/Not Compiled.  Where as yesterday it said it was Compiled.  Pretty sure I set it back to how it was yesterday. 

 

Update - False alarm. I messed up in the copy/paste of the code. It's back to saying Compiled. 

Edited by Hockster
Link to comment
On 8/4/2020 at 6:51 AM, Hedius said:

@Hockster

pls ask questions here....

So to add conquest small: example:


// Round End - Server Ticket Changer
// settings for insane limits:     limit_evaluation: OnRoundOver     ,    limit_first_check: Code

if (server.NextGamemode == "Chainlink0") { // chainlink
	plugin.ServerCommand("vars.gameModeCounter", "200");
	plugin.ServerCommand("vars.roundTimeLimit", "200");
	plugin.ConsoleWrite("Set 200% ticket count for next round (" + server.NextGamemode + ")");
}
else if (server.NextGamemode == "ConquestSmall0") { // cq small
	plugin.ServerCommand("vars.gameModeCounter", "150");
	plugin.ServerCommand("vars.roundTimeLimit", "150");
	plugin.ConsoleWrite("Set 150% ticket count for next round (" + server.NextGamemode + ")");
}
else { // all other modes
	plugin.ServerCommand("vars.gameModeCounter", "100");
	plugin.ServerCommand("vars.roundTimeLimit", "100");
	plugin.ConsoleWrite("Set 100% ticket count for next round (" + server.NextGamemode + ")");
}

 

I  made some changes to this script and added in changing the round time limit for Obliteration maps, currently defaulting to 20 minutes at 100% round time limit. I'd like to double the timel imit and came up with this change.  Not sure if I did this right?

// Round End - Server Ticket Changer

// settings for insane limits:     limit_evaluation: OnRoundOver     ,    limit_first_check: Code

 

if (server.NextGamemode == "Chainlink0") { // chainlink

       plugin.ServerCommand("vars.gameModeCounter", "200");

       plugin.ServerCommand("vars.roundTimeLimit", "140");

       plugin.ConsoleWrite("Set 200% ticket count for next round (" + server.NextGamemode + ")");

}

else if (server.NextGamemode == "ConquestSmall0") { // cq small

       plugin.ServerCommand("vars.gameModeCounter", "200");

       plugin.ServerCommand("vars.roundTimeLimit", "150");

       plugin.ConsoleWrite("Set 200% ticket count for next round (" + server.NextGamemode + ")");

}

else if (server.NextGamemode == "obliteration") { // obliteration

       plugin.ServerCommand("vars.gameModeCounter", "100");

       plugin.ServerCommand("vars.roundTimeLimit", "200");

       plugin.ConsoleWrite("Set 200% round time limit for next round (" + server.NextGamemode + ")");

}

else { // all other modes

       plugin.ServerCommand("vars.gameModeCounter", "100");

       plugin.ServerCommand("vars.roundTimeLimit", "100");

       plugin.ConsoleWrite("Set 100% ticket count for next round (" + server.NextGamemode + ")");

}

 

Link to comment
21 hours ago, Hockster said:

I  made some changes to this script and added in changing the round time limit for Obliteration maps, currently defaulting to 20 minutes at 100% round time limit. I'd like to double the timel imit and came up with this change.  Not sure if I did this right?

// Round End - Server Ticket Changer

// settings for insane limits:     limit_evaluation: OnRoundOver     ,    limit_first_check: Code

 

if (server.NextGamemode == "Chainlink0") { // chainlink

       plugin.ServerCommand("vars.gameModeCounter", "200");

       plugin.ServerCommand("vars.roundTimeLimit", "140");

       plugin.ConsoleWrite("Set 200% ticket count for next round (" + server.NextGamemode + ")");

}

else if (server.NextGamemode == "ConquestSmall0") { // cq small

       plugin.ServerCommand("vars.gameModeCounter", "200");

       plugin.ServerCommand("vars.roundTimeLimit", "150");

       plugin.ConsoleWrite("Set 200% ticket count for next round (" + server.NextGamemode + ")");

}

else if (server.NextGamemode == "obliteration") { // obliteration

       plugin.ServerCommand("vars.gameModeCounter", "100");

       plugin.ServerCommand("vars.roundTimeLimit", "200");

       plugin.ConsoleWrite("Set 200% round time limit for next round (" + server.NextGamemode + ")");

}

else { // all other modes

       plugin.ServerCommand("vars.gameModeCounter", "100");

       plugin.ServerCommand("vars.roundTimeLimit", "100");

       plugin.ConsoleWrite("Set 100% ticket count for next round (" + server.NextGamemode + ")");

}

 

The name of the mode is "Obliteration" not "obliteration" important. :)

Yeah setting the roundTime to 200% is correct. :)

 

Need new plugin features? I can change: Adkats, AdKatsLRT, LanguageEnforcer, InsaneLimits, xVotemap for you. Also working on new plugins. Have an idea? Share it and I might include it in my repos. Github.com/hedius

 

Check out E4GLAdKats for an advancded and maintained AdKats version.

Link to comment
  • 11 months later...

This plugin has an error.

I convert CQL to 1000 tickets
and want to set  TDM to 300 kills.

It will be applied, but you will have to restart each map one by one for it to work properly.

For example, if the map routine is CQL -> TDM -> CQL -> CQL -> TDM -> TDM

CQL 1000 tickets -> TDM 100 kills -> CQL 2400 tickets -> CQL 1000 tickets -> TDM 100 kills -> TDM 300 kills

This is how it gets messed up.

23321323.PNG

Default  1000 ~ 1000

TDM 300 ~ 300

GAME MODE COUNTER 125%

Edited by eros122
Link to comment
  • 2 months later...
On 8/4/2020 at 10:51 PM, Hedius said:

@Hockster

pls ask questions here....

So to add conquest small: example:

// Round End - Server Ticket Changer
// settings for insane limits:     limit_evaluation: OnRoundOver     ,    limit_first_check: Code

if (server.NextGamemode == "Chainlink0") { // chainlink
	plugin.ServerCommand("vars.gameModeCounter", "200");
	plugin.ServerCommand("vars.roundTimeLimit", "200");
	plugin.ConsoleWrite("Set 200% ticket count for next round (" + server.NextGamemode + ")");
}
else if (server.NextGamemode == "ConquestSmall0") { // cq small
	plugin.ServerCommand("vars.gameModeCounter", "150");
	plugin.ServerCommand("vars.roundTimeLimit", "150");
	plugin.ConsoleWrite("Set 150% ticket count for next round (" + server.NextGamemode + ")");
}
else { // all other modes
	plugin.ServerCommand("vars.gameModeCounter", "100");
	plugin.ServerCommand("vars.roundTimeLimit", "100");
	plugin.ConsoleWrite("Set 100% ticket count for next round (" + server.NextGamemode + ")");
}

 

// Round End - Server Ticket Changer
// settings for insane limits:     limit_evaluation: OnRoundOver     ,    limit_first_check: Code

if (server.NextGamemode == "Chainlink0") { // chainlink
    plugin.ServerCommand("vars.gameModeCounter", "200");
    plugin.ServerCommand("vars.roundTimeLimit", "100");
    plugin.ConsoleWrite("Set 200% ticket count for next round (" + server.NextGamemode + ")");
}
else if (server.NextGamemode == "ConquestLarge0") { // cq large
    plugin.ServerCommand("vars.gameModeCounter", "110");
    plugin.ServerCommand("vars.roundTimeLimit", "100");
    plugin.ConsoleWrite("Set 110% ticket count for next round (" + server.NextGamemode + ")");
}
else if (server.NextGamemode == "Rush0") { // rush
    plugin.ServerCommand("vars.gameModeCounter", "300");
    plugin.ServerCommand("vars.roundTimeLimit", "200");
    plugin.ConsoleWrite("Set 300% ticket count for next round (" + server.NextGamemode + ")");
}
else { // all other modes
    plugin.ServerCommand("vars.gameModeCounter", "400");
    plugin.ServerCommand("vars.roundTimeLimit", "200");
    plugin.ConsoleWrite("Set 100% ticket count for next round (" + server.NextGamemode + ")");
}

 

rush isnt apply now. is there any wrong things?

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




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