Jump to content

ProconRulz V44j1 - weapon limits and other event-triggered admin actions


ColColonCleaner

Recommended Posts

Originally Posted by kot163*:

 

Hi!

Ok im find code kill sniperlimit 2 on spawn kit, but I want the player to receive a message in the center of the screen (Yell)

 

Code:

On Spawn;Kit Recon 2;PlayerSay >>%p%<< 2 SNIPER MAX;Kill
On Kill;Not Kit Recon;Kit Recon 2;PlayerSay >>%p%<< no sniper rifle pickup;Kill
I tried to use PlayerYell and it does not work. Help.

 

BFBC2

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

Originally Posted by ty_ger07*:

 

Hi!

Ok im find code kill sniperlimit 2 on spawn kit, but I want the player to receive a message in the center of the screen (Yell)

 

Code:

On Spawn;Kit Recon 2;PlayerSay >>%p%<< 2 SNIPER MAX;Kill
On Kill;Not Kit Recon;Kit Recon 2;PlayerSay >>%p%<< no sniper rifle pickup;Kill
I tried to use PlayerYell and it does not work. Help.

 

BFBC2

I bet you player yell does work. In Proconrulz plugin settings, change the yell duration setting from the default '2' to '2000'.

 

BF3 and BF4 specify yell duration in seconds. In BFBC2, the yell duration is specified in milliseconds. At the moment, it is probably displaying for 2 milliseconds and that is why you don't see it.

 

Or, alternatively, if you are specifying the yell duration in your rules, make sure you specify it in milliseconds for BFBC2.

Example:

Code:

On Spawn;Kit Recon 2;PlayerYell 2000 >>%p%<< 2 SNIPER MAX;Kill
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by kot163*:

 

I bet you player yell does work. In Proconrulz plugin settings, change the yell duration setting from the default '2' to '2000'.

 

BF3 and BF4 specify yell duration in seconds. In BFBC2, the yell duration is specified in milliseconds. At the moment, it is probably displaying for 2 milliseconds and that is why you don't see it.

 

Or, alternatively, if you are specifying the yell duration in your rules, make sure you specify it in milliseconds for BFBC2.

Example:

Code:

On Spawn;Kit Recon 2;PlayerYell 2000 >>%p%<< 2 SNIPER MAX;Kill
thank you! All work fine! :ohmy:
* Restored post. It could be that the author is no longer active.
Link to comment
  • 1 month later...

Originally Posted by spatieman*:

 

Could use some help here.

 

Made for my bf4 server a server description rotator.

The idea is, that on each serverfirst spawn the description changes for the round.

 

Code:

if %lock_des% = 0;serverfirst;on spawn;incr %ini_serverdescription_current%;say %ini_serverdescription_current%;set %lock_des% 1
if %ini_serverdescription_current% >= 8;set %ini_serverdescription_current% 2;adminsay reseting loop
if %ini_serverdescription_current% == 1;exec vars.serverDescription "Welcome to Private Infidels * Happy Hours *";say * Happy Hours * is active
if %ini_serverdescription_current% == 2;exec vars.serverDescription "Welcome to Private Infidels * We have cookies *";say We have cookies * is active
if %ini_serverdescription_current% == 3;exec vars.serverDescription "Welcome to Private Infidels * Happy Teabagging *";say * Happy Teabagging * is active
if %ini_serverdescription_current% == 4;exec vars.serverDescription "Welcome to Private Infidels * Today's topic: none.....*";say * Today's topic: none.....* is active
if %ini_serverdescription_current% == 5;exec vars.serverDescription "Welcome to Private Infidels * dont you have a life _ *";say * dont you have a life _ * is active
if %ini_serverdescription_current% == 6;exec vars.serverDescription "Welcome to Private Infidels * teabagging allowed here*";say * teabagging allowed here* is active
if %ini_serverdescription_current% == 7;exec vars.serverDescription "Welcome to Private Infidels * Dark cookie u are_ *";say * Dark cookie u are_ * is active
and yes, it looks weard with the %lock_des% but if i dont do it, the wont work properly.

i can see in the config file the number increasing

but for some reason the description is not changing

if i remove the exec commandline, so that only the announcement is show, it even wont show that.

made tons on wicked scripts, but this is bugging me.

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

Originally Posted by maxdralle*:

 

irstly: i like that teabagging is allowed on your server;)

secondly: when you change the server description then you see the new descripton on next round. real time change is not possible. i suggest to use the trigger ON ROUNDOVER instead of ON SPAWN.

