Jump to content

Admin Announcer & onSpawn Message (v1.3.6.0 -- 2015-03-31)


ImportBot

Recommended Posts

Originally Posted by Phil_K*:

 

Hi.

 

@Phil_K: With BF4 the kicks and bans are not announced. Joining admins are announced properly though.

Hmm... seems the PB messages have been changed again.

I'll take a look at it the next days.

 

Greets

Phil.

* Restored post. It could be that the author is no longer active.
Link to comment
  • Replies 258
  • Created
  • Last Reply

Top Posters In This Topic

Originally Posted by WarGasimXD*:

 

Since a few Days i have a Problem with this Plugin. Im the Admin and if i join it sont tell in Chat or Yell. Havent changed anything. Few days ago it workd. Any Ideas_!

Yelling does not work in BF4 yet
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Elvardo*:

 

My layer host is telling me I need the BF4 version for them to install this mod. All i need is the admin in message as it did in BF3. Is the link on the first page working with BF4?

 

Cheers

 

Elv

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

Originally Posted by EBassie*:

 

Hi.

 

Hmm... seems the PB messages have been changed again.

I'll take a look at it the next days.

 

Greets

Phil.

Just a reminder :ohmy:

 

PS: Just banned a player on EA_GUID and it got announced properly. Seems only kicks are not announced.

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

Originally Posted by kcuestag*:

 

Hello Phil,

 

Any update on when you think you'll have this ready for BF4?

 

This is an awesome plugin. :smile:

 

 

Edit:

 

Kicks work, but they appear as bans!

 

[19:56:17] Admin_Announcer > undecended89 was banned for: High ping (311)" [Admin Decision].

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

Originally Posted by EBassie*:

 

Hello Phil,

 

Any update on when you think you'll have this ready for BF4?

 

This is an awesome plugin. :smile:

 

 

Edit:

 

Kicks work, but they appear as bans!

 

[19:56:17] Admin_Announcer > undecended89 was banned for: High ping (311)" [Admin Decision].

The latency plugin does a PB Kick. A PB Kick is always a short time ban.

Hence it's showing the kick as a ban.

 

Standard is 5 minutes, if I'm correct. Could be two minutes. You can set that time in the PB config.

 

Kicks on EAGUID do not get announced properly with this plugin in BF4 currently.

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

Originally Posted by EBassie*:

 

@Phil_K,

 

I managed to fix the plugin for my own use for BF4.

It's a simple fix. In the code there are multiple checks for gametype == BF3.

 

As the kicks for BF4 are the same as BF3, editing these checks gave me the announce of the kicks back for BF4:

 

Change this part from line 1118

Code:

public virtual void OnPlayerKickedByAdmin(string soldierName, string reason) {
            if (this.m_strServerType == "bf3")
            {
                this.OnPlayerKicked(soldierName, reason);
            }
        }
To this:

 

Code:

public virtual void OnPlayerKickedByAdmin(string soldierName, string reason) {
            if (this.m_strServerType == "bf3" [b]|| this.m_strServerType == "bf4"[/b])
            {
                this.OnPlayerKicked(soldierName, reason);
            }
        }
But there are a couple of more instances of that check. So, I did change them all :ohmy:
* Restored post. It could be that the author is no longer active.
Link to comment
  • 2 weeks later...

Originally Posted by Ralphvd*:

 

Plugin works fine for now about month im using it!

 

 

One bug i think is sometimes when people are joining

 

[23:12:33] gamsizm has joined the server..

[23:12:23] Please stand by, 1 more player(s) are joining.

[23:12:34] gamsizm has joined the server..

[23:12:23] Please stand by, 2 more player(s) are joining.

[23:12:35] gamsizm has joined the server..

[23:12:36] Please stand by, 3 more player(s) are joining.

[23:12:37] gamsizm has joined the server..

[23:12:43] Please stand by, 4 more player(s) are joining.

 

Is this a known bug?

* Restored post. It could be that the author is no longer active.
Link to comment
  • 4 weeks later...
  • 2 weeks later...

Originally Posted by Moli87*:

 

Hi EBassie

 

Thanks for the update.

 

Can you maybe implement also an announcement for all players who join? Like Moli joined the game! and that it only checks if this player is in the admin list when yes it should output the admin announcement in the chat tab else it should announce the player announcement. :ohmy: like Rconnet have... That would be very great

 

