Jump to content

[BF4] ProconRulz - End of Round stats v1.0


ImportBot

Recommended Posts

Originally Posted by tarreltje*:

 

END OF ROUND STATS V1.0

 

This set of rules will show some stats on end round, like we had in BC2

 

- Make sure your have the latest version of Proconrulz

- Make sure your BF4.def is updated

 

Example:

 

- First Blood: Tarreltje, Most Knives: Tarreltje 20

- Last Blood: Tarreltje, Most Kills: Tarreltje 1000

- Most Deaths: Notme^^ 2500

 

 

 

###### End of round stats v1.0 by tarreltje #####

 

## Below different stats to count

 

# Most Deaths

On Spawn;Not Playerfirst;Incr %playerdead%

On Spawn;If %playerdead% > %server_dead%;Set %server_dead% %playerdead%;Set %server_deadplayer% %p%

 

# Most kills

On Kill;Incr %playerkills%

On Kill;If %playerkills% > %server_mostkills%;Set %server_mostkills% %playerkills%;Set %server_mostkillsplayer% %p%

 

# Firstblood

On kill;ServerFirst;Set %server_firstblood% %p%;Set %server_firstbloodtarget% %v%

 

# Lastblood

On Kill;Set %server_lastbloodplayer% %p%;Set %server_lastbloodtarget% %v%;

 

# Most knives

On kill;Damage Melee;Incr %playerknives%

On Kill;Damage Melee;If %playerknives% > %server_knives%;Set %server_knives% %playerknives%;Set %server_knivesplayer% %p%

 

# END ROUND MESSAGE

On RoundOver;

Say -

Say -

Say - First Blood: %server_firstblood%, Most Knives: %server_knivesplayer% %server_knives%

Say - Last Blood: %server_lastbloodplayer%, Most Kills: %server_mostkillsplayer% %server_mostkills%

Say - Most Deaths: %server_deadplayer% %server_dead%

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

Originally Posted by killy1976*:

 

This is a great job! congratulations!!! i can change Say whith Yell_?

EXAMPLE: # OUTPUT MESSAGE

On Kill;If %server_msg_now% == 1

If %server_m_kills_player% != 0;Yell -= Most KILLS >>> %server_m_kills_player% >>> %server_m_kills[%server_m_kills_player%]% kills

If %server_m_head_player% != 0;Yell -= Most HEADSHOTS >>> %server_m_head_player% >>> %server_m_head[%server_m_head_player%]% kills

If %server_m_knife_player% != 0;Yell -= Most KNIFES %server_m_knife_player% >>> %server_m_knife[%server_m_knife_player%]% kills

Set %server_msg_now% 0

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

Originally Posted by ty_ger07*:

 

This is a great job! congratulations!!! i can change Say whith Yell_?

EXAMPLE: # OUTPUT MESSAGE

On Kill;If %server_msg_now% == 1

If %server_m_kills_player% != 0;Yell -= Most KILLS >>> %server_m_kills_player% >>> %server_m_kills[%server_m_kills_player%]% kills

If %server_m_head_player% != 0;Yell -= Most HEADSHOTS >>> %server_m_head_player% >>> %server_m_head[%server_m_head_player%]% kills

If %server_m_knife_player% != 0;Yell -= Most KNIFES %server_m_knife_player% >>> %server_m_knife[%server_m_knife_player%]% kills

Set %server_msg_now% 0

Problem with Yell is that you can see only one message at a time, so you will only see the "Most KNIFES" message since it will be displayed on top of the the "Most KILLS" and "Most HEADSHOTS" messages.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by tarreltje*:

 

i can change Say whith PlayerYell ? (thanks for your attention)

Like ty_ger said Yell or Player will do the samething so you will only see the most knifes!
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by killy1976*:

 

player Yell Most kills. I use this "Most Wanted by ty_ger07" but the statistics are not accurate ever. Example: if the player whith most killings has 85 kills, the Yell announced 90

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