your script is a littlebit mixed. all scripts for proconrulz need a fix syntax. first you need a TRIGGER; then a optional CONDITION; then the ACTION stuff. in short: TRIGGER; CONDIDTION; ACTION

you script will work in this way:

On RoundOver; 
    Incr %ini_serverdescription_current%; If %ini_serverdescription_current% > 7; Set %ini_serverdescription_current% 1;
    if %ini_serverdescription_current% == 1;exec vars.serverDescription "Welcome to Private Infidels * Happy Hours *";say * Happy Hours * is active
    if %ini_serverdescription_current% == 2;exec vars.serverDescription "Welcome to Private Infidels * We have cookies *";say We have cookies * is active
    if %ini_serverdescription_current% == 3;exec vars.serverDescription "Welcome to Private Infidels * Happy Teabagging *";say * Happy Teabagging * is active
    if %ini_serverdescription_current% == 4;exec vars.serverDescription "Welcome to Private Infidels * Today's topic: none.....*";say * Today's topic: none.....* is active
    if %ini_serverdescription_current% == 5;exec vars.serverDescription "Welcome to Private Infidels * dont you have a life _ *";say * dont you have a life _ * is active
    if %ini_serverdescription_current% == 6;exec vars.serverDescription "Welcome to Private Infidels * teabagging allowed here*";say * teabagging allowed here* is active
    if %ini_serverdescription_current% == 7;exec vars.serverDescription "Welcome to Private Infidels * Dark cookie u are_ *";say * Dark cookie u are_ * is active

i suggest you take a look into the proconrulz documentation, it is very helpfull:
http://www.forsterlewis.com/proconrulz.pdf

Edited by maxdralle
* Restored post. It could be that the author is no longer active.
Link to comment
  • 3 weeks later...

Originally Posted by HATANO_KENJI*:

 

Okay!

I think I was defeated by this huge scale reply, My current physical condition can't find my answer in 604 total pages...

 

I used to see other servers and see when players join the server, All players can see the current time, Should be changed from this code:

 

# JOINER/LEAVER LOG

On Join;Say %p% has joined the server

On Leave;Say %p% has left the server

 

[HATANO_KENJI] has joined the server (Current time: 2018/06/29 - AM:07:00)

[HATANO_KENJI] has has left the server (Current time: 2018/06/29 - AM:07:00)

 

Like this effect.

 

I want to find such a code, But I can't find it. How can I ask this problem?

 

Thank you for your help!

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

Originally Posted by ty_ger07*:

 

On Join;Say %p% has joined the server (current time %hms%)

 

The problem is that it will always show the server's time, not necessarily the player's time. That limitation makes this seems kind of pointless. Don't people own watches, clocks, and smartphones?

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

Originally Posted by xcite*:

 

Grretings to everybody! Asking for help guys ...

 

I need to kick a player out from BF4 server on first usage of:

 

1. All of M320's and etc.,

2. RPG, MBT, SMAW etc.,

3. MORTAR

 

On METRO & LOCKER maps.

 

I have the following code for it:

 

Code:

# KILL AND KICK RULES
On Kill;Map XP0_Metro,MP_Prison;Not Weapon U_M67,U_V40,U_Grenade_RGO,U_M34,U_Flashbang,U_C4,U_C4_Support,U_Claymore,U_Claymore_Recon;Damage Explosive,ProjectileExplosive;PlayerCount 1;Log ^1%p% ^0was KICKED for using a ^1%w%;Kick %p%, No Explosives on this Map! You used a %w%.
I can't understand why the kick works for:

 

1. All of M320's and etc.,

2. RPG, MBT, SMAW etc.,

 

And doesn't works for:

 

3. MORTAR

 

?

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

Originally Posted by HATANO_KENJI*:

 

On Join;Say %p% has joined the server (current time %hms%)

 

The problem is that it will always show the server's time, not necessarily the player's time. That limitation makes this seems kind of pointless. Don't people own watches, clocks, and smartphones?

I need to be able to show the correct time to join the server, Because I want to hold an "Thank you for helping populate! event"

 

This is because my server to join my server in the daytime my time zone few players, So I hope they can provide screenshots as a reference for participating in the event.

 

About the server time, I have requested i3D.NET to change my server time to my time zone GMT+8, But the displayed time zone seems to be still GMT, Whether this is a Game Servers software, the default time cannot be modified?

 

