Jump to content

Ultimate Map Manager (1.2.5.0 - 03/26/15)


Prophet731

Recommended Posts

Originally Posted by Kal-El*:

 

This plugin worked great until Dragons teeth arrived.

 

I updated my BF4.Def file with the latest version and since then my plug in fails to show properly.

 

I have uninstalled and reinstalled several times but still no joy.

 

Has anyone else had this problem or knows how to fix?

 

My layer is hosted by Fragnet.

 

Screenshot 2014-07-18 12.48.01.png

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

Originally Posted by falcontx*:

 

This plugin worked great until Dragons teeth arrived.

 

I updated my BF4.Def file with the latest version and since then my plug in fails to show properly.

 

I have uninstalled and reinstalled several times but still no joy.

 

Has anyone else had this problem or knows how to fix?

 

My layer is hosted by Fragnet.

 

Screenshot 2014-07-18 12.48.01.png

The BF4.def file on your layer server is not up-to-date. Be sure you upload it, double check it's correct, then restart the layer server.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Kal-El*:

 

The BF4.def file on your layer server is not up-to-date. Be sure you upload it, double check it's correct, then restart the layer server.

Did that already, I ran the update and uploaded my def file I also downloaded the latest one from here page1/index.html*

 

The versions of my def file both layer and local are labeled 2014-07-15.01

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

Originally Posted by Jamesonp*:

 

Most likely a screwed up UMM config file. We had the same problem and had to revert to a backup. You could try backing up your current one, shutting down the Procon Layer, deleting the config on the server, and then restarting it to re-create it. See if this fixes the issue.

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

Originally Posted by Kal-El*:

 

Most likely a screwed up UMM config file. We had the same problem and had to revert to a backup. You could try backing up your current one, shutting down the Procon Layer, deleting the config on the server, and then restarting it to re-create it. See if this fixes the issue.

PERFECT Thank you very much for the help :smile:
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Sabn0ck*:

 

Hi,

I've been trying to get the custom presets set up to run different tickets on different modes since Adaptive Ticket Count hasn't been updated.

I'm trying to use vars.gamemodecounter 125 for CQ and cars.gamemodecounter 300 for chain link.

The problem I'm having is that when the server goes from Conquest to Chain Link, the vars.gamemodecounter 125 is loaded for the Chain Link map. If the next map is Chain Link, then it load 300% like it should. Same visa versa going from Chain Link to CQ, whatever the previous gamemodecounter was is loaded. Any idea's how to fix this?

 

Add: It's as if the vars isn't being sent fast enough, maybe.

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

Originally Posted by Jamesonp*:

 

Hi,

I've been trying to get the custom presets set up to run different tickets on different modes since Adaptive Ticket Count hasn't been updated.

I'm trying to use vars.gamemodecounter 125 for CQ and cars.gamemodecounter 300 for chain link.

The problem I'm having is that when the server goes from Conquest to Chain Link, the vars.gamemodecounter 125 is loaded for the Chain Link map. If the next map is Chain Link, then it load 300% like it should. Same visa versa going from Chain Link to CQ, whatever the previous gamemodecounter was is loaded. Any idea's how to fix this?

 

Add: It's as if the vars isn't being sent fast enough, maybe.

Try setting "Send Preset commands after every round_" to Yes.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Sabn0ck*:

 

Try setting "Send Preset commands after every round_" to Yes.

Wouldn't that just send the same vars that's already been sent?

Either way I'll try it. Thanks for suggestion

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

Originally Posted by guapoloko*:

 

I'm trying to configure the following without success:

 

Code:

Metro CQL

Preset 01:

 # Custom Preset: Normal 1
vars.preset normal
vars.gameModeCounter 250

Metro Dominação

Preset 02:
# Custom Preset: Normal 2
vars.preset normal
vars.gameModeCounter 333

Metro Rush

Preset 03:
# Custom Preset: Normal 3
vars.preset normal
vars.gameModeCounter 150


Metro CTF

Preset 04:
# Custom Preset: Normal 4
vars.preset normal
vars.gameModeCounter 285
But the number of tickets goes crazy on the server, for example CQL with 250 tickets should stay with 2000 and 2630 gets.

 

Can someone help me?

 

I can not get the tickets become correct. when the mode change and airplane tickets go crazy. I'm trying to make a metro server with multiple modes, CQL 250 tickets, 333 tickets domination, rush tickets and ctf 150 with 285 tickets. But it is not correct for tickets at the server. Do you know something that might help?

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

Originally Posted by falcontx*:

 

I'm trying to configure the following without success:

 

Code:

Metro CQL

Preset 01:

 # Custom Preset: Normal 1
vars.preset normal
vars.gameModeCounter 250

Metro Dominação

Preset 02:
# Custom Preset: Normal 2
vars.preset normal
vars.gameModeCounter 333

Metro Rush

Preset 03:
# Custom Preset: Normal 3
vars.preset normal
vars.gameModeCounter 150


Metro CTF

Preset 04:
# Custom Preset: Normal 4
vars.preset normal
vars.gameModeCounter 285
But the number of tickets goes crazy on the server, for example CQL with 250 tickets should stay with 2000 and 2630 gets.

 

Can someone help me?

 

I can not get the tickets become correct. when the mode change and airplane tickets go crazy. I'm trying to make a metro server with multiple modes, CQL 250 tickets, 333 tickets domination, rush tickets and ctf 150 with 285 tickets. But it is not correct for tickets at the server. Do you know something that might help?

