ImportBot Posted September 22, 2013 Share Posted September 22, 2013 Originally Posted by Fusion-Effect*: Hi i have been looking at a way to get a spambot working in the plugin and i cant get any idea on how to start i really hope you can help me All Of this in a time loop or something a like #. # Spambot. On join;Say Yell ------- [GC] Clan Info ------- Yell [1] HI AND WELCOME TO CLAN =Gc= SERVERS HAVE FUN !! Yell [2] VISIT OUR OTHER SERVERS ALSO Yell [3] Take a Look @ Our Hp WWW.CLAN-GC.DK Yell [4] Visit Our Teamspeak = 46.253.196.135:10027 Yell [5] Rules On This Server TYPE !rules In Chat to See Them Yell [6] Vi soger medlemmer !! Yell [7] When BF4 IS Out Search For Gc Servers And Add Them To Favorites Yell [8] We Searching For Members @Moment clan-gc.dk For Info Yell [9] =GC= Soger Medlemmer Se clan-gc.dk For Info Yell [10] Welcome In To =Gc= Teamspeak 46.253.196.135:10027 Yell [11] Add The Server To Your Favorite Yell [12] Use Of Abusive Or Offending Language In The Chat = KICK Yell [13] Please Feel Free to join =Gc= Teamspeak 46.253.196.135:10027 Yell [14] Visit www.clan-gc.dk Yell [15] We Currently Searching For Members Yell [16] ONLY DANISH,SWEDISH,ENGLISH,NORWEIGAN IN CHAT !!!!!!!!!! Yell [17] TYPE !rules In Chat To See Them. Did U Got Banned? Apeal it on www.clan-gc.dk or join our TS ! Yell [18] SERVER IS CHEATPROTECTED BY GGC-Stream.NET Yell [19] We Got Live Cheatdetector Program While Ur Playing Scanning Ur Profile Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 22, 2013 Share Posted September 22, 2013 Originally Posted by ty_ger07*: Hi i have been looking at a way to get a spambot working in the plugin and i cant get any idea on how to start i really hope you can help me All Of this in a time loop or something a like #. # Spambot. On join;Say Yell ------- [GC] Clan Info ------- Yell [1] HI AND WELCOME TO CLAN =Gc= SERVERS HAVE FUN !! Yell [2] VISIT OUR OTHER SERVERS ALSO Yell [3] Take a Look @ Our Hp WWW.CLAN-GC.DK Yell [4] Visit Our Teamspeak = 46.253.196.135:10027 Yell [5] Rules On This Server TYPE !rules In Chat to See Them Yell [6] Vi soger medlemmer !! Yell [7] When BF4 IS Out Search For Gc Servers And Add Them To Favorites Yell [8] We Searching For Members @Moment clan-gc.dk For Info Yell [9] =GC= Soger Medlemmer Se clan-gc.dk For Info Yell [10] Welcome In To =Gc= Teamspeak 46.253.196.135:10027 Yell [11] Add The Server To Your Favorite Yell [12] Use Of Abusive Or Offending Language In The Chat = KICK Yell [13] Please Feel Free to join =Gc= Teamspeak 46.253.196.135:10027 Yell [14] Visit www.clan-gc.dk Yell [15] We Currently Searching For Members Yell [16] ONLY DANISH,SWEDISH,ENGLISH,NORWEIGAN IN CHAT !!!!!!!!!! Yell [17] TYPE !rules In Chat To See Them. Did U Got Banned? Apeal it on www.clan-gc.dk or join our TS ! Yell [18] SERVER IS CHEATPROTECTED BY GGC-Stream.NET Yell [19] We Got Live Cheatdetector Program While Ur Playing Scanning Ur Profile One error: On join;Say Yell ------- [GC] Clan Info ------- ... Another problem is that the message will be displayed before the player is even in the game. 'On join' is when they connect to the server in Battlelog. They aren't actually in the game until after their game loads. You would need to wait until their first spawn instead since Yelled commands only appear once a player is alive. Regardless... The problem is that the player will only see the very last line. The code is executed very fast and the earlier lines will be quickly replaced with the last line. You cannot do this using PRoConRulz. Instead, you could schedule a punkbuster task on the game server directly (in the pbsv.cfg file) to display the list of messages in the server chat box every so many number of seconds (every 10 or 20 minutes for example) and separate each task by a certain number of seconds. The game server can also be used to easily display a single line of yelled text visible to only each joining player. You would have to consolidate your 20 lines of text into 1 line. Beyond that, you will need a plugin to do this and the plugin will have to be something other than PRoConRulz since PRoConRulz does not handle task timing. Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 22, 2013 Share Posted September 22, 2013 Originally Posted by tarreltje*: Try this ##### Yell Messages ##### On Round;Set %server_yell% 0 On Kill;Incr %server_yell% On Kill;If %server_yell% == 20;Yell 10 HI AND WELCOME TO CLAN =Gc= SERVERS HAVE FUN !! On Kill;If %server_yell% == 40;Yell 10 HI AND WELCOME TO CLAN =Gc= SERVERS HAVE FUN !! On Kill;If %server_yell% == 60;Yell 10 VISIT OUR OTHER SERVERS ALSO On Kill;If %server_yell% == 80;Yell 10 Take a Look @ Our Hp WWW.CLAN-GC.DK On Kill;If %server_yell% == 100;Yell 10 Visit Our Teamspeak = 46.253.196.135:10027 On Kill;If %server_yell% == 120;Yell 10 Rules On This Server TYPE !rules In Chat to See Them On Kill;If %server_yell% == 140;Yell 10 Vi soger medlemmer !! On Kill;If %server_yell% == 160;Yell 10 When BF4 IS Out Search For Gc Servers And Add Them To Favorites On Kill;If %server_yell% == 180;Yell 10 We Searching For Members @Moment clan-gc.dk For Info On Kill;If %server_yell% == 200;Yell 10 =GC= Soger Medlemmer Se clan-gc.dk For Info On Kill;If %server_yell% == 220;Yell 10 Welcome In To =Gc= Teamspeak 46.253.196.135:10027 On Kill;If %server_yell% == 240;Yell 10 Add The Server To Your Favorite On Kill;If %server_yell% == 260;Yell 10 Use Of Abusive Or Offending Language In The Chat = KICK On Kill;If %server_yell% == 280;Yell 10 Please Feel Free to join =Gc= Teamspeak 46.253.196.135:10027 On Kill;If %server_yell% == 300;Yell 10 Visit www.clan-gc.dk On Kill;If %server_yell% == 320;Yell 10 We Currently Searching For Members On Kill;If %server_yell% == 340;Yell 10 ONLY DANISH,SWEDISH,ENGLISH,NORWEIGAN IN CHAT !!!!!!!!!! On Kill;If %server_yell% == 360;Yell 10 TYPE !rules In Chat To See Them. Did U Got Banned? Apeal it on www.clan-gc.dk or join our TS ! On Kill;If %server_yell% == 380;Yell 10 SERVER IS CHEATPROTECTED BY GGC-Stream.NET On Kill;If %server_yell% == 400;Yell 10 We Got Live Cheatdetector Program While Ur Playing Scanning Ur Profile havent tested it. I will give a yell on a sertain amount of kills, like tyger said we cant use time in procon!! Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 22, 2013 Share Posted September 22, 2013 Originally Posted by Fusion-Effect*: what if i trigger the event on round or by setting a log that says the %hms% and then calculate from that the time or somthing i found this in the pdf "Yell " [] : Yell with N seconds on-screen time (default for N in plugin settings) "On Round": %m% contains the map name, %mm% the map mode Set Incr Decr If but im not the best coder out ther and my brain is slow cant i use this in some way to script a time line or is it too much i was hoping to make proconrulz my only plugin and i only need 3 more plugins integrated in it then i got it all The plugins are latensy manger and spambot and a balancer of teams and if any one have codes for any off the 3 pleas shear PS. sry for my ENG. Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 22, 2013 Share Posted September 22, 2013 Originally Posted by Fusion-Effect*: Try this ##### Yell Messages ##### On Round;Set %server_yell% 0 On Kill;Incr %server_yell% On Kill;If %server_yell% == 20;Yell 10 HI AND WELCOME TO CLAN =Gc= SERVERS HAVE FUN !! On Kill;If %server_yell% == 40;Yell 10 HI AND WELCOME TO CLAN =Gc= SERVERS HAVE FUN !! On Kill;If %server_yell% == 60;Yell 10 VISIT OUR OTHER SERVERS ALSO On Kill;If %server_yell% == 80;Yell 10 Take a Look @ Our Hp WWW.CLAN-GC.DK On Kill;If %server_yell% == 100;Yell 10 Visit Our Teamspeak = 46.253.196.135:10027 On Kill;If %server_yell% == 120;Yell 10 Rules On This Server TYPE !rules In Chat to See Them On Kill;If %server_yell% == 140;Yell 10 Vi soger medlemmer !! On Kill;If %server_yell% == 160;Yell 10 When BF4 IS Out Search For Gc Servers And Add Them To Favorites On Kill;If %server_yell% == 180;Yell 10 We Searching For Members @Moment clan-gc.dk For Info On Kill;If %server_yell% == 200;Yell 10 =GC= Soger Medlemmer Se clan-gc.dk For Info On Kill;If %server_yell% == 220;Yell 10 Welcome In To =Gc= Teamspeak 46.253.196.135:10027 On Kill;If %server_yell% == 240;Yell 10 Add The Server To Your Favorite On Kill;If %server_yell% == 260;Yell 10 Use Of Abusive Or Offending Language In The Chat = KICK On Kill;If %server_yell% == 280;Yell 10 Please Feel Free to join =Gc= Teamspeak 46.253.196.135:10027 On Kill;If %server_yell% == 300;Yell 10 Visit www.clan-gc.dk On Kill;If %server_yell% == 320;Yell 10 We Currently Searching For Members On Kill;If %server_yell% == 340;Yell 10 ONLY DANISH,SWEDISH,ENGLISH,NORWEIGAN IN CHAT !!!!!!!!!! On Kill;If %server_yell% == 360;Yell 10 TYPE !rules In Chat To See Them. Did U Got Banned? Apeal it on www.clan-gc.dk or join our TS ! On Kill;If %server_yell% == 380;Yell 10 SERVER IS CHEATPROTECTED BY GGC-Stream.NET On Kill;If %server_yell% == 400;Yell 10 We Got Live Cheatdetector Program While Ur Playing Scanning Ur Profile havent tested it. I will give a yell on a sertain amount of kills, like tyger said we cant use time in procon!! ill try this one and ill be back whit reply if it works or not Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 22, 2013 Share Posted September 22, 2013 Originally Posted by tarreltje*: I myself use somethink similar on kill count to yell every 45 kills on the map canals , that crane camping is forbidden, and on the map kharg roof camping. Works like a charm. Same for should be posible to yell a new line every x kills. Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 23, 2013 Share Posted September 23, 2013 Originally Posted by Fusion-Effect*: I myself use somethink similar on kill count to yell every 45 kills on the map canals , that crane camping is forbidden, and on the map kharg roof camping. Works like a charm. Same for should be posible to yell a new line every x kills. ##### Spam Messages #####On Round;Set %server_yell% 0 On Kill;Incr %server_yell% On Kill;If %server_yell% == 10;Yell HI AND WELCOME TO CLAN =Gc= SERVERS Yell Take a Look @ Our Hp WWW.CLAN-GC.DK Yell Visit Our Teamspeak = 46.253.196.135:10027 Yell Rules On This Server TYPE !rules In Chat to See Them Yell When BF4 IS Out Search For Gc Servers And Add Them To Favorites Yell We Are Searching For Members @Moment clan-gc.dk For Info Yell =GC= Soger Medlemmer Se clan-gc.dk For Info Yell Add The Servers To Your Favorite Yell Please Feel Free to join =Gc= Teamspeak 46.253.196.135:10027 Yell Visit www.clan-gc.dk Yell We Currently Searching For Members Yell ONLY DANISH,SWEDISH,ENGLISH,NORWEIGAN IN CHAT !!!!!!!!!! Yell Did U Get Banned? Apeal it on www.clan-gc.dk or join our TS ! Yell SERVER IS CHEATPROTECTED BY GGC-Stream.NET Yell We Got Live Cheatdetectors While Your Playing Scanning All Profiles Yell 10 Visit www.clan-gc.dk On Kill;If %server_yell% == 200;Yell 10 HI AND WELCOME TO CLAN =Gc= SERVERS Yell Take a Look @ Our Hp WWW.CLAN-GC.DK Yell Visit Our Teamspeak = 46.253.196.135:10027 Yell Rules On This Server TYPE !rules In Chat to See Them Yell When BF4 IS Out Search For Gc Servers And Add Them To Favorites Yell We Are Searching For Members @Moment clan-gc.dk For Info Yell =GC= Soger Medlemmer Se clan-gc.dk For Info Yell Add The Servers To Your Favorite Yell Please Feel Free to join =Gc= Teamspeak 46.253.196.135:10027 Yell Visit www.clan-gc.dk Yell We Currently Searching For Members Yell ONLY DANISH,SWEDISH,ENGLISH,NORWEIGAN IN CHAT !!!!!!!!!! Yell Did U Get Banned? Apeal it on www.clan-gc.dk or join our TS ! Yell SERVER IS CHEATPROTECTED BY GGC-Stream.NET Yell We Got Live Cheatdetectors While Your Playing Scanning All Profiles This is what i have now and it works but how do i make it so it will incress auto EXAMPLE: ##### Spam Messages ##### On Round;Set %server_yell% 0 On Kill;Incr %server_yell% 100 On Kill;If %server_yell% => 10;Yell 10 HI AND WELCOME TO CLAN =Gc= SERVERS Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 23, 2013 Share Posted September 23, 2013 Originally Posted by tarreltje*: I will look into that tomorrow, bedtime for me now! Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 23, 2013 Share Posted September 23, 2013 Originally Posted by Fusion-Effect*: okay thx tarreltje nice to have some help Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 23, 2013 Share Posted September 23, 2013 Originally Posted by ty_ger07*: ##### Spam Messages ##### On Round;Set %server_yell% 0 On Kill;Incr %server_yell% On Kill;If %server_yell% == 10;Yell HI AND WELCOME TO CLAN =Gc= SERVERS Yell Take a Look @ Our Hp WWW.CLAN-GC.DK Yell Visit Our Teamspeak = 46.253.196.135:10027 Yell Rules On This Server TYPE !rules In Chat to See Them Yell When BF4 IS Out Search For Gc Servers And Add Them To Favorites Yell We Are Searching For Members @Moment clan-gc.dk For Info Yell =GC= Soger Medlemmer Se clan-gc.dk For Info Yell Add The Servers To Your Favorite Yell Please Feel Free to join =Gc= Teamspeak 46.253.196.135:10027 Yell Visit www.clan-gc.dk Yell We Currently Searching For Members Yell ONLY DANISH,SWEDISH,ENGLISH,NORWEIGAN IN CHAT !!!!!!!!!! Yell Did U Get Banned? Apeal it on www.clan-gc.dk or join our TS ! Yell SERVER IS CHEATPROTECTED BY GGC-Stream.NET Yell We Got Live Cheatdetectors While Your Playing Scanning All Profiles Yell 10 Visit www.clan-gc.dk On Kill;If %server_yell% == 200;Yell 10 HI AND WELCOME TO CLAN =Gc= SERVERS Yell Take a Look @ Our Hp WWW.CLAN-GC.DK Yell Visit Our Teamspeak = 46.253.196.135:10027 Yell Rules On This Server TYPE !rules In Chat to See Them Yell When BF4 IS Out Search For Gc Servers And Add Them To Favorites Yell We Are Searching For Members @Moment clan-gc.dk For Info Yell =GC= Soger Medlemmer Se clan-gc.dk For Info Yell Add The Servers To Your Favorite Yell Please Feel Free to join =Gc= Teamspeak 46.253.196.135:10027 Yell Visit www.clan-gc.dk Yell We Currently Searching For Members Yell ONLY DANISH,SWEDISH,ENGLISH,NORWEIGAN IN CHAT !!!!!!!!!! Yell Did U Get Banned? Apeal it on www.clan-gc.dk or join our TS ! Yell SERVER IS CHEATPROTECTED BY GGC-Stream.NET Yell We Got Live Cheatdetectors While Your Playing Scanning All Profiles That will not work. As previously stated, the player will only see the very last line of yelled text because all the others will be displayed and overwritten by the lines of text following them. You need to make a separate trigger for each line of text to be displayed on a different event. You would have to do (for example): On Kill;If %server_yell% == 10;Yell HI AND WELCOME TO CLAN =Gc= SERVERS On Kill;If %server_yell% == 20;Yell Take a Look @ Our Hp WWW.CLAN-GC.DK On Kill;If %server_yell% == 30;Yell Visit Our Teamspeak = 46.253.196.135:10027 On Kill;If %server_yell% == 40;Yell Rules On This Server TYPE !rules In Chat to See Them ... (to display a different message after each 10 [for example] kills) Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 23, 2013 Share Posted September 23, 2013 Originally Posted by Fusion-Effect*: That will not work. As previously stated, the player will only see the very last line of yelled text because all the others will be displayed and overwritten by the lines of text following them. You need to make a separate trigger for each line of text to be displayed on a different event. You would have to do (for example): On Kill;If %server_yell% == 10;Yell HI AND WELCOME TO CLAN =Gc= SERVERS On Kill;If %server_yell% == 20;Yell Take a Look @ Our Hp WWW.CLAN-GC.DK On Kill;If %server_yell% == 30;Yell Visit Our Teamspeak = 46.253.196.135:10027 On Kill;If %server_yell% == 40;Yell Rules On This Server TYPE !rules In Chat to See Them ... (to display a different message after each 10 [for example] kills) ##### Spam Messages #####On Round;Set %server_yell% 0 On Kill;Incr %server_yell% On Kill;If %server_yell% == 10;Yell HI AND WELCOME TO CLAN =Gc= SERVERS Yell Take a Look @ Our Hp WWW.CLAN-GC.DK Yell Visit Our Teamspeak = 46.253.196.135:10027 Yell Rules On This Server TYPE !rules In Chat to See Them Yell When BF4 IS Out Search For Gc Servers And Add Them To Favorites Yell We Are Searching For Members @Moment clan-gc.dk For Info Yell =GC= Soger Medlemmer Se clan-gc.dk For Info Yell Add The Servers To Your Favorite Yell Please Feel Free to join =Gc= Teamspeak 46.253.196.135:10027 Yell We Currently Searching For Members Yell ONLY DANISH,SWEDISH,ENGLISH,NORWEIGAN IN CHAT !!!!!!!!!! Yell Did U Get Banned? Apeal it on www.clan-gc.dk or join our TS ! Yell SERVER IS CHEATPROTECTED BY GGC-Stream.NET Yell We Got Live Cheatdetectors While Your Playing Scanning All Profiles Yell 10 Visit www.clan-gc.dk On Kill;If %server_yell% == 100;Yell HI AND WELCOME TO CLAN =Gc= SERVERS Yell Take a Look @ Our Hp WWW.CLAN-GC.DK Yell Visit Our Teamspeak = 46.253.196.135:10027 Yell Rules On This Server TYPE !rules In Chat to See Them Yell When BF4 IS Out Search For Gc Servers And Add Them To Favorites Yell We Are Searching For Members @Moment clan-gc.dk For Info Yell =GC= Soger Medlemmer Se clan-gc.dk For Info Yell Add The Servers To Your Favorite Yell Please Feel Free to join =Gc= Teamspeak 46.253.196.135:10027 Yell We Currently Searching For Members Yell ONLY DANISH,SWEDISH,ENGLISH,NORWEIGAN IN CHAT !!!!!!!!!! Yell Did U Get Banned? Apeal it on www.clan-gc.dk or join our TS ! Yell SERVER IS CHEATPROTECTED BY GGC-Stream.NET Yell We Got Live Cheatdetectors While Your Playing Scanning All Profiles Yell 10 Visit www.clan-gc.dk So i know this is working it comes fast but it works Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 23, 2013 Share Posted September 23, 2013 Originally Posted by tarreltje*: Do you not read what tyger and i are trying to tell you? The rules i gave you are different you have posted now....tyger also gave you advice why it wont work¡!!!!!!!!! Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 23, 2013 Share Posted September 23, 2013 Originally Posted by ty_ger07*: ##### Spam Messages ##### On Round;Set %server_yell% 0 On Kill;Incr %server_yell% On Kill;If %server_yell% == 10;Yell HI AND WELCOME TO CLAN =Gc= SERVERS Yell Take a Look @ Our Hp WWW.CLAN-GC.DK Yell Visit Our Teamspeak = 46.253.196.135:10027 Yell Rules On This Server TYPE !rules In Chat to See Them Yell When BF4 IS Out Search For Gc Servers And Add Them To Favorites Yell We Are Searching For Members @Moment clan-gc.dk For Info Yell =GC= Soger Medlemmer Se clan-gc.dk For Info Yell Add The Servers To Your Favorite Yell Please Feel Free to join =Gc= Teamspeak 46.253.196.135:10027 Yell We Currently Searching For Members Yell ONLY DANISH,SWEDISH,ENGLISH,NORWEIGAN IN CHAT !!!!!!!!!! Yell Did U Get Banned? Apeal it on www.clan-gc.dk or join our TS ! Yell SERVER IS CHEATPROTECTED BY GGC-Stream.NET Yell We Got Live Cheatdetectors While Your Playing Scanning All Profiles Yell 10 Visit www.clan-gc.dk On Kill;If %server_yell% == 100;Yell HI AND WELCOME TO CLAN =Gc= SERVERS Yell Take a Look @ Our Hp WWW.CLAN-GC.DK Yell Visit Our Teamspeak = 46.253.196.135:10027 Yell Rules On This Server TYPE !rules In Chat to See Them Yell When BF4 IS Out Search For Gc Servers And Add Them To Favorites Yell We Are Searching For Members @Moment clan-gc.dk For Info Yell =GC= Soger Medlemmer Se clan-gc.dk For Info Yell Add The Servers To Your Favorite Yell Please Feel Free to join =Gc= Teamspeak 46.253.196.135:10027 Yell We Currently Searching For Members Yell ONLY DANISH,SWEDISH,ENGLISH,NORWEIGAN IN CHAT !!!!!!!!!! Yell Did U Get Banned? Apeal it on www.clan-gc.dk or join our TS ! Yell SERVER IS CHEATPROTECTED BY GGC-Stream.NET Yell We Got Live Cheatdetectors While Your Playing Scanning All Profiles Yell 10 Visit www.clan-gc.dk So i know this is working it comes fast but it works If your goal is to make it impossible for players to read anything but the last line of text because the others are displayed and disappear too fast to read, then yes, I guess it works fine. Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 23, 2013 Share Posted September 23, 2013 Originally Posted by Fusion-Effect*: Do you not read what tyger and i are trying to tell you? The rules i gave you are different you have posted now....tyger also gave you advice why it wont work¡!!!!!!!!!i understand what you are saying but i whant it to go true all the rules and then do it agin after a 100 kills and then agin after 200 kills and therfor i dont need a txt for rvery 20 kills and that is waht i made in the one i put up and it is working But if i could make it så i got the txt only one time and it will increas the kill rate by it self that is what im loking for but it is working the code you gave me tarreltje and i just modifiede it Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 23, 2013 Share Posted September 23, 2013 Originally Posted by Fusion-Effect*: If your goal is to make it impossible for players to read anything but the last line of text because the others are displayed and disappear too fast to read, then yes, I guess it works fine.It is working and it is easy to read but yes it could be slower but the speed off it is okay at the moment Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 24, 2013 Share Posted September 24, 2013 Originally Posted by ty_ger07*: It is working and it is easy to read but yes it could be slower but the speed off it is okay at the moment Do you have a battlelog link to the server? I would like to see the result. Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 24, 2013 Share Posted September 24, 2013 Originally Posted by Fusion-Effect*: Ingame Admin System so your admins dont need to tab out off the game to remember the commands #. # Admin only Ingame Menu Shown in Chat. On Say;Admin;Text !cmd Say Her They Are %p% Say [1] !yell !say = Screen or Chat Say [2] !kick !kill = Kick or Kill Say [3] !tban !tb24 !ban = 5minban/Dayban/Ban Player Say [4] !us !ru = Move a player to team Log Admin %p% Commandscheck [%hms%] #. # Admin Commands On Say;Admin;Text !yell;Yell %targettext% On Say;Admin;Text !say;Say %targettext% On Say;Admin;Text !kill;TargetPlayer;PlayerSay %t% SLAYED;TargetAction Kill 100 On Say;Admin;Text !kick;TargetPlayer;PlayerSay %t% KICKED;TargetAction Kick %targettext% On Say;Admin;Text !ban;TargetPlayer;PlayerSay %t% BANNED;TargetAction Ban %p% %targettext% %t% - %hms% %ymd% On Say;Admin;Text !tban;TargetPlayer;PlayerSay %t% T-BANNED;TargetAction TempBan 300 %p% %targettext% %t% - %hms% %ymd% On Say;Admin;Text !tb24;TargetPlayer;PlayerSay %t% T-BANNED;TargetAction TempBan 86400 %p% %targettext% %t% - %hms% %ymd% On Say;Admin;Text !us;TargetPlayer;TargetAction PlayerSay You are moved by Admin;Exec admin.movePlayer %t% 1 0 1 On Say;Admin;Text !ru;TargetPlayer;TargetAction PlayerSay You are moved by Admin;Exec admin.movePlayer %t% 2 0 1 On Say;Text !yes;TargetConfirm Just remember the ingame menu will go away and if you need more commands make a new menu And you can make it private just by putting Playersay Instead of Say Example: 1.menu #. # Admin only Ingame Menu Shown in Chat. On Say;Admin;Text !cmd Say Her They Are %p% Say [1] !yell !say = Screen or Chat Say [2] !kick !kill = Kick or Kill Say [3] !tban !tb24 !ban = 5minban/Dayban/Ban Player Say [4] !us !ru = Move a player to team Log Admin %p% Commandscheck [%hms%] 2.Menu #. # Admin only Ingame Menu Shown in Chat. On Say;Admin;Text !cmd1 Say Her They Are %p% Say [1] !yell !say = Screen or Chat Say [2] !kick !kill = Kick or Kill Say [3] !tban !tb24 !ban = 5minban/Dayban/Ban Player Say [4] !us !ru = Move a player to team Log Admin %p% Commandscheck [%hms%] Hope you all can use it and make it easy on your Admins on the server I made this whit codes from this forum and the helpers on it and now i just whant to say THX Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 24, 2013 Share Posted September 24, 2013 Originally Posted by Fusion-Effect*: Okay im putting a rule up will it work dont minde the speed of the Yell at this moment but only if it is done correctly ##### Spam Messages ##### On Kill;Incr %server_spam% On Kill;If %server_spam% == 50;Yell HI AND WELCOME TO CLAN =Gc= SERVERS Yell Take a Look @ Our Hp WWW.CLAN-GC.DK Yell Visit Our Teamspeak = 46.253.196.135:10027 Yell Rules On This Server TYPE !rules In Chat to See Them Yell When BF4 IS Out Search For Gc Servers And Add Them To Favorites Yell We Are Searching For Members @Moment clan-gc.dk For Info Yell =GC= Soger Medlemmer Se clan-gc.dk For Info Yell Add The Servers To Your Favorite Yell Please Feel Free to join =Gc= Teamspeak 46.253.196.135:10027 Yell We Currently Searching For Members Yell ONLY DANISH,SWEDISH,ENGLISH,NORWEIGAN IN CHAT !!!!!!!!!! Yell Did U Get Banned? Apeal it on www.clan-gc.dk or join our TS ! Yell SERVER IS CHEATPROTECTED BY GGC-Stream.NET Yell We Got Live Cheatdetectors While Your Playing Scanning All Profiles Yell Visit www.clan-gc.dk On Kill;If %server_spam% => 51;Set %server_spam% 0 This will make it loop every 50 kills is taht right Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 24, 2013 Share Posted September 24, 2013 (edited) Originally Posted by Fusion-Effect*: ##### Spam Messages ##### On Kill;Incr %server_spam% On Kill;If %server_spam% == 50;Yell HI AND WELCOME TO CLAN =Gc= SERVERS Yell Take a Look @ Our Hp WWW.CLAN-GC.DK Yell Visit Our Teamspeak = 46.253.196.135:10027 Yell Rules On This Server TYPE !rules In Chat to See Them Yell When BF4 IS Out Search For Gc Servers And Add Them To Favorites Yell We Are Searching For Members @Moment clan-gc.dk For Info Yell =GC= Soger Medlemmer Se clan-gc.dk For Info Yell Add The Servers To Your Favorite Yell Please Feel Free to join =Gc= Teamspeak 46.253.196.135:10027 Yell We Currently Searching For Members Yell ONLY DANISH,SWEDISH,ENGLISH,NORWEIGAN IN CHAT !!!!!!!!!! Yell Did U Get Banned__ Apeal it on www.clan-gc.dk or join our TS ! Yell SERVER IS CHEATPROTECTED BY GGC-Stream.NET Yell We Got Live Cheatdetectors While Your Playing Scanning All Profiles Yell Visit www.clan-gc.dk On Kill;If %server_spam% => 51;Set %server_spam% 0 The only thing i need now is to control the time it is shown on the screen per txtBut this will work as a spambot and it is testede on full servers hope you like it and will use it Edited August 7, 2019 by maxdralle Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 24, 2013 Share Posted September 24, 2013 Originally Posted by ty_ger07*: The only thing i need now is to control the time it is shown on the screen per txtAs already stated multiple times, it is not possible to control the duration of yelled text when you implement it the way you are implementing it because the multiple lines are being executed one after the other as fast as the layer server is capable of executing those commands. The only way to space them out is have them fire off on different triggers. I am still waiting for a link to your server so I can view the results for myself. Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 25, 2013 Share Posted September 25, 2013 Originally Posted by Fusion-Effect*: As already stated multiple times, it is not possible to control the duration of yelled text when you implement it the way you are implementing it because the multiple lines are being executed one after the other as fast as the layer server is capable of executing those commands. The only way to space them out is have them fire off on different triggers. I am still waiting for a link to your server so I can view the results for myself. http://battlelog.battlefield.com/bf3...c-dk-server-2/AND http://battlelog.battlefield.com/bf3...c-dk-server-1/ Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted October 11, 2013 Share Posted October 11, 2013 Originally Posted by VictorHUN*: bc2 Proconrulz plugin doesnt work anymore. somebody can give a working weapon limiter plugin to latest procon? Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted October 16, 2013 Share Posted October 16, 2013 Originally Posted by Slayer*: Is there a rule or plugin where you can turn off types of vehicles in a server, lets say you want the FireStorm map without planes and attack choppers and allow all other vehicles, is there a way of doing this with a plugin without going full on infantry mode. Had a look through this thread with search and can only seem to find reply's that don't really fit what I'm after, if what I'm asking can even be done at all. Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted October 16, 2013 Share Posted October 16, 2013 Originally Posted by EBassie*: if what I'm asking can even be done at all.It can't be done. Sent from my GT-I9505 using Tapatalk Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted October 16, 2013 Share Posted October 16, 2013 Originally Posted by Slayer*: It can't be done.Thanks Ebassie, sort of thought that was the case but figured I'd ask anyway. Looks like it will be just infantry mode then and smaller slots to get what players are after, they are so sick and tired of planes and choppers ruining the fun of the whole server with there unlimited ammo BS and being able to see clear across the maps. Was after a sort of BF3 Armoured Fury mode without choppers and planes but only needing normal BF3 to play it, oh well it sounded awesome at the time. Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted October 21, 2013 Share Posted October 21, 2013 Originally Posted by tarreltje*: Try removing this rule: On Spawn;Admin;ServerFirst;Set %server_admins% %p%;End And see what happens Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted October 23, 2013 Share Posted October 23, 2013 Originally Posted by Brolla92*: Hi, I have a problem with the code for weapon limits On Kill;MapMode TeamDeathMatch0;MapMode SquadDeathMatch0;Damage Shotgun;Damage ProjectileExplosive;Weapon M417;Weapon M39;Weapon Mk11;Weapon QBU-88;Weapon SKS;Weapon SVD;Weapon Weapons/Gadgets/C4/C4;Weapon Weapons/Gadgets/Claymore/Claymore;PlayerCount 5;Log %p% banned for %w%;TempBan 600 %p% %c% use On Kill;MapMode TeamDeathMatch0;MapMode SquadDeathMatch0;Damage Shotgun;Damage ProjectileExplosive;Weapon M417;Weapon M39;Weapon Mk11;Weapon QBU-88;Weapon SKS;Weapon SVD;Weapon Weapons/Gadgets/C4/C4;Weapon Weapons/Gadgets/Claymore/Claymore;PlayerCount 2;Log %p% kicked for %w%;Kick %p% %c% use On Kill;MapMode TeamDeathMatch0;MapMode SquadDeathMatch0;Damage Shotgun;Damage ProjectileExplosive;Weapon M417;Weapon M39;Weapon Mk11;Weapon QBU-88;Weapon SKS;Weapon SVD;Weapon Weapons/Gadgets/C4/C4;Weapon Weapons/Gadgets/Claymore/Claymore;PlayerSay %p% no %w%, warning %c%/3;Kill 100 I want limits c4 claymore rpg m320 and semiauto sniper Can somone help me? Thanks Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted October 24, 2013 Share Posted October 24, 2013 Originally Posted by ty_ger07*: ; means 'and' in the condition list. You have multiple weapons and multiple map modes listed. You can't play one map mode and another map mode at the same time and you can't kill with a shotgun and a grenade at the same time. Your rules obviously won't work. Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted October 24, 2013 Share Posted October 24, 2013 Originally Posted by Brolla92*: But why on the first post the rule is like this? On Kill;Not Damage SniperRifle;Not Damage Handgun;PlayerSay %p% snipers/pistols only;Kill 100 Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted October 25, 2013 Share Posted October 25, 2013 Originally Posted by ty_ger07*: But why on the first post the rule is like this? On Kill;Not Damage SniperRifle;Not Damage Handgun;PlayerSay %p% snipers/pistols only;Kill 100 That's perfectly fine. The weapon is NOT x AND it is also NOT y. That's fine. But you can't say that it IS x AND that it IS y when the items you are comparing are mutually exclusive. This is the code you provided: On Kill;MapMode TeamDeathMatch0;MapMode SquadDeathMatch0;Damage Shotgun;Damage ProjectileExplosive;Weapon M417;Weapon M39;Weapon Mk11;Weapon QBU-88;Weapon SKS;Weapon SVD;Weapon Weapons/Gadgets/C4/C4;Weapon Weapons/Gadgets/Claymore/Claymore;PlayerCount 5;Log %p% banned for %w%;TempBan 600 %p% %c% use On Kill;MapMode TeamDeathMatch0;MapMode SquadDeathMatch0;Damage Shotgun;Damage ProjectileExplosive;Weapon M417;Weapon M39;Weapon Mk11;Weapon QBU-88;Weapon SKS;Weapon SVD;Weapon Weapons/Gadgets/C4/C4;Weapon Weapons/Gadgets/Claymore/Claymore;PlayerCount 2;Log %p% kicked for %w%;Kick %p% %c% use On Kill;MapMode TeamDeathMatch0;MapMode SquadDeathMatch0;Damage Shotgun;Damage ProjectileExplosive;Weapon M417;Weapon M39;Weapon Mk11;Weapon QBU-88;Weapon SKS;Weapon SVD;Weapon Weapons/Gadgets/C4/C4;Weapon Weapons/Gadgets/Claymore/Claymore;PlayerSay %p% no %w%, warning %c%/3;Kill 100 May I suggest... - Use 'DeathMatch' in this case instead of 'TeamDeathMatch0' and 'SquadDeathMatch0' since 'DeathMatch' will cover both as it is a partial match for both names and therefore you don't have to deal with mutual exclusivity issues for that particular issue. - List out weapon names separated by ',' instead of individually listing conditions separated by ';'. In a list of items of the same category, ',' means OR. - Use 'Damage' OR 'Weapon' in this case but not both. Since you are trying to include the various weapons into one rule, it is important that you consider mutual exclusivity issues. It is not possible to have Weapon M320 AND damage Shotgun. I would suggest you try these rules: On Kill;MapMode DeathMatch;Weapon 870MCS,DAO-12,jackhammer,M1014,M26Mass,Siaga20k,SPAS-12,USAS-12,FGM-148,FIM92,M320,RPG-7,SMAW,Weapons/Sa18IGLA/Sa18IGLA,M417,M39,Mk11,QBU-88,SKS,SVD,Weapons/Gadgets/C4/C4,Weapons/Gadgets/Claymore/Claymore;PlayerCount 5;Log %p% banned for %w%;TempBan 600 %p% %c% use On Kill;MapMode DeathMatch;Weapon 870MCS,DAO-12,jackhammer,M1014,M26Mass,Siaga20k,SPAS-12,USAS-12,FGM-148,FIM92,M320,RPG-7,SMAW,Weapons/Sa18IGLA/Sa18IGLA,M417,M39,Mk11,QBU-88,SKS,SVD,Weapons/Gadgets/C4/C4,Weapons/Gadgets/Claymore/Claymore;PlayerCount 2;Log %p% kicked for %w%;Kick %p% %c% use On Kill;MapMode DeathMatch;Weapon 870MCS,DAO-12,jackhammer,M1014,M26Mass,Siaga20k,SPAS-12,USAS-12,FGM-148,FIM92,M320,RPG-7,SMAW,Weapons/Sa18IGLA/Sa18IGLA,M417,M39,Mk11,QBU-88,SKS,SVD,Weapons/Gadgets/C4/C4,Weapons/Gadgets/Claymore/Claymore;PlayerSay %p% no %w%, warning %c%/3;Kill 100 One problem I see is that your weapon restrictions aren't well taught to your players. They might get a warning for using a claymore, then get a warning for using a M417, and then get kicked for using a M320. They won't know all the restricted weapons except for trial and error unless you inform them of the rules. They might stop using the weapon they were using because of the warning but accidentally use another restricted weapon because they don't yet know that it is restricted. Maybe you could say something like "%p% no Shotguns, Semi Auto Snipers, Rockets, Claymores, or C4". Another problem I see is that you are restricting people from using explosives but not restricting people from using a tank. What happens if a player goes into a tank and mows down the opposition? The opposition couldn't fight back because they would be punished for exploding the tank. This is my final suggested rules taking the above issues into consideration: On Kill;MapMode DeathMatch;Weapon 870MCS,DAO-12,jackhammer,M1014,M26Mass,Siaga20k,SPAS-12,USAS-12,FGM-148,FIM92,M320,RPG-7,SMAW,Weapons/Sa18IGLA/Sa18IGLA,M417,M39,Mk11,QBU-88,SKS,SVD,Weapons/Gadgets/C4/C4,Weapons/Gadgets/Claymore/Claymore;PlayerCount 5;Log %p% temp banned for %w%;TempBan 600 %p% %w% use On Kill;MapMode DeathMatch;Weapon 870MCS,DAO-12,jackhammer,M1014,M26Mass,Siaga20k,SPAS-12,USAS-12,FGM-148,FIM92,M320,RPG-7,SMAW,Weapons/Sa18IGLA/Sa18IGLA,M417,M39,Mk11,QBU-88,SKS,SVD,Weapons/Gadgets/C4/C4,Weapons/Gadgets/Claymore/Claymore;PlayerCount 2;Log %p% kicked for %w%;Kick %p% %w% use On Kill;MapMode DeathMatch;Weapon 870MCS,DAO-12,jackhammer,M1014,M26Mass,Siaga20k,SPAS-12,USAS-12,FGM-148,FIM92,M320,RPG-7,SMAW,Weapons/Sa18IGLA/Sa18IGLA,M417,M39,Mk11,QBU-88,SKS,SVD,Weapons/Gadgets/C4/C4,Weapons/Gadgets/Claymore/Claymore;PlayerSay %p% no shotguns, rockets, explosives, or semi auto snipers! %c%/3;Kill 100 On Kill;MapMode DeathMatch;Weapon Death;PlayerCount 5;Log %p% temp banned for %w%;TempBan 600 %p% tank or mortar use On Kill;MapMode DeathMatch;Weapon Death;PlayerCount 2;Log %p% kicked for %w%;Kick %p% tank or mortar use On Kill;MapMode DeathMatch;Weapon Death;PlayerSay %p% no Tank or Mortar! %c%/3;Kill 100 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.