ImportBot Posted June 1, 2016 Share Posted June 1, 2016 Originally Posted by mimimimi*: Hey again, it's Simple and Adaptive Vote System, which works on two of my Hosters, the third one (Gamed!de) sadly does not really support the feature of creating and editing *.ini Files. Code: #Votesystem by [one]################################################# #Workarounds On say;if %percent% == 0; set %percent% % #Player already Voted Yes On Say;Text !vote yes,!vote no; if %ini_PlayersVoted_%p%_voted% == 1 +PlayerSay You already voted Yes! use !resetvote if you changed your mind. #Player already Voted No On Say;Text !vote yes,!vote no; if %ini_PlayersVoted_%p%_voted% == 2 +PlayerSay You already voted No! use !resetvote if you changed your mind. #Reset without vote On Say;Text !resetvote; if %ini_PlayersVoted_%p%_voted% == 0 +PlayerSay You didn't vote yet. #Reset if vote was Yes On Say;Text !resetvote; if %ini_PlayersVoted_%p%_voted% == 1 +set %ini_PlayersVoted_%p%_voted% 0 +Decr %ini_vars_total_votes% +set %ini_vars_option_1% %ini_vars_option_1% - 1 +PlayerSay reset your Vote. you can now vote again. #Reset if vote was No On Say;Text !resetvote; if %ini_PlayersVoted_%p%_voted% == 2 +set %ini_PlayersVoted_%p%_voted% 0 +Decr %ini_vars_total_votes% +set %ini_vars_option_2% %ini_vars_option_2% - 1 +PlayerSay Reset your Vote. You can now vote again. #Vote Option 1 (Yes) On Say;Text !vote yes; if %ini_PlayersVoted_%p%_voted% == 0 +Incr %ini_vars_total_votes% +Set %ini_vars_option_1% %ini_vars_option_1% + 1 +set %ini_PlayersVoted_%p%_voted% 1 +set %percentage1.1% 100 / %ini_vars_total_votes% * %ini_vars_option_1% +set %percentage2.1% 100 / %ini_vars_total_votes% * %ini_vars_option_2% +PlayerSay thanks for your vote! (%percentage1.1%%percent% Yes, %percentage2.1%%percent% No. Total Votes: %ini_vars_total_votes%) #Vote Option 2 (No) On Say;Text !vote no; if %ini_PlayersVoted_%p%_voted% == 0 +Incr %ini_vars_total_votes% +Set %ini_vars_option_2% %ini_vars_option_2% + 1 +set %ini_PlayersVoted_%p%_voted% 2 +set %percentage1.1% 100 / %ini_vars_total_votes% * %ini_vars_option_1% +set %percentage2.1% 100 / %ini_vars_total_votes% * %ini_vars_option_2% +PlayerSay thanks for your vote! (%percentage1.1%%percent% Yes, %percentage2.1%%percent% No. Total Votes: %ini_vars_total_votes%) #Votesystem end############################################### make sure in this file on the layer hosted by Gamed!de: Configs/proncon.cfg this line is like this: procon.private.options.runPluginsInSandbox False if not, stop layer, set it to False, save file, and restart layer Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 2, 2016 Share Posted June 2, 2016 Originally Posted by QuadPrime*: Hey mimimimi, thanks for your suggestion. The line is not apparent in the ProconRulz.cfg. If i try to add it, it gets reset to its original state on Layer Start mfg QP Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 2, 2016 Share Posted June 2, 2016 Originally Posted by mimimimi*: Hey mimimimi, thanks for your suggestion. The line is not apparent in the ProconRulz.cfg. If i try to add it, it gets reset to its original state on Layer Start mfg QP then open a ticket with your game server provider and ask them to add that line same problem as yours in this same thread: myrcon.net/...proconrulz-v44j1-weapon-limits-and-other-event-triggered-admin-actions#entry15220 follow ALL my conversation with Thuishy user. however did you select that option from your procon application too? procon > Tools > Options > Plugins > Plugin security: Run plugins with no restrictions dont know if it is required but ill give it a try Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 3, 2016 Share Posted June 3, 2016 Originally Posted by madmuthamonk*: Trying to set each gunmaster map with its own preset but I cannot get it to work. Is it even possible? I have tried a few things but they don't seem to work. Is there another way of putting this code in proconrulz? On Round;Map XP7_Valley GunMaster0;Set vars.gunMasterWeaponsPreset 0 ***Note, I tried the random gunmaster preset for insane balancer and it does not work with mixed mode servers. Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 3, 2016 Share Posted June 3, 2016 Originally Posted by BuRockK*: Trying to set each gunmaster map with its own preset but I cannot get it to work. Is it even possible? I have tried a few things but they don't seem to work. Is there another way of putting this code in proconrulz? On Round;Map XP7_Valley GunMaster0;Set vars.gunMasterWeaponsPreset 0 ***Note, I tried the random gunmaster preset for insane balancer and it does not work with mixed mode servers. When a code you think should work doesnt, its usually you made a typo somewhere in the code. or used it wrong way. Very rare that its a conflict or theres an access/write issue problem between plugin,server or procon. Heres the right code: On Round;Map XP7_Valley;MapMode GunMaster0;Set vars.gunMasterWeaponsPreset 0 Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 3, 2016 Share Posted June 3, 2016 Originally Posted by madmuthamonk*: When a code you think should work doesnt, its usually you made a typo somewhere in the code. or used it wrong way. Very rare that its a conflict or theres an access/write issue problem between plugin,server or procon. Heres the right code: On Round;Map XP7_Valley;MapMode GunMaster0;Set vars.gunMasterWeaponsPreset 0 Ah I see, I didn't separate the game mode. I will try this, thank you for the help. Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 4, 2016 Share Posted June 4, 2016 Originally Posted by BuRockK*: youre welcome Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 4, 2016 Share Posted June 4, 2016 Originally Posted by QuadPrime*: You just used the Wrong Action. Console commands like vars.gunMasterWeaponsPreset are executed via the " exec " command. Set is used to handle Procon-rulz internal Variables. On Round;Map XP7_Valley;MapMode GunMaster0;exec vars.gunMasterWeaponsPreset 0 Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 4, 2016 Share Posted June 4, 2016 Originally Posted by madmuthamonk*: You just used the Wrong Action. Console commands like vars.gunMasterWeaponsPreset are executed via the " exec " command. Set is used to handle Procon-rulz internal Variables. On Round;Map XP7_Valley;MapMode GunMaster0;exec vars.gunMasterWeaponsPreset 0 I will try this, the other did not work Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 4, 2016 Share Posted June 4, 2016 Originally Posted by BuRockK*: When a code you think should work doesnt, its usually you made a typo somewhere in the code. or used it wrong way. Very rare that its a conflict or theres an access/write issue problem between plugin,server or procon. You just used the Wrong Action. Console commands like vars.gunMasterWeaponsPreset are executed via the " exec " command. Set is used to handle Procon-rulz internal Variables. On Round;Map XP7_Valley;MapMode GunMaster0;exec vars.gunMasterWeaponsPreset 0 point being^^ Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 5, 2016 Share Posted June 5, 2016 Originally Posted by spatieman*: I will try this, the other did not workthere, is a plugin named ultimatemapmanager.that does what you need, give it a try... Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 5, 2016 Share Posted June 5, 2016 Originally Posted by Crawfy2D*: Hi ... I have a BF3 Server and i do this in proconRulz. But is this ok ? ###### Knife, Defib and Repair-Tool Kills Announcer ####### # german On Kill;Weapon Weapons/Knife_RazorBlade;Say %p% Hat %v% Die Kehle Aufgeschlitzt !!! On Kill;Weapon Weapons/Knife/Knife;Say %p% Hat %v% Die Kehle Aufgeschlitzt !!! On Kill;If %wk% contains Defib;Say %p% Hat %v% Mit Dem Defib Elektrisiert !!! On Kill;If %wk% contains Repair;Say %p% Hat %v% Mit Dem Repair-Tool Zerbraten !!! On Kill;Weapon Weapons/Knife_RazorBlade;Yell %p% Hat %v% Die Kehle Aufgeschlitzt !!! On Kill;Weapon Weapons/Knife/Knife;Yell %p% Hat %v% Die Kehle Aufgeschlitzt !!! On Kill;If %wk% contains Defib;Yell %p% Hat %v% Mit Dem Defib Elektrisiert !!! On Kill;If %wk% contains Repair;Yell %p% Hat %v% Mit Dem Repair-Tool Zerbraten !!! Best Reg Crawfy Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 5, 2016 Share Posted June 5, 2016 Originally Posted by BuRockK*: Try %w% instead of %wk% Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 8, 2016 Share Posted June 8, 2016 Originally Posted by Hodor*: Does anyone know how to run @scramblenow (truebalancer) through proconrulz rule? I want to write a rule that in running round turned on scramble if too much difference in strength of teams. Multibalancer works fine, but asked to create an account in Procon Layer with name "Server" order to command Multibalancer started to work. Test Multibalancer command - works: Code: On Say;Text /test;Say @mb scramble on- works Test Truebalancer command - doesnt work Code: On Say;Text /test;Say @scramblenow- doesnt work How to solve this problem? Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 8, 2016 Share Posted June 8, 2016 Originally Posted by ty_ger07*: Does anyone know how to run @scramblenow (truebalancer) through proconrulz rule? I want to write a rule that in running round turned on scramble if too much difference in strength of teams. Multibalancer works fine, but asked to create an account in Procon Layer with name "Server" order to command Multibalancer started to work. Test Multibalancer command - works: Code: On Say;Text /test;Say @mb scramble on- works Test Truebalancer command - doesnt work Code: On Say;Text /test;Say @scramblenow- doesnt work How to solve this problem? There is no way. The plugins don't talk to eachother. Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 8, 2016 Share Posted June 8, 2016 Originally Posted by ColColonCleaner*: There is no way. The plugins don't talk to eachother.What he's asking about is chat commands. Multibalancer is able to be 'spoken to' since it listens to chat messages from "Server", which can include admin say messages. You don't talk between plugins per-say, you fake the plugin into believing an admin has entered the command in chat and has access to it. IL, MB, and AdKats accept commands this way. I don't know if this exists in proconrulz though. Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 9, 2016 Share Posted June 9, 2016 Originally Posted by Chilace*: Test Truebalancer command - doesnt work Code: On Say;Text /test;Say @scramblenow- doesnt work How to solve this problem? What if:Code: On Say;Text /test;Exec admin.say "@scramblenow" allAlso read this: Known Issues: - While BalancingGuard is turned on, no players can be moved by an admin, if the admin would unbalance the teams by playernumber or skill with that playermove. Solution: Turn off BalancingGuard while trying to move players and than afterwards turn it back on or use TB's own movecommands ingame. Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 9, 2016 Share Posted June 9, 2016 Originally Posted by Hodor*: There is no way. The plugins don't talk to eachother.AdKats, Multibalancer commands works through proconrulz ruleAdKats: Code: On Kill;Damage ProjectileExplosive;Say /punish %p% %w% not allowed here. Read !rules What he's asking about is chat commands. Multibalancer is able to be 'spoken to' since it listens to chat messages from "Server", which can include admin say messages. You don't talk between plugins per-say, you fake the plugin into believing an admin has entered the command in chat and has access to it. IL, MB, and AdKats accept commands this way. I don't know if this exists in proconrulz though.Can you give me an example for IL, to run a command True Balancer !scramblenow/@scramblenow eg OnAnyChat? What if: Code: On Say;Text /test;Exec admin.say "@scramblenow" all Doesnt work Also read this: Known Issues: - While BalancingGuard is turned on, no players can be moved by an admin, if the admin would unbalance the teams by playernumber or skill with that playermove. Solution: Turn off BalancingGuard while trying to move players and than afterwards turn it back on or use TB's own movecommands ingame. it was turned off P.S I can give server IP, rcon port and rcon password to connect Procon Layer If someone wants to help me Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 9, 2016 Share Posted June 9, 2016 Originally Posted by spatieman*: balancingguard_____? where is that in ? Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 21, 2016 Share Posted June 21, 2016 Originally Posted by ozersk*: JOINER/LEAVER LOG It can be a limit on the script? example: Will write in the chat, if the players less than 30. If more than 30 players, it does not write in the chat. Sorry for my English) JOINER/LEAVER LOG RU ????? ??????? ????? ?? ???? ??????? ??????: ????? ?????? ? ???, ???? ??????? ?????? 30. ???? ?????? 30 ???????, ?? ?? ????? ? ???. Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 21, 2016 Share Posted June 21, 2016 Originally Posted by Chilace*: JOINER/LEAVER LOG It can be a limit on the script? example: Will write in the chat, if the players less than 30. If more than 30 players, it does not write in the chat. Sorry for my English) JOINER/LEAVER LOG RU ????? ??????? ????? ?? ???? ??????? ??????: ????? ?????? ? ???, ???? ??????? ?????? 30. ???? ?????? 30 ???????, ?? ?? ????? ? ???. Code: # JOINER/LEAVER LOG On Join;Teamsize 14;Say %p% has joined the server On Leave;Teamsize 14;Say %p% has left the server Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 21, 2016 Share Posted June 21, 2016 Originally Posted by elmopio*: Tyvm Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 22, 2016 Share Posted June 22, 2016 Originally Posted by maxdralle*: JOINER/LEAVER LOG It can be a limit on the script? example: Will write in the chat, if the players less than 30. If more than 30 players, it does not write in the chat. Sorry for my English) less than 30 player = info messagemore than 30 player = no message Code: On Join; if %ts1% + %ts2% < 30; Say %p% has joined the server On Leave; if %ts1% + %ts2% < 30; Say %p% has left the server Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 22, 2016 Share Posted June 22, 2016 Originally Posted by BuRockK*: Good afternoon folks. I been playing around with no luck but appreciate some help if you can. Two thing I would like to have A: Show or Say in this case when a headshot occurs to the player how many he has and going on each time he has one to him self. Code: ####Headshot Number Announcer On Kill;Headshot;Incr %headnumberincr%;Incr %headshotnumber%;If %headnumberincr% == 10;Set %headnumberincr% 0;Say %p%: %headshotnumber% headshots this round.And B: I would like to add the most Headshots at the end of a round and this is what I have. Any ideas what I am doing wrong? Code: ###End Of Round### On Kill;If %server_msg_now% == 1 If %server_m_kills_player% != 0;Say -= Most KILLS >>> %server_m_kills_player% >>> %server_m_kills[%server_m_kills_player%]% kills If %server_m_head_player% != 0;Say -= Most HEADSHOTS >>> %server_m_head_player% >>> %server_m_head[%server_m_head_player%]% kills If %server_m_knife_player% != 0;Say -= Most KNIFES %server_m_knife_player% >>> %server_m_knife[%server_m_knife_player%]% kills Set %server_msg_now% 0 Heres a code for most headshots msg after every round end: Code: # Most Headshots On Kill;Headshot;Incr %playerheadshots% On Kill;Headshot;If %playerheadshots% > %server_mostheadshots%;Set %server_mostheadshots% %playerheadshots%;Set %server_mostheadshotsplayer% %p% On RoundOver;if %ts1% + %ts2% > 0; Say - Most Headshots: %server_mostheadshotsplayer% (%server_mostheadshots%)For msg players their total headshots, after every 10 headshot they make: Code: On Kill;Headshot; Incr %headshots_%p%% Incr %headshotstotal_%p%% If %headshots_%p%% == 10;PlayerSay You have %headshotstotal_%p%% headshots so far.;Set %headshots_%p%% 0 Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 22, 2016 Share Posted June 22, 2016 Originally Posted by elmopio*: Tyvm Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 22, 2016 Share Posted June 22, 2016 Originally Posted by BuRockK*: I was missing a lot. Thank youYoure welcome Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 23, 2016 Share Posted June 23, 2016 Originally Posted by Level*: How can i choose to round based settings? CQ each 2 round Pistol Only! THX Level Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 23, 2016 Share Posted June 23, 2016 Originally Posted by Guest**: Hi my friend.. im very lost on this forums haha i can't find what im looking for and im a pro for search and find normaly... also when im getting lost i know other gonna be lost to and still more than me .. anyway Please can you send me the good thread with the (Battlefield Hardline - Procon Plugin - InsaneLimit - Pistol ONLY.- Or maybe the thread where i can clearly learn how to make my own version of insane limit ... . im looking for make a server ( PISTOL / KNIFE ONLY - MuseumGrinder - Museum ONLY FAST XP ) Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 23, 2016 Share Posted June 23, 2016 Originally Posted by BuRockK*: Hi my friend.. im very lost on this forums haha i can't find what im looking for and im a pro for search and find normaly... also when im getting lost i know other gonna be lost to and still more than me .. anyway Please can you send me the good thread with the (Battlefield Hardline - Procon Plugin - InsaneLimit - Pistol ONLY.- Or maybe the thread where i can clearly learn how to make my own version of insane limit ... . im looking for make a server ( PISTOL / KNIFE ONLY - MuseumGrinder - Museum ONLY FAST XP ) To make limits in Insane Limits, you need to know at least some basic C# coding. This thread is for ProconRulz plugin. Go to ...* thread to get help on that plugin. Quote * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted June 23, 2016 Share Posted June 23, 2016 Originally Posted by BuRockK*: How can i choose to round based settings? CQ each 2 round Pistol Only! THX Level Not sure what you need. You can send server setting command after every round end with this basic "On Round End" code: On RoundEnd;exec 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.