Originally Posted by ty_ger07*:

 

I use this "Most Wanted by ty_ger07" but the statistics are not accurate ever. Example: if the player whith most killings has 85 kills, the Yell announced 90

I would prefer if you posted your issues in the thread.

www.phogue.net/forumvb/showth...ayer-Announcer*

 

The accuracy of this code should be exactly the same since the number of kills is calculated in the same manner. If my code counts kills inaccurately, then this code must as well.

 

 

 

Which player do you want to do the PlayerYell to?

player Yell Most kills.

His question wasn't a real question. He was making a point. If you are using PlayerYell, only the player you are yelling to will see the message.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by killy1976*:

 

I would prefer if you posted your issues in the thread.

www.phogue.net/forumvb/showth...ayer-Announcer*

 

ok sorry ty_ger i posted my problem in this tread now thk

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

Originally Posted by ty_ger07*:

 

I have another question: i can have only stats MOST HEADSHOT whith Yell message?

All the messages are displayed one after the other. Since Yell only can display one message at a time, the last message in the list will be the one displayed and the others right before it will be covered up.
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by killy1976*:

 

you have not understood for my little english (sorry)

 

this is example for server 500ticket, only most headshot, whith Yell message:

 

# End of Round stats by BamBam and Tarreltje

On Spawn;ServerFirst;Set %server_msg_threshold% 500;Set %server_message_now% 0;log server_msg_threshold == 500

 

# KILLS TO TRACK FOR STATS

On Kill;

Headshot;Incr %m_head%

 

# COUNTING KILLS

On Kill;

If %m_head% > %server_head%;Set %server_head% %m_head%;Set %server_m_head_player% %p%;Log Most Headshots %server_m_head_player% %m_head%

 

# TRIGGER INFO FOR OUTPUT STATS

On Kill;If %team_score%

On Kill;If %server_msg_now% == 1;

If %team_score% > 0;Set %server_msg_threshold% 0

If %team_score% > 100;Set %server_msg_threshold% 100

If %team_score% > 150;Set %server_msg_threshold% 150

If %team_score% > 200;Set %server_msg_threshold% 200

If %team_score% > 250;Set %server_msg_threshold% 250

If %team_score% > 300;Set %server_msg_threshold% 300

If %team_score% > 350;Set %server_msg_threshold% 350

If %team_score% > 400;Set %server_msg_threshold% 400

If %team_score% > 450;Set %server_msg_threshold% 450

If %team_score% > 500;Set %server_msg_threshold% 500

 

# OUTPUT MESSAGE

On Kill;If %server_msg_now% == 1

If %server_m_head_player% != 0;Yell -= Most HEADSHOTS >>> %server_m_head_player% >>> %server_m_head[%server_m_head_player%]% kills

 

this is correct?

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

Originally Posted by Tomgun*:

 

I changed it to yell also, problem is it rattles through them real fast, I changed the timer to 8 seconds on the main prog but still no different

 

##### SERVER STATS by Tarreltje #####

On Kill;Incr %ini_kills_kills[%p%]%

On Kill;Weapon Weapons/Knife/Knife,Melee;Incr %ini_knives_knives[%p%]%

 

On Kill;

If %ini_kills_kills[%p%]% > %ini_server_killsfirst%;Set %ini_server_killsfirst% %ini_kills_kills[%p%]%;Set %ini_server_playerfirst% %p%

If %ini_kills_kills[%p%]% %ini_server_killssecond%;Set %ini_server_killssecond% %ini_kills_kills[%p%]%;Set %ini_server_playersecond% %p%

If %ini_kills_kills[%p%]% %ini_server_killsthird%;Set %ini_server_killsthird% %ini_kills_kills[%p%]%;Set %ini_server_playerthird% %p%

If %ini_kills_kills[%p%]% %ini_server_killsfourth%;Set %ini_server_killsfourth% %ini_kills_kills[%p%]%;Set %ini_server_playerfourth% %p%