Because I refer to this teaching, the server's time has not changed:

myrcon.net/...server-time#entry49851

 

This is really no way to solve?

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

Originally Posted by spatieman*:

 

Grretings to everybody! Asking for help guys ...

 

I need to kick a player out from BF4 server on first usage of:

 

1. All of M320's and etc.,

2. RPG, MBT, SMAW etc.,

3. MORTAR

 

On METRO & LOCKER maps.

 

I have the following code for it:

 

Code:

# KILL AND KICK RULES
On Kill;Map XP0_Metro,MP_Prison;Not Weapon U_M67,U_V40,U_Grenade_RGO,U_M34,U_Flashbang,U_C4,U_C4_Support,U_Claymore,U_Claymore_Recon;Damage Explosive,ProjectileExplosive;PlayerCount 1;Log ^1%p% ^0was KICKED for using a ^1%w%;Kick %p%, No Explosives on this Map! You used a %w%.
I can't understand why the kick works for:

 

1. All of M320's and etc.,

2. RPG, MBT, SMAW etc.,

 

And doesn't works for:

 

3. MORTAR

 

?

in your BF4 config dir from procon, is a file called bf4.def

in it, are mostly all weapons, kits, defined.

 

copy, and edit, remove all non esential stuff, so that u only have the weapon codes left.

from there, u can do magic with proconrulz.

 

hint, direct kick when using forbidden weapon is harsh,

suggestion: make it first 2 kills with them a kill, and let them know that those things are forbidden.

if they kep stubern,a kick can help in the case.

 

most of the weapon kits are in your line already.

 

but be carefull, sometimes, proconrulz make a mess if u make a extended rule..

 

not gonna post the stripped version i have, it is huge.

 

stripped down version

 

Code:

None "U_V40" Auxiliary Explosive
None "U_M34" Auxiliary Explosive
None "U_M67" Auxiliary Explosive
None "U_Flashbang" Auxiliary Explosive
None "U_Grenade_RGO" Auxiliary Explosive

Assault "U_AEK971_M320_3GL" Secondary ProjectileExplosive
Assault "U_AEK971_M320_FLASH" Secondary ProjectileExplosive
Assault "U_AEK971_M320_HE" Secondary ProjectileExplosive
Assault "U_AEK971_M320_LVG" Secondary ProjectileExplosive
Assault "U_AK12_M320_3GL" Secondary ProjectileExplosive
Assault "U_AK12_M320_FLASH" Secondary ProjectileExplosive
Assault "U_AK12_M320_HE" Secondary ProjectileExplosive
Assault "U_AK12_M320_LVG" Secondary ProjectileExplosive
Assault "U_AN94_M320_3GL_v1" Secondary ProjectileExplosive
Assault "U_AN94_M320_FLASH_v1" Secondary ProjectileExplosive
Assault "U_AN94_M320_HE_v1" Secondary ProjectileExplosive
Assault "U_AN94_M320_LVG_v1" Secondary ProjectileExplosive
Assault "U_AR160_M320_3GL" Secondary ProjectileExplosive
Assault "U_AR160_M320_FLASH" Secondary ProjectileExplosive
Assault "U_AR160_M320_HE" Secondary ProjectileExplosive
Assault "U_AR160_M320_LVG" Secondary ProjectileExplosive
Assault "U_CZ805_M320_3GL" Secondary ProjectileExplosive
Assault "U_CZ805_M320_FLASH" Secondary ProjectileExplosive
Assault "U_CZ805_M320_HE" Secondary ProjectileExplosive
Assault "U_CZ805_M320_LVG" Secondary ProjectileExplosive
Assault "U_L85A2_M320_3GL_V2" Secondary ProjectileExplosive
Assault "U_L85A2_M320_HE_V2" Secondary ProjectileExplosive
Assault "U_L85A2_M320_LVG_V2" Secondary ProjectileExplosive
Assault "U_M16A4_M320_3GL" Secondary ProjectileExplosive
Assault "U_M16A4_M320_FLASH" Secondary ProjectileExplosive
Assault "U_M16A4_M320_HE" Secondary ProjectileExplosive
Assault "U_M16A4_M320_LVG" Secondary ProjectileExplosive
Assault "U_M320_3GL" Secondary ProjectileExplosive
Assault "U_M320_FLASH" Secondary ProjectileExplosive
Assault "U_M320_HE" Secondary ProjectileExplosive
Assault "U_M320_LVG" Secondary ProjectileExplosive
Assault "U_M416_M320_3GL" Secondary ProjectileExplosive
Assault "U_M416_M320_FLASH" Secondary ProjectileExplosive
Assault "U_M416_M320_HE" Secondary ProjectileExplosive
Assault "U_M416_M320_LVG" Secondary ProjectileExplosive
Assault "U_QBZ951_M320_3GL" Secondary ProjectileExplosive
Assault "U_QBZ951_M320_FLASH" Secondary ProjectileExplosive
Assault "U_QBZ951_M320_HE" Secondary ProjectileExplosive
Assault "U_QBZ951_M320_LVG" Secondary ProjectileExplosive
Assault "U_SAR21_M320_3GL" Secondary ProjectileExplosive
Assault "U_SAR21_M320_FLASH" Secondary ProjectileExplosive
Assault "U_SAR21_M320_HE" Secondary ProjectileExplosive
Assault "U_SAR21_M320_LVG" Secondary ProjectileExplosive
Assault "U_SCAR-H_M320_3GL" Secondary ProjectileExplosive
Assault "U_SCAR-H_M320_FLASH" Secondary ProjectileExplosive
Assault "U_SCAR-H_M320_HE" Secondary ProjectileExplosive
Assault "U_SCAR-H_M320_LVG" Secondary ProjectileExplosive
Assault "U_SteyrAug_M320_3GL" Secondary ProjectileExplosive
Assault "U_SteyrAug_M320_FLASH" Secondary ProjectileExplosive
Assault "U_SteyrAug_M320_HE" Secondary ProjectileExplosive
Assault "U_SteyrAug_M320_LVG" Secondary ProjectileExplosive

