ImportBot Posted January 20, 2014 Share Posted January 20, 2014 Originally Posted by m4gnet*: Hi! Prompt writing rules in the plugin ProconRulz v44j1 messages that are displayed on the screen, but a few seconds delay. Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 20, 2014 Share Posted January 20, 2014 Originally Posted by m4gnet*: Hi! Prompt writing rules in the plugin ProconRulz v44j1 messages that are displayed on the screen, but a few seconds delay. Yell - delay? second Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 20, 2014 Share Posted January 20, 2014 Originally Posted by m4gnet*: as well as how to make this ProconRulz v 44j1 DEATHS STREAK! pls Found the only example in this post, but it is not suitable. Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 20, 2014 Share Posted January 20, 2014 Originally Posted by ixnorp*: Many thanks again. I added the code and no errors. But is it not so that you cannot kill with a MAV? So the rule On Kill: Weapon Death won't acctually work? I am not the expert but i'm just thinking. I am an absolute noob when it comes to programming. But maybe there is a rule that can trigger a message when a player is using a MAV? On Kill;Weapon Death;..... will work. you can do something like this, this will tell the whole server player is using mav to kill. On Kill;Weapon Death;kill;Say %p% got killed for killing with mav.... Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 20, 2014 Share Posted January 20, 2014 Originally Posted by m4gnet*: Oh no! It does not work. Server BC2. As an example. It works, but not completely. DeathsStreak is obtained only once on player per round. Somewhere hiding error. # Death Streak Announcer On Kill;If %streak_death[%p%]% == 0;Set %deathincr% 0 On Kill;Incr %deathincr%;Incr %streak_death[%p%]%; On Kill;If %deathincr% == 5;Set %deathincr% 5; On Kill;If %streak_death[%p%]% == 5;Say %v% have a 5-Deaths Streak! ________________________________;Yell 5000 %v% have a 5-Deaths Streak! Yell 5000 = 5 second message Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 21, 2014 Share Posted January 21, 2014 Originally Posted by LjMjollnir*: the On Kill;Weapon Roadkill should handle the roadkills from MAV Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 21, 2014 Share Posted January 21, 2014 Originally Posted by ixnorp*: the On Kill;Weapon Roadkill should handle the roadkills from MAVEh? Damn. Now it's my turn. I thought it was on kill;damage roadkill;... Gave me bad condition. Sent from my iPhone using Tapatalk Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 21, 2014 Share Posted January 21, 2014 Originally Posted by ixnorp*: Oh no! It does not work. Server BC2. As an example. It works, but not completely. DeathsStreak is obtained only once on player per round. Somewhere hiding error. # Death Streak Announcer On Kill;If %streak_death[%p%]% == 0;Set %deathincr% 0 On Kill;Incr %deathincr%;Incr %streak_death[%p%]%; On Kill;If %deathincr% == 5;Set %deathincr% 5; On Kill;If %streak_death[%p%]% == 5;Say %v% have a 5-Deaths Streak! ________________________________;Yell 5000 %v% have a 5-Deaths Streak! Yell 5000 = 5 second message Not sure if mine is right. Didn't test it. I'm also not very good on this, but anyway I still get to learn. On spawn;set %death?[%p%]% 0 On kill;incr %death?[%v%]% (not sure if this should be %p%) On kill;if %death?[%v%]% == 5;say %p% is on 5 death streak On kill;..... Sent from my iPhone using Tapatalk Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 21, 2014 Share Posted January 21, 2014 Originally Posted by m4gnet*: LjMjollnir - is the question? RoadKill may mean it? On Kill;Not Admin;Weapon roadkill;Say %p% slayed %v% with %w%! RoadKill Unallowed / Killed by Admin;Kill Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 22, 2014 Share Posted January 22, 2014 Originally Posted by LjMjollnir*: LjMjollnir - is the question? RoadKill may mean it? On Kill;Not Admin;Weapon roadkill;Say %p% slayed %v% with %w%! RoadKill Unallowed / Killed by Admin;Kill adding Not Admin will disable that Rule for Admins.. meaning an Admin can roadkill players but general players cant roadkill anyone. Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 22, 2014 Share Posted January 22, 2014 Originally Posted by m4gnet*: You are right. Well, this is an example. You can add a rule. Will work. Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 22, 2014 Share Posted January 22, 2014 Originally Posted by Tomgun*: ok I had this idea while sitting on the "white seat", the idea came to me instead of instant kill for vehicle use in an infantry only server why not let people punish for it (more satisfying) so I have made the following but need some help: ################################################## ####### # Vehicle Kill Punisher by TomGunSE ################################################## ####### On Spawn;ServerFirst;Set %ini_punish% 0 On Kill;Weapon Death;PlayerSay %p% you vehicle/mortor killed %v%. This is not allowed!! %v% may punish you!! On Kill;Weapon Death;VictimSay %v%: Type !v or !vehicle to punish %p% for vehicle kill! # Vehicle kill Tracking Rulz On Kill;Weapon Death;Set %server_vehiclekillkill[%p%]% %v% On Kill;Weapon Death;Set %server_vehiclekillkill[%v%]% %p% # Vehicle Kill Punish Rulz On Say;Text !v,!vehicle;If %server_vehiclekillkill[%p%]% == 0;PlayerSay %p%: could not find a recent vehicle kill to punish! or already has been punished! On Say;Text !v,!vehicle;If %server_vehiclekillkill[%p%]% != 0 Incr %ini_punish_count[%server_vehiclekillkill[%p%]%]% If %ini_punish_count[%p%]% == 4;TempBan 300 %p% TempBan 5 minutes;Set %ini_punish_count[%p%]% 0 TargetPlayer %server_vehiclekillkill[%p%]%;TargetAction Say %t% killed for vehicle kill!;TargetAction Kill;TargetConfirm;Set %server_vehiclekillkill[%p%]% 0 #Leave On Leave;Set %ini_punish_count[%p%]% 0 now yes I have edited a previous !punish for TK script so well done who made this before if you recognize your work so cheers, but I would like it to kick on the 4th punish and if they come back temp ban for 5 mins on the 5th punish going onto a full ban on the 6th punish plus put road kill in there (I haven't got the code right). I would also like roadkill added but now sure where to put it and what to put. So if anyone can help I would be grateful Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 22, 2014 Share Posted January 22, 2014 Originally Posted by m4gnet*: On Kill;Weapon roadkill;Count 5;TempBan 300 Banned 5min for Vehicle kill [Warning 5/3] On Kill;Weapon roadkill;Count 4;Kick Kicked for Vehicle kill [Warning 4/3] On Kill;Weapon roadkill;Count 3;Say %p% bam bam [Warning 3/3];Kill On Kill;Weapon roadkill;Count 2;Say %p% bam bam [Warning 2/3];Kill On Kill;Weapon roadkill;Say %p% slayed %v% with %w%! RoadKill Unallowed [Warning 1/3];Kill Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 22, 2014 Share Posted January 22, 2014 Originally Posted by DHGreenday*: You don't need the ";" at the end of your lines. This will give the 2nd warning on the 2nd & 3rd triggers, and then the 1st warning on all triggers after. I don't know how to set it to only give the warnings on 2nd & 4th. On Say;Text hack,cheat,cheater,hacker; PlayerCount 3;PlayerSay AUTOADMIN: %p% Again if you think someone is cheating please notify an admin with !admin PlayerCount 1;PlayerSay AUTOADMIN: %p% if you think someone is cheating please notify an admin with !admin Thanks for the advice I have worked out how to do it now! Its quite simple, I just needed to add PlayerOnce to each line. The 2 inevitable outcomes are either 1 the player disconnects or 2 the player gets a timeban so each message will only need to be shown once but if you want to repeat then all you have to do is do the same message on the next player count. On the one I've created all messages are different. Everything resets when the player rejoins anyhow. Feel free to use and tweak as you wish. I would like to add a delayed message to the player ingame before the ban is issued. I just need to work out if it is possible. The rule will be ignored if the player notifies an admin with the trigger words. On Say;Text hack,cheat,cheater,hacker,hck,wallhack,esp,aimbot, multihack;Not Text admin,!admin,@admin,#admin; PlayerOnce;PlayerSay AUTOADMIN: %p% If you think someone is cheating please say !admin cheater to notify an admin PlayerCount 1;PlayerOnce;PlayerSay AUTOADMIN: %p% Report suspects say !report playername cheater or !admin cheater PlayerCount 2;PlayerOnce;PlayerSay AUTOADMIN: %p% Sorry we can't respond please report cheaters at ............... or on their battlelog profile PlayerCount 3;PlayerOnce;PlayerSay AUTOADMIN: %p% We strongly advice you to report suspects on our website ............... or on battlelog PlayerCount 4;PlayerOnce;PlayerSay AUTOADMIN: %p% Thanks for your concern but next hackusation will be regarded as spam = 30 mins Tempban PlayerCount 5;PlayerSay AUTOADMIN: %p% Giving timeout;TempBan 1800 AUTOADMIN: 30 minutes timeout to report the player on battlelog Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 23, 2014 Share Posted January 23, 2014 Originally Posted by mal0mod0*: Is there anyhow to make a "most capture"(conquest) rule...sort of like most kills file? I read through documentation but didn't see anything? Also BF4 doesn't have individual knife kills yet? Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 23, 2014 Share Posted January 23, 2014 Originally Posted by Velocus_NL*: Hello again, Is this code right for a DMR only server? On Kill;Not Damage DMR;PlayerCount 5;Log %p%banned (DMR only);Ban %p% DMR only On Kill;Not Damage DMR;PlayerCount 3;Log %p% kicked (DMR only);Kick %p% DMR only On Kill;Not Damage DMR;PlayerSay %p% DMR only;Kill 100 Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 23, 2014 Share Posted January 23, 2014 Originally Posted by ixnorp*: Also BF4 doesn't have individual knife kills yet? BF4 only has Melee for all knifes Hello again, Is this code right for a DMR only server? On Kill;Not Damage DMR;PlayerCount 5;Log %p%banned (DMR only);Ban %p% DMR only On Kill;Not Damage DMR;PlayerCount 3;Log %p% kicked (DMR only);Kick %p% DMR only On Kill;Not Damage DMR;PlayerSay %p% DMR only;Kill 100 ya.. you can cut it shorter like this On Kill;Not Damage DMR PlayerCount 5;Log %p% banned (DMR only);Ban %p% DMR only PlayerCount 3;Log %p% kicked (DMR only);Kick %p% DMR only PlayerSay %p% DMR only;Kill 100 i assume you put %p% at kick/ban is to be shown at the kick/ban reason right? Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 23, 2014 Share Posted January 23, 2014 Originally Posted by chesterfield*: sorry again So only this Code Stop all M320 from evry weapon on my server? On Kill;if %wk% contains M320_HE;Say Killed %p%, No M320 HE/LVG on this server;Kill 100 On Kill;if %wk% contains M320_LVG;Say Killed %p%, No M320 HE/LVG on this server;Kill 100 THX With this code they dont got a kill in there STATS, only on field they die.Is it possible that they get a kill in there Stats? Other Question Is it possible to make only one sniper or dmr due a Squad? Squad Alpha 1 Sniper or 1 DMR Squad Bravo 1 Sniper or 1 DMR THX ppl Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 23, 2014 Share Posted January 23, 2014 Originally Posted by ixnorp*: With this code they dont got a kill in there STATS, only on field they die. Is it possible that they get a kill in there Stats? Other Question Is it possible to make only one sniper or dmr due a Squad? Squad Alpha 1 Sniper or 1 DMR Squad Bravo 1 Sniper or 1 DMR THX ppl what you mean kill in their stats___ that code only kills player that killed other players with m320 HE and LVG. Doesn't stop the other m320 like smoke/flash/dart And there are already sniper & dmr limit files in the proconrulz zip. Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 23, 2014 Share Posted January 23, 2014 Originally Posted by chesterfield*: The code is nice and it works, but ppl dont get a death calculated, if they killed one with m320 HE/LVG. I know the limits, but i see no limit with only 1 sniper or dmr du a squad Squad Alpha 1 Sniper or 1 DMR Squad Bravo 1 Sniper or 1 DMR THX and sorry for my bad english, i hope you understand Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 23, 2014 Share Posted January 23, 2014 Originally Posted by ixnorp*: The code is nice and it works, but ppl dont get a death calculated, if they killed one with m320 HE/LVG. I know the limits, but i see no limit with only 1 sniper or dmr du a squad Squad Alpha 1 Sniper or 1 DMR Squad Bravo 1 Sniper or 1 DMR THX and sorry for my bad english, i hope you understand I think it is because it is an admin kill, that is why there is no deathcount. Not sure about the sniper/dmr limits, didn't use it before, only know it is included in the zip. Sorry. Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 23, 2014 Share Posted January 23, 2014 Originally Posted by LjMjollnir*: With this code they dont got a kill in there STATS, only on field they die.That would be abused by too many people to ruin peoples KD's... there is a reason Dice wont allow that Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 24, 2014 Share Posted January 24, 2014 Originally Posted by chesterfield*: That would be abused by too many people to ruin peoples KD's... there is a reason Dice wont allow that Okay thx Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 24, 2014 Share Posted January 24, 2014 Originally Posted by Rodex*: I created a punish rule that includes: * punish for payback * forgive if you say sorry/sry (3 times then auto punish on the 4:th "sry") (count is variable, set the count to what you want) * If you !punish > 5 times you get punished After all, your in a team..... (optional, set a variable and you'll disable this) Anyone up for testing it? search for SKK on servers, when it's working I'll share it here of course! (It's a pistol/knife only HC TDM server) I can't test myself now, I'm at work Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 24, 2014 Share Posted January 24, 2014 Originally Posted by virusdead*: I have wished that this module does not ban players for concealment but temperament ban On Kill;map mp_prison;Damage Shotgun PlayerCount 2;Say Banned %p% for using Shotguns;Ban No shotguns on this server!!! PlayerCount 1;Say %p% :::::::::Kicked from server for using Shotguns!!;Kick Warning kick this time.. no shotguns will be a BAN next time. Say %p% :::::::::: killed for using Shotguns;Kill 100 Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 24, 2014 Share Posted January 24, 2014 Originally Posted by ixnorp*: I have wished that this module does not ban players for concealment but temperament ban On Kill;map mp_prison;Damage Shotgun PlayerCount 2;Say Banned %p% for using Shotguns;Ban No shotguns on this server!!! PlayerCount 1;Say %p% :::::::::Kicked from server for using Shotguns!!;Kick Warning kick this time.. no shotguns will be a BAN next time. Say %p% :::::::::: killed for using Shotguns;Kill 100 On Kill;map mp_prison;Damage Shotgun PlayerCount 2;Say Banned %p% for using Shotguns;TempBan (seconds) No shotguns on this server!!! PlayerCount 1;Say %p% :::::::::Kicked from server for using Shotguns!!;Kick Warning kick this time.. no shotguns will be a BAN next time. Say %p% :::::::::: killed for using Shotguns;Kill 100 Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 24, 2014 Share Posted January 24, 2014 Originally Posted by virusdead*: On Kill;map mp_prison;Damage Shotgun PlayerCount 2;Say Banned %p% for using Shotguns;TempBan900 (seconds) No shotguns on this server!!! PlayerCount 1;Say %p% :::::::::Kicked from server for using Shotguns!!;Kick Warning kick this time.. no shotguns will be a BAN next time. Say %p% :::::::::: killed for using Shotguns;Kill 100 like that Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 24, 2014 Share Posted January 24, 2014 Originally Posted by ixnorp*: nono.. like this. PlayerCount 2;Say Banned %p% for using Shotguns;TempBan 900 No shotguns on this server!!! Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 24, 2014 Share Posted January 24, 2014 Originally Posted by virusdead*: nono.. like this. PlayerCount 2;Say Banned %p% for using Shotguns;TempBan 900 No shotguns on this server!!! Ok thx Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted January 24, 2014 Share Posted January 24, 2014 Originally Posted by Velocus_NL*: On Kill;Weapon Death;..... will work. you can do something like this, this will tell the whole server player is using mav to kill. On Kill;Weapon Death;kill;Say %p% got killed for killing with mav.... How about this? On Kill;Damage MAV;PlayerCount 5;Log %p% banned for ;Ban %p% MAV On Kill;PlayerCount 3;Log %p% kicked for MAV;Kick %p% using MAV On Kill;Damage MAV;PlayerSay %p% no MAV allowed;Kill 100 Maybe its not important but i run a sniper & knives only server. So they use mav to destroy spawnbeak. Many thanks again. Quote * Restored post. It could be that the author is no longer active. Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.