If %ini_knives_knives[%p%]% > %ini_server_mostknives%;Set %ini_server_mostknives% %ini_knives_knives[%p%]%;Set %ini_server_mostknivesplayer% %p%

 

if %ini_server_playersecond% == %ini_server_playerfirst%;Set %ini_server_playersecond% %ini_server_playerthird%;Set %ini_server_killssecond% %ini_server_killsthird%

if %ini_server_playerthird% == %ini_server_playersecond%;Set %ini_server_playerthird% %ini_server_playerfourth%;Set %ini_server_killsthird% %ini_server_killsfourth%

 

# TRIGGER FOR SHOWING SERVERS BEST 3 PLAYERS

On Kill;ServerFirst;

Yell - LAST ROUND TOP 4 KILLERS!!!!

Yell - 1st %ini_server_playerfirst% with %ini_server_killsfirst% kills, YOUR A KILLING MACHINE!!

Yell - 2nd %ini_server_playersecond% just behind with %ini_server_killssecond% kills, WELL DONE!!

Yell - 3th %ini_server_playerthird% and finally with %ini_server_killsthird% kills

Yell - LEATHAL NINJA = %ini_server_mostknivesplayer% with %ini_server_mostknives% knives kills!!

how do I tell it to show the message for say 5 seconds?
* Restored post. It could be that the author is no longer active.
Link to comment
  • 4 weeks later...

Originally Posted by Itz_cujo666*:

 

Hi,

 

Came to this thread from this one*.

 

Is it possible to modify this rule to announce the top killer/headshot/knife from the last round, at the beginning of the next round?

 

I have just started looking at Procon Rulz, and discovered we had v 38, so have updated to v 43.

 

Any advice how to carry over to next round, then say would be appreciated... :smile:

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

Originally Posted by Itz_cujo666*:

 

Hoi, bedankt tarreltje. Reading through the plug in notes, it looks like you only need MySQL access for the Server Kills Report, and Round Stats might work without a DB. Will give it a try. Cheers!

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

Originally Posted by tarreltje*:

 

The rules below, if set the trigger on 20 tickets left. So if one of the teams has 20 tickets left it will show the end of round stats. So this is just before the rounds ends

 

# End of Round stats by BamBam and Tarreltje

On Spawn;ServerFirst;Set %server_msg_threshold% 20;Set %server_message_now% 0

 

# KILLS TO TRACK FOR STATS

On Kill;

Incr %m_kills%

Headshot;Incr %m_head%

Weapon Weapons/Knife/Knife,Melee;Incr %m_knife%

 

# COUNTING KILLS

On Kill;

If %m_kills% > %server_kills%;Set %server_kills% %m_kills%;Set %server_m_kills_player% %p%;Log Most kills %server_m_kills_player% %m_kills%

If %m_head% > %server_head%;Set %server_head% %m_head%;Set %server_m_head_player% %p%;Log Most Headshots %server_m_head_player% %m_head%

If %m_knife% > %server_knife%;Set %server_knife% %m_knife%;Set %server_m_knife_player% %p%;Log Most knife %server_m_knife_player% %m_knife%

 

# TRIGGER INFO FOR OUTPUT STATS

On Kill;If %team_score%

 

# OUTPUT MESSAGE

On Kill;If %server_msg_now% == 1;

If %server_m_kills_player% != 0;Say -= Most KILLS >>> %server_m_kills_player% >>> %server_m_kills[%server_m_kills_player%]% kills

If %server_m_head_player% != 0;Say -= Most HEADSHOTS >>> %server_m_head_player% >>> %server_m_head[%server_m_head_player%]% kills

If %server_m_knife_player% != 0;Say -= Most KNIFES %server_m_knife_player% >>> %server_m_knife[%server_m_knife_player%]% kills

Set %server_msg_now% 0

If it doesnt work let me know!
* Restored post. It could be that the author is no longer active.
Link to comment
  • 3 months later...
  • 4 weeks later...