Demolition "AA Mine" Secondary Explosive
Demolition "U_FGM148" Secondary ProjectileExplosive
Demolition "U_FIM92" Secondary ProjectileExplosive
Demolition "U_M15" Secondary Explosive
Demolition "U_NLAW" Secondary ProjectileExplosive
Demolition "U_RPG7" Secondary ProjectileExplosive
Demolition "U_Sa18IGLA" Secondary ProjectileExplosive
Demolition "U_SLAM" Auxiliary Explosive
Demolition "U_SMAW" Secondary ProjectileExplosive
Demolition "U_SRAW" Secondary ProjectileExplosive

None "U_AT4" Secondary ProjectileExplosive
None "U_MGL" Primary ProjectileExplosive
None "U_Railgun" Primary ProjectileExplosive
None "U_Starstreak" Secondary ProjectileExplosive
None "U_Tomahawk" Primary ProjectileExplosive
None "XP3/Gameplay/Vehicles/RAWR/RAWR" Secondary Explosive

Recon "U_C4" Secondary Explosive
Recon "U_Claymore_Recon" Secondary Explosive
Recon "U_SP_Claymore" Secondary Explosive

Support "M224" Secondary ProjectileExplosive
Support "U_C4_Support" Secondary Explosive
Support "U_Claymore" Secondary Explosive
Support "U_M224" Secondary ProjectileExplosive
Support "U_XM25" Secondary ProjectileExplosive
Support "UCAV" Secondary Explosive
Support "XP1/Gameplay/Gadgets/UCAV/UCAV_Launcher" Secondary Explosive
happy copy/past saving ^^
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by Saloed12345*:

 

Hello.

 

needed ur help.

 

what is wrong with this rule. Need Operation Locker No Explosive.

 

On Kill;Damage ProjectileExplosive;Kill 1;Say NO EXPLOSIVE!

On Kill;Damage ProjectileExplosive;PlayerCount 3;Kick No Explosive! next time Ban!

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

Originally Posted by spatieman*:

 

Hello.

 

needed ur help.

 

what is wrong with this rule. Need Operation Locker No Explosive.

 

On Kill;Damage ProjectileExplosive;Kill 1;Say NO EXPLOSIVE!

On Kill;Damage ProjectileExplosive;PlayerCount 3;Kick No Explosive! next time Ban!

actualy,, the kick happends at kill 3, but when he comes back __, he still get kicked.

2nd..

see my previous post about a similar question, there are difrent kinds of explosive type.

cough, Claymore are ,just like C4 also explosives,cough.

 

be more acurate, most are willing to help if they have time (i am more slacking,but it is ok)

when i have time, i can rewrite one of my own no boom boom rulez hehe...

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

Originally Posted by xcite*:

 

in your BF4 config dir from procon, is a file called bf4.def