You need to examine the console log to see what response the server is giving to the commands that the plugin is issuing. The commands may just need to be sent sooner. UMM waits 50 seconds after the round ends to evaluate the number of players and set the presets. If you want to change this, just change the "50" on line 1721 of CUltimateMapManager.inc to whatever you want. Choosing a lower number would send the command sooner, which might solve the problem.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by guapoloko*:

 

You need to examine the console log to see what response the server is giving to the commands that the plugin is issuing. The commands may just need to be sent sooner. UMM waits 50 seconds after the round ends to evaluate the number of players and set the presets. If you want to change this, just change the "50" on line 1721 of CUltimateMapManager.inc to whatever you want. Choosing a lower number would send the command sooner, which might solve the problem.

I wonder if the setting is correct. Please, if you can look at the images below:

 

 

teste 001.png

 

 

teste 002.png

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

Originally Posted by MrMGM*:

 

EA/Dice really messed up the ticket counts for 100% in Carrier Assault and the new Chain Link mode, If you could add those it would be great! Trying to run Conquest Large mixed with Chain Link is near impossible at the moment.

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

Originally Posted by falcontx*:

 

EA/Dice really messed up the ticket counts for 100% in Carrier Assault and the new Chain Link mode, If you could add those it would be great! Trying to run Conquest Large mixed with Chain Link is near impossible at the moment.

They are fully supported in this plugin.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by DaemonPix*:

 

Falcontx, I sent a donation via PayPal. Could you please share the Ulimate Map Manager plugin with me. I was hoping to setup a customized Gun Master server with different gun presets.

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

Originally Posted by DeeVeeOss*:

 

I'm going crazy on this one and I hope someone could help?

 

Since Dragon's Teeth, our UMM does not show the expansion maps.

 

We have updated Procon and manually updated the recommended BF4.def file from late July.

 

We have tried deleting the UMM.cfg and restarting the server.

 

Nothing. The maps don't show.

 

Is there anyone who had this problem and knows of a solution?

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

Originally Posted by tarreltje*:

 

I'm going crazy on this one and I hope someone could help?

 

Since Dragon's Teeth, our UMM does not show the expansion maps.

 

We have updated Procon and manually updated the recommended BF4.def file from late July.

 

We have tried deleting the UMM.cfg and restarting the server.

 

Nothing. The maps don't show.

 

Is there anyone who had this problem and knows of a solution?

You updated your layer, or your local procon?
* Restored post. It could be that the author is no longer active.
Link to comment
  • 3 weeks later...

Originally Posted by eddtheduck*:

 

falcon . is there a way to send the settings over twice ? at the moment i have got it to send 1 sec after map end, is there a way to send the settings over 10 seconds later as well ?

i have found that if i let umm send settings then i click on apply a few seconds later the server accepts the change and works correctly.

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

Originally Posted by falcontx*:

 

falcon . is there a way to send the settings over twice ? at the moment i have got it to send 1 sec after map end, is there a way to send the settings over 10 seconds later as well ?

i have found that if i let umm send settings then i click on apply a few seconds later the server accepts the change and works correctly.

Try making a copy of the line you edited and change the 1 to 10. It should then send the settings twice, once after 1 second and once after 10.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by eddtheduck*:

 

Try making a copy of the line you edited and change the 1 to 10. It should then send the settings twice, once after 1 second and once after 10.

tried it . thats not working. or i'v done it wrong. could you send over a inc file or a txt file. showing how it should look

 

if you can get the settings to send 2 times . it should sort the problem out !!

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

Originally Posted by falcontx*:

 

tried it . thats not working. or i'v done it wrong. could you send over a inc file or a txt file. showing how it should look

 

if you can get the settings to send 2 times . it should sort the problem out !!

Yeah. now that I've looked at the code, that wouldn't work. Try adding this on the next line (1722):

Code:

this.ExecuteCommand("procon.protected.tasks.add", "CUltimateMapManager", "11", "1", "1", "procon.protected.plugins.call", "CUltimateMapManager", "CheckPreset");
And, on line 1811, change "private" to "public".

 

Then, it should work, as long as you have "Send preset commands after every round_" set to "Yes".

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

Originally Posted by eddtheduck*:

 

Yeah. now that I've looked at the code, that wouldn't work. Try adding this on the next line (1722):

Code:

this.ExecuteCommand("procon.protected.tasks.add", "CUltimateMapManager", "11", "1", "1", "procon.protected.plugins.call", "CUltimateMapManager", "CheckPreset");
And, on line 1811, change "private" to "public".

 

Then, it should work, as long as you have "Send preset commands after every round_" set to "Yes".

Yarp that works. it sends the commands trice. ill report back and let you know if it works.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by avengedthedead*:

 

Hello Falcontx,

 

Good day to you.

 

I noticed that now the ultimate map manager plugin is lagging. This happens when i try to modify my map list.

For example when i want to remove a map/add maps/edit preset and etc, it took 1 to 5mins to take effect.

 

Any advice for this?

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

Originally Posted by falcontx*:

 

Hello Falcontx,

 

Good day to you.

 

I noticed that now the ultimate map manager plugin is lagging. This happens when i try to modify my map list.

For example when i want to remove a map/add maps/edit preset and etc, it took 1 to 5mins to take effect.

 

Any advice for this?

No idea. Do you have an excessively large number of map lists? Or something else that may be causing PRoCon to run slowly?
* Restored post. It could be that the author is no longer active.
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.