Originally Posted by Elvardo*:

 

The rules below, if set the trigger on 20 tickets left. So if one of the teams has 20 tickets left it will show the end of round stats. So this is just before the rounds ends

 

 

 

If it doesn't work let me know!

I'm running 16 player SQDM only. When i use this rule it spams chat every few seconds not at the end of the round. Am i doing something wrong?
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by tarreltje*:

 

I'm running 16 player SQDM only. When i use this rule it spams chat every few seconds not at the end of the round. Am i doing something wrong?

The one you are using now is for Conquest!!

 

Use this one ---> showthread....-TDM-SQDM-ONLY*

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

Originally Posted by C-4-N*:

 

Hi , since on roundover, you have to update that my dear !)

 

i did a basic one , and working :smile:

i will probably get pistol kills with

 

 

on init;set %ini_round% 0

on spawn;serverfirst;set %ini_round% 0

 

On Kill;

Weapon Death;incr %ini_round_vehicle_%p%%

Weapon melee;incr %ini_round_melee_%p%%

Damage SniperRifle,dmr;Headshot;incr %ini_round_sniperhs_%p%%

Not Damage SniperRifle,dmr;Not weapon Death;Headshot;incr %ini_round_killhs_%p%%

 

On Kill;

if %ini_round_vehicle_%p%% > %ini_round_bestvehicle%;set %ini_round_bestvehicle% %ini_round_vehicle_%p%%;set %ini_round_bestvehicleplayer% %p%

if %ini_round_melee_%p%% > %ini_round_bestmelee%;set %ini_round_bestmelee% %ini_round_melee_%p%%;set %ini_round_bestmeleeplayer% %p%

if %ini_round_sniperhs_%p%% > %ini_round_bestsniperhs%;set %ini_round_bestsniperhs% %ini_round_sniperhs_%p%%;set %ini_round_bestsniperhsplayer% %p%

if %ini_round_killhs_%p%% > %ini_round_bestkillhs%;set %ini_round_bestkillhs% %ini_round_killhs_%p%%;set %ini_round_bestkillhsplayer% %p%

 

On RoundOver

say === Best Round Stats ===

say Vehicle = %ini_round_bestvehicleplayer% ::: %ini_round_bestvehicle% kills !

say Knife = %ini_round_bestmeleeplayer% ::: %ini_round_bestmelee% kills !

say HeadsShots (sniper) = %ini_round_bestsniperhsplayer% ::: %ini_round_bestsniperhs% Headshots !

say HeadShots (others) = %ini_round_bestkillhsplayer% ::: %ini_round_bestkillhs% Headshots !

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

Originally Posted by tarreltje*:

 

Hi , since on roundover, you have to update that my dear !)

 

i did a basic one , and working :smile:

i will probably get pistol kills with

 

 

on init;set %ini_round% 0

on spawn;serverfirst;set %ini_round% 0

 

On Kill;

Weapon Death;incr %ini_round_vehicle_%p%%

Weapon melee;incr %ini_round_melee_%p%%

Damage SniperRifle,dmr;Headshot;incr %ini_round_sniperhs_%p%%

Not Damage SniperRifle,dmr;Not weapon Death;Headshot;incr %ini_round_killhs_%p%%

 

On Kill;

if %ini_round_vehicle_%p%% > %ini_round_bestvehicle%;set %ini_round_bestvehicle% %ini_round_vehicle_%p%%;set %ini_round_bestvehicleplayer% %p%

if %ini_round_melee_%p%% > %ini_round_bestmelee%;set %ini_round_bestmelee% %ini_round_melee_%p%%;set %ini_round_bestmeleeplayer% %p%

if %ini_round_sniperhs_%p%% > %ini_round_bestsniperhs%;set %ini_round_bestsniperhs% %ini_round_sniperhs_%p%%;set %ini_round_bestsniperhsplayer% %p%