in it, are mostly all weapons, kits, defined.

 

copy, and edit, remove all non esential stuff, so that u only have the weapon codes left.

from there, u can do magic with proconrulz.

 

hint, direct kick when using forbidden weapon is harsh,

suggestion: make it first 2 kills with them a kill, and let them know that those things are forbidden.

if they kep stubern,a kick can help in the case.

 

most of the weapon kits are in your line already.

 

but be carefull, sometimes, proconrulz make a mess if u make a extended rule..

 

not gonna post the stripped version i have, it is huge.

 

stripped down version

 

Code:

None "U_V40" Auxiliary Explosive
None "U_M34" Auxiliary Explosive
None "U_M67" Auxiliary Explosive
None "U_Flashbang" Auxiliary Explosive
None "U_Grenade_RGO" Auxiliary Explosive

Assault "U_AEK971_M320_3GL" Secondary ProjectileExplosive
Assault "U_AEK971_M320_FLASH" Secondary ProjectileExplosive
Assault "U_AEK971_M320_HE" Secondary ProjectileExplosive
Assault "U_AEK971_M320_LVG" Secondary ProjectileExplosive
Assault "U_AK12_M320_3GL" Secondary ProjectileExplosive
Assault "U_AK12_M320_FLASH" Secondary ProjectileExplosive
Assault "U_AK12_M320_HE" Secondary ProjectileExplosive
Assault "U_AK12_M320_LVG" Secondary ProjectileExplosive
Assault "U_AN94_M320_3GL_v1" Secondary ProjectileExplosive
Assault "U_AN94_M320_FLASH_v1" Secondary ProjectileExplosive
Assault "U_AN94_M320_HE_v1" Secondary ProjectileExplosive
Assault "U_AN94_M320_LVG_v1" Secondary ProjectileExplosive
Assault "U_AR160_M320_3GL" Secondary ProjectileExplosive
Assault "U_AR160_M320_FLASH" Secondary ProjectileExplosive
Assault "U_AR160_M320_HE" Secondary ProjectileExplosive
Assault "U_AR160_M320_LVG" Secondary ProjectileExplosive
Assault "U_CZ805_M320_3GL" Secondary ProjectileExplosive
Assault "U_CZ805_M320_FLASH" Secondary ProjectileExplosive
Assault "U_CZ805_M320_HE" Secondary ProjectileExplosive
Assault "U_CZ805_M320_LVG" Secondary ProjectileExplosive
Assault "U_L85A2_M320_3GL_V2" Secondary ProjectileExplosive
Assault "U_L85A2_M320_HE_V2" Secondary ProjectileExplosive
Assault "U_L85A2_M320_LVG_V2" Secondary ProjectileExplosive
Assault "U_M16A4_M320_3GL" Secondary ProjectileExplosive
Assault "U_M16A4_M320_FLASH" Secondary ProjectileExplosive
Assault "U_M16A4_M320_HE" Secondary ProjectileExplosive
Assault "U_M16A4_M320_LVG" Secondary ProjectileExplosive
Assault "U_M320_3GL" Secondary ProjectileExplosive
Assault "U_M320_FLASH" Secondary ProjectileExplosive
Assault "U_M320_HE" Secondary ProjectileExplosive
Assault "U_M320_LVG" Secondary ProjectileExplosive
Assault "U_M416_M320_3GL" Secondary ProjectileExplosive
Assault "U_M416_M320_FLASH" Secondary ProjectileExplosive
Assault "U_M416_M320_HE" Secondary ProjectileExplosive
Assault "U_M416_M320_LVG" Secondary ProjectileExplosive
Assault "U_QBZ951_M320_3GL" Secondary ProjectileExplosive
Assault "U_QBZ951_M320_FLASH" Secondary ProjectileExplosive
Assault "U_QBZ951_M320_HE" Secondary ProjectileExplosive
Assault "U_QBZ951_M320_LVG" Secondary ProjectileExplosive
Assault "U_SAR21_M320_3GL" Secondary ProjectileExplosive
Assault "U_SAR21_M320_FLASH" Secondary ProjectileExplosive
Assault "U_SAR21_M320_HE" Secondary ProjectileExplosive
Assault "U_SAR21_M320_LVG" Secondary ProjectileExplosive
Assault "U_SCAR-H_M320_3GL" Secondary ProjectileExplosive
Assault "U_SCAR-H_M320_FLASH" Secondary ProjectileExplosive
Assault "U_SCAR-H_M320_HE" Secondary ProjectileExplosive
Assault "U_SCAR-H_M320_LVG" Secondary ProjectileExplosive
Assault "U_SteyrAug_M320_3GL" Secondary ProjectileExplosive
Assault "U_SteyrAug_M320_FLASH" Secondary ProjectileExplosive
Assault "U_SteyrAug_M320_HE" Secondary ProjectileExplosive
Assault "U_SteyrAug_M320_LVG" Secondary ProjectileExplosive

Demolition "AA Mine" Secondary Explosive
Demolition "U_FGM148" Secondary ProjectileExplosive
Demolition "U_FIM92" Secondary ProjectileExplosive
Demolition "U_M15" Secondary Explosive
Demolition "U_NLAW" Secondary ProjectileExplosive
Demolition "U_RPG7" Secondary ProjectileExplosive
Demolition "U_Sa18IGLA" Secondary ProjectileExplosive
Demolition "U_SLAM" Auxiliary Explosive
Demolition "U_SMAW" Secondary ProjectileExplosive
Demolition "U_SRAW" Secondary ProjectileExplosive

None "U_AT4" Secondary ProjectileExplosive
None "U_MGL" Primary ProjectileExplosive
None "U_Railgun" Primary ProjectileExplosive
None "U_Starstreak" Secondary ProjectileExplosive
None "U_Tomahawk" Primary ProjectileExplosive
None "XP3/Gameplay/Vehicles/RAWR/RAWR" Secondary Explosive

Recon "U_C4" Secondary Explosive
Recon "U_Claymore_Recon" Secondary Explosive
Recon "U_SP_Claymore" Secondary Explosive

Support "M224" Secondary ProjectileExplosive
Support "U_C4_Support" Secondary Explosive
Support "U_Claymore" Secondary Explosive
Support "U_M224" Secondary ProjectileExplosive
Support "U_XM25" Secondary ProjectileExplosive
Support "UCAV" Secondary Explosive
Support "XP1/Gameplay/Gadgets/UCAV/UCAV_Launcher" Secondary Explosive
happy copy/past saving ^^
Maybe is it possible not to edit bf4.def? Maybe is it possible to edit my rule :smile: ?
* Restored post. It could be that the author is no longer active.
Link to comment
  • 2 weeks later...

Originally Posted by spatieman*:

 

eh, never edit it.

its a procon file, all weapon codes u need to make rules are in it.

copy past in a empty file and save it to a difrent name and place it outside procon.

the edited file is a helper to make creating rulez more easy.

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

Originally Posted by spatieman*:

 

hmm, this is weard.

 

most of weapon/vehicle codes work what are in the bf4.def file to make funny rules

however.

 

Code:

On Kill;weapon AA Mine;say Hi %v% ,you got terminated by %p%'s AA mine
but procon says this about it.

ProconRulz: Warning, weapon AA not found in Procon (but you can still use the key in ProconRulz)

 

kills with it, dont spam the message.

any work around, this bugs me for some days now.

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

Originally Posted by maxdralle*:

 

@spartieman

 

in proconulz you can see the right definition of weapon keys.

Unbenannt.png

 

i dont know why there is a & character in the key for aa mine. you can try to debug it with the following line. after you got a kill with aa mine you will see in the plugin console the correct weapon key for proconrulz.

Code:

On Kill; Log %p% kill %v% with proconrulz weapon key: %wk%
* Restored post. It could be that the author is no longer active.
Link to comment
  • 1 month later...

Originally Posted by spatieman*:

 

just another BF4 script to be sure that cheating with the Rorsch MK-1, XD-1 Acipiter and RAWR is not posible

out of the maps wherethey belong xD

 

This for CONQUEST ONLY !

Code:

# banning for use of XD-1 Acipiter and Rorsch MK-1 on NON Final Stand maps in Conquest
on kill;not mapmode Conquest;not map Giants Of Karelia,Hammerhead,Hanger 21,Operation Whiteout;weapon XP4/Gameplay/Gadgets/MKV/MKV;say %p% got banned for use of impossible weapon: XD-1 acipiter;ban %p% cheating with XD-1 acipiter
on kill;not mapmode Conquest;not map Giants Of Karelia,Hammerhead,Hanger 21,Operation Whiteout;say %p% got banned for use of impossible weapon: rorsch mk-1;ban %p% cheating with rorsch mk-1
And this for the RAWR out of its map

Code:

on kill;not mapmode Conquest;not map Sunken Dragon,Pearl Market,Propaganda,Lumphini Garden;weapon XP3/Gameplay/Vehicles/RAWR/RAWR;say %p% got banned for use of impossible weapon: RAWR;ban %p% cheating with RAWR
work in progress for Obliteration mapmode.

 

As for Metro only servers

Yes, i have seen #$^#@# using them on it.

 

Code:

## Metro
############### RAWR ###############
On Kill;map Operation Metro 2014;weapon XP3/Gameplay/Vehicles/RAWR/RAWR;say %p% got banned for use of impossible weapon: RAWR;ban %p% cheating with RAWR

############### XD-1 Acipiter MKV ###############
On Kill;map Operation Metro 2014;weapon XP4/Gameplay/Gadgets/MKV/MKV;say %p% got banned for use of impossible weapon: XD-1 acipiter;ban %p% cheating with XD-1 acipiter

############### Rorsch MK-1 ###############
On Kill;map Operation Metro 2014;weapon U_Railgun;say %p% got banned for use of impossible weapon: rorsch mk-1;ban %p% cheating with rorsch mk-1
Aditional:

Final stand maps

CQ: Giants Of Karelia: XD1 Acipiter / Rorsch MK-1

OBL: Giants Of Karelia: /XD1 Acipiter

 

CQ: Hammerhead: XD1 Acipiter / Rorsch MK-1

OBL: Hammerhead: XD1 Acipiter / Rorsch MK-1

 

CQ: Hangar 21: XD1 Acipiter / rorsch mk-1

OBL: Hangar 21: XD1 Acipiter / rorsch mk-1

 

CQ: Operation Whiteout: XD1 Acipiter / rorsch mk-1

OBL: Operation Whiteout: XD1 Acipiter / rorsch mk-1

 

Dragon's Teeth maps

CQ: Sunken Dragon: RAWR

OBL: Sunken Dragon: RAWR

 

CQ: Pearl Market: RAWR

OBL: Pearl Market: RAWR

 

CQ: Propaganda: RAWR

OBL: Propaganda: RAWR

 

CQ: Lumphini Garden: RAWR

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

Originally Posted by xloneshadowx*:

 

Somewhere among these 617 pages is a chopper kill limit script. Example when less than 30 players in the server after a 10 kill streak the chopper pilot and/or gunner gets killed. I seen a good one but before now i can't find it. It would warn players as well.. anyone know what i'm talking about?

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

Originally Posted by tchum*:

 

@maxdralle hi,

It's for your "ANTI KILL STREAK CHALLENGE" (myrcon.net/...proconrulz-player-challenge-event-to-win-a-vip-slot-bf4-working-code#entry52020)

 

I would like to add it a whitelist, so like that if one of the whitelisted player reach the k/s limit, the ANTI KILL STREAK CHALLENGE is not triggered.

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

Originally Posted by maxdralle*:

 

just edit line 7 and line 8 from:

Code:

# start anti kill streak challenge
On Kill; if %ts1% + %ts2% >= 16;
to:

 

Code:

# start anti kill streak challenge
On Kill; if %ts1% + %ts2% >= 16; if %p% != [b]SniperBen[/b]; if %p% != [b]SmokyJoe[/b]
* Restored post. It could be that the author is no longer active.
Link to comment
  • 1 month later...

Originally Posted by spatieman*:

 

Took a while, didnt had much time to work on it.

but here is a revised version for forbidden weapons

this will ban players using the RAWR ,RORSCH MK1 and the XD-1 ACIPITER used NOT on the maps where it belong.

it is work in progress, exluded are Gun Master modes, depending on the gun master preset u can kill with the rorsch MK1

also excluded are the XP3 and XP4 modes.

on the XP3 maps (not all modes) there is the RAWR drone.

on the XP4 maps (not all modes) are the Rorsch MK1 and the XD-1 Acipiter drone

 

* updated XP3 and XP4 in reversed order.

 

Code:

# forbidden weapon protection
# excluded are XP3_ and XP4_ maps, work in progress
on spawn;playerfirst;not mapmode gunmaster;map MP_Abandoned,MP_Damage,MP_Flooded,MP_Journey,MP_Naval,MP_Prison,MP_Resort,MP_Siege,MP_TheDish,MP_Tremors;say FORBIDDEN WEAPON PROTECTION vanila maps
on spawn;playerfirst;not mapmode gunmaster;map XP0_Caspian,XP0_Firestorm,XP0_Metro,XP0_Oman,XP1_001,XP1_002,XP1_003,XP1_004,XP2_001,XP2_002,XP2_003,XP2_004,XP5_Night_01,XP6_CMP,XP7_Valley,XP3_MarketPl,XP3_Prpganda,XP3_UrbanGdn,XP3_WtrFront,XP4_Arctic,XP4_SubBase,XP4_Titan,XP4_WlkrFtry;say FORBIDDEN WEAPON PROTECTION DLC maps