Greez

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

Originally Posted by EBassie*:

 

Hi EBassie

 

Thanks for the update.

 

Can you maybe implement also an announcement for all players who join? Like Moli joined the game! and that it only checks if this player is in the admin list when yes it should output the admin announcement in the chat tab else it should announce the player announcement. :ohmy: like Rconnet have... That would be very great

 

Greez

Hey, I will not do that. Maybe Phil_K, the original author of this plugin, wants to do that.

 

But I think you can easily do this with ProconRulz or InsaneLimits.

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

Originally Posted by Moli87*:

 

Okay thanks. Yeah it would be nice when Phil_K would do that, because i dont use ProconRulz and InsaneLimits. It would be nice to have the announcement in the same plugin :ohmy:

 

Thanks EBassie, maybe will Phil_K do that. :ohmy: What you mean Phil_K? ^^

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

Originally Posted by OscarMike*:

 

I have had to disable this plugin ever since:

 

1.3.3.0 (2013-02-06)

- added announcing of VIPs based on reservedSlotsList / server based VIP list

 

There should be an option to turn off the player/admin join announcements coming from the gameserver's reservedslotslist.txt. We would rather just add the players and admins who get announced via the plugin's admin and VIP list. These 2 functions should be separate from each other, not combined.

 

Currently, if we were to activate this plugin in its current state, our admins and regular players who seed our servers in the mornings would cause spam in our in-game chat window (player join messages every 3 minutes from the re-connecting seeding admins/players)..

 

(our server seeding admins/players are not listed in the plugin's admin or VIP list.. but they get announced because of the gameserver's reservedslots.txt entry..)

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

Originally Posted by Phil_K*:

 

Hi.

 

Can you maybe implement also an announcement for all players who join? Like Moli joined the game! and that it only checks if this player is in the admin list when yes it should output the admin announcement in the chat tab else it should announce the player announcement. :ohmy: like Rconnet have... That would be very great

Well, that was already in with the playerSpotting but only for BF3/MoHW. :ohmy:

I've added a check for BF4 and you can now have players announced during pre-round or always.

It also does no double announcement, players who are admin or vip will not be "spotted".

 

I have had to disable this plugin ever since:

 

- added announcing of VIPs based on reservedSlotsList / server based VIP list

Tse... always those wishes... :ohmy:

With the actual version you can decide to turn of announcement based on the reservedSlotsList.

In that case you have to maintain the lists in the plugin.

 

Btw, the two functions aren't combined they are done independently.

This means a player can trigger a "Admin joined" and "Vip joined" message if he is admin (via list or privileges) and

is on the vip list or reservedSlotsList. This is because some like to have vips announced with name but want also

show that an admin has joined but without a name.

 

Greets

Phil.

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

Originally Posted by OscarMike*:

 

Well:

 

- All our admins have reserved slots and Procon accounts (privileges)

 

- I have admin announcement turned off in the plugin by default

 

- I have VIP announcement turned on (which announces all donators to the community)

 

My player name is not listed in the VIP list but it still announces my player name when I connect (VIP player xxxx joined the server) along with all other admins who aren't on the VIP list either.

 

I assume they are announced because the admins all have reserved slots. Otherwise the manual VIP player list name entries aren't correctly updated by the plugin. My name used to be on the VIP list but it was removed. In any case, bug or feature, it causes severe in-game chat spam with "VIP player xxx joined" especially during morning seeding hours.

 

We don't want admins to be announced as VIP players. Therefore I don't see how to configure the plugin to exclude all admins completely from being announced as VIP players. Hence why I have to disable the plugin :sad:

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

Originally Posted by Phil_K*:

 

We don't want admins to be announced as VIP players. Therefore I don't see how to configure the plugin to exclude all admins completely from being announced as VIP players. Hence why I have to disable the plugin :sad:

And this is based on which version?

Have you tried the latest where you can disabled the VIP announcement based on reservedSlotsList?

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

Originally Posted by OscarMike*:

 

And this is based on which version?

Have you tried the latest where you can disabled the VIP announcement based on reservedSlotsList?

Hmm will give it another shot, could be a problem with the plugin installation, will install it again.
* 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.