if %ini_round_killhs_%p%% > %ini_round_bestkillhs%;set %ini_round_bestkillhs% %ini_round_killhs_%p%%;set %ini_round_bestkillhsplayer% %p%

 

On RoundOver

say === Best Round Stats ===

say Vehicle = %ini_round_bestvehicleplayer% ::: %ini_round_bestvehicle% kills !

say Knife = %ini_round_bestmeleeplayer% ::: %ini_round_bestmelee% kills !

say HeadsShots (sniper) = %ini_round_bestsniperhsplayer% ::: %ini_round_bestsniperhs% Headshots !

say HeadShots (others) = %ini_round_bestkillhsplayer% ::: %ini_round_bestkillhs% Headshots !

Haha nice rules!! I already was testing my newest set of rules on my server, ive updated the the rulz
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by MarcoV1980*:

 

Hi , since on roundover, you have to update that my dear !)

 

i did a basic one , and working :smile:

i will probably get pistol kills with

 

 

on init;set %ini_round% 0

on spawn;serverfirst;set %ini_round% 0

 

On Kill;

Weapon Death;incr %ini_round_vehicle_%p%%

Weapon melee;incr %ini_round_melee_%p%%

Damage SniperRifle,dmr;Headshot;incr %ini_round_sniperhs_%p%%

Not Damage SniperRifle,dmr;Not weapon Death;Headshot;incr %ini_round_killhs_%p%%

 

On Kill;

if %ini_round_vehicle_%p%% > %ini_round_bestvehicle%;set %ini_round_bestvehicle% %ini_round_vehicle_%p%%;set %ini_round_bestvehicleplayer% %p%

if %ini_round_melee_%p%% > %ini_round_bestmelee%;set %ini_round_bestmelee% %ini_round_melee_%p%%;set %ini_round_bestmeleeplayer% %p%

if %ini_round_sniperhs_%p%% > %ini_round_bestsniperhs%;set %ini_round_bestsniperhs% %ini_round_sniperhs_%p%%;set %ini_round_bestsniperhsplayer% %p%

if %ini_round_killhs_%p%% > %ini_round_bestkillhs%;set %ini_round_bestkillhs% %ini_round_killhs_%p%%;set %ini_round_bestkillhsplayer% %p%

 

On RoundOver

say === Best Round Stats ===

say Vehicle = %ini_round_bestvehicleplayer% ::: %ini_round_bestvehicle% kills !

say Knife = %ini_round_bestmeleeplayer% ::: %ini_round_bestmelee% kills !

say HeadsShots (sniper) = %ini_round_bestsniperhsplayer% ::: %ini_round_bestsniperhs% Headshots !

say HeadShots (others) = %ini_round_bestkillhsplayer% ::: %ini_round_bestkillhs% Headshots !

Hey,

 

thanks for the rules! Unfortunately they don't work for me.

 

[16:06:48] === Best Round Stats ===

[16:06:48] Vehicle = 0 ::: 0 kills !

[16:06:48] Knife = 0 ::: 0 kills !

[16:06:48] HeadsShots (sniper) = 0 ::: 0 Headshots !

[16:06:48] HeadShots (others) = 0 ::: 0 Headshots !

 

 

The only thing i am getting, seems the stats aren't counted properly, but i have a knife count rule, which does function.

Any idea what i might be missing?

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

Originally Posted by tarreltje*:

 

Hey,

 

thanks for the rules! Unfortunately they don't work for me.

 

[16:06:48] === Best Round Stats ===

[16:06:48] Vehicle = 0 ::: 0 kills !

[16:06:48] Knife = 0 ::: 0 kills !

[16:06:48] HeadsShots (sniper) = 0 ::: 0 Headshots !

[16:06:48] HeadShots (others) = 0 ::: 0 Headshots !

 

 

The only thing i am getting, seems the stats aren't counted properly, but i have a knife count rule, which does function.

Any idea what i might be missing?

look at the first page first post, i have updated my rulz for bf4!!!!!!!!!!!!!!!!!!!!
* 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.