############### RAWR ###############
on kill;not mapmode gunmaster;map MP_Abandoned,MP_Damage,MP_Flooded,MP_Journey,MP_Naval,MP_Prison,MP_Resort,MP_Siege,MP_TheDish,MP_Tremors;weapon XP3/Gameplay/Vehicles/RAWR/RAWR;say %p% got banned for use of impossible weapon: RAWR;ban %p% cheating with RAWR
on kill;not mapmode gunmaster;map XP0_Caspian,XP0_Firestorm,XP0_Metro,XP0_Oman,XP1_001,XP1_002,XP1_003,XP1_004,XP2_001,XP2_002,XP2_003,XP2_004,XP5_Night_01,XP6_CMP,XP7_Valley;weapon XP3/Gameplay/Vehicles/RAWR/RAWR;say %p% got banned for use of impossible weapon: RAWR;ban %p% cheating with RAWR
on kill;map XP4_Arctic,XP4_SubBase,XP4_Titan,XP4_WlkrFtry;weapon XP3/Gameplay/Vehicles/RAWR/RAWR;say %p% got banned for use of impossible weapon: RAWR;ban %p% cheating with RAWR

############### XD-1 Acipiter MKV ###############
on kill;not mapmode gunmaster;map MP_Abandoned,MP_Damage,MP_Flooded,MP_Journey,MP_Naval,MP_Prison,MP_Resort,MP_Siege,MP_TheDish,MP_Tremors;weapon XP4/Gameplay/Gadgets/MKV/MKV;say %p% got banned for use of impossible weapon: XD-1 acipiter;ban %p% cheating with XD-1 acipiter
on kill;not mapmode gunmaster;map XP0_Caspian,XP0_Firestorm,XP0_Metro,XP0_Oman,XP1_001,XP1_002,XP1_003,XP1_004,XP2_001,XP2_002,XP2_003,XP2_004,XP5_Night_01,XP6_CMP,XP7_Valley;weapon XP4/Gameplay/Gadgets/MKV/MKV;say %p% got banned for use of impossible weapon: XD-1 acipiter;ban %p% cheating with XD-1 acipiter
on kill;map XP3_MarketPl,XP3_Prpganda,XP3_UrbanGdn,XP3_WtrFront;weapon XP4/Gameplay/Gadgets/MKV/MKV;say %p% got banned for use of impossible weapon: XD-1 acipiter;ban %p% cheating with XD-1 acipiter

############### Rorsch MK-1 ###############
on kill;not mapmode gunmaster;map MP_Abandoned,MP_Damage,MP_Flooded,MP_Journey,MP_Naval,MP_Prison,MP_Resort,MP_Siege,MP_TheDish,MP_Tremors;weapon U_Railgun;say %p% got banned for use of impossible weapon: rorsch mk-1;ban %p% cheating with rorsch mk-1
on kill;not mapmode gunmaster;map XP0_Caspian,XP0_Firestorm,XP0_Metro,XP0_Oman,XP1_001,XP1_002,XP1_003,XP1_004,XP2_001,XP2_002,XP2_003,XP2_004,XP5_Night_01,XP6_CMP,XP7_Valley;weapon U_Railgun;say %p% got banned for use of impossible weapon: rorsch mk-1;ban %p% cheating with rorsch mk-1
on kill;map XP3_MarketPl,XP3_Prpganda,XP3_UrbanGdn,XP3_WtrFront;weapon U_Railgun;say %p% got banned for use of impossible weapon: rorsch mk-1;ban %p% cheating with rorsch mk-1
* Restored post. It could be that the author is no longer active.
Link to comment

Originally Posted by ty_ger07*:

 

Hi!

Plugin has trigger "On Kill;"

Is it possible to wait for the addition of the trigger "On Death;"?

Or is it contrary to the logic of the program?

Sorry for the dumb question..:sad:

On Kill means that their was a death, right?

 

On Kill;%v% is the victim of a kill; which is functionally the same thing as a theoretical "on death" trigger.

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