ImportBot Posted September 1, 2012 Author Share Posted September 1, 2012 Originally Posted by PapaCharlie9*: Hiya, we have another limit that seems to have "timing"trouble. We have implemeted a lot of examples from this forum, no worries, but this one and the above one seem to not work properly for us. I got the example of Server First Blood here...* My problem is, this one displays at the end of the round, not the beginning. It evaluates on kill with the action set to say. First check expression is set to: (true) Second check expression is set to: limit.Activations() == 1 Say message (seems to work ok): say_audience = All say_message = %p_n% got first blood this round with a %w_n%! Any support or assistance to get this and the above limit to work as intended would be much appreciated. First of all, UPGRADE TO Version 0.8. If you are brave, get patch 4 from here: https://github.com/PapaCharlie9/insane-limits/downloads Press the Download as Zip button, copy the InsaneLimits.cs file out of the zip and replace the old file in Plugins/BF3. If you are not brave, get patch 3 from here: http://www.phogue.net/forumvb/attach...9&d=1328999104 If upgrading to 0.8 doesn't fix it, try making these changes: Change second_check from Expression to Code. Set the Code to: Code: String kFirst = "first_kill"; if (!plugin.RoundData.issetBool(kFirst)) { plugin.RoundData.setBool(kFirst, true); return true; } return false; * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 1, 2012 Author Share Posted September 1, 2012 Originally Posted by HexaCanon*: will be testing swedish auto admin tomorrow on 1st metro ^^ , wish me luck * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 1, 2012 Author Share Posted September 1, 2012 Originally Posted by Itz_cujo666*: Hi, thanks for welcome, and also for your help on the 2 limits. I've just had the top scoring clan limit on virtual for a few rounds, it seemed to work so put it on enabled, and all it seems to work perfectly now (no more announcing at beginning and end of round, just announces close to the end)! Thanks very much. I'll try the first blood limit tomorrow and let you know how it goes, and insert code in messages as you say in future too. Cheers! * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 2, 2012 Author Share Posted September 2, 2012 Originally Posted by dyn*: I don't know if I should press my luck with another request for support so soon... :X The post I'm looking at is #361 in regards to the server news item. I've tried to insert code for on player spawn but I keep getting compile errors. Ugh. Essentially I'm looking for something similar in that a welcome message is sent at the start of a new round when player spawns. Ideally this would be said during the countdown to start the match. So if a player joins halfway into the round no welcome message is psaid to the player until the start of the next round. Not sure if this makes sense? I'm just trying to ensure maximum visibility and that 25 second countdown provides the perfect environment for it. Thank you. * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 2, 2012 Author Share Posted September 2, 2012 Originally Posted by HexaCanon*: I don't know if I should press my luck with another request for support so soon... :X The post I'm looking at is #361 in regards to the server news item. I've tried to insert code for on player spawn but I keep getting compile errors. Ugh. Essentially I'm looking for something similar in that a welcome message is sent at the start of a new round when player spawns. Ideally this would be said during the countdown to start the match. So if a player joins halfway into the round no welcome message is psaid to the player until the start of the next round. Not sure if this makes sense? I'm just trying to ensure maximum visibility and that 25 second countdown provides the perfect environment for it. Thank you. Onspawn first expression Code: server.TimeRound < 30 \\ message is sent only in the first half minute of round \\ 30 secondssecond code Code: if (limit.ActivationsTotal(player.Name) == 1) plugin.ServerCommand("admin.yell", plugin.R("%p_n% Welcome!");, "12","player", player.Name); * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 2, 2012 Author Share Posted September 2, 2012 Originally Posted by PapaCharlie9*: will be testing swedish auto admin tomorrow on 1st metro ^^ , wish me luck Luck! Or should I say, Jag önskar er lycka till! * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 2, 2012 Author Share Posted September 2, 2012 Originally Posted by PapaCharlie9*: Onspawn first expression Code: server.TimeRound < 30 \\ message is sent only in the first half minute of round \\ 30 secondssecond code Code: if (limit.ActivationsTotal(player.Name) == 1) plugin.ServerCommand("admin.yell", plugin.R("%p_n% Welcome!");, "12","player", player.Name); You have to remove the comment from first_check or it won't compile, and in any case, comments are forward slashes //. Change it to this: Code: ( server.TimeRound < 30 )Question: did you want the message to be shown for every round, or only once per player total? If every round, change limit.ActivationsTotal to limit.Activations. It's not possible to show the message only during warm up. Insane Limits doesn't know the difference between warm-up and real start of round. In fact, I'm not even sure what Insane Limits sees during a warm up. It might look like OnRoundStart (warm up starts), OnRoundOver (warm up ends), OnRoundStart (round starts) to a limit. Or it might see nothing. * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 3, 2012 Author Share Posted September 3, 2012 Originally Posted by dyn*: You have to remove the comment from first_check or it won't compile, and in any case, comments are forward slashes //. Change it to this: Code: ( server.TimeRound < 30 )Question: did you want the message to be shown for every round, or only once per player total? If every round, change limit.ActivationsTotal to limit.Activations. It's not possible to show the message only during warm up. Insane Limits doesn't know the difference between warm-up and real start of round. In fact, I'm not even sure what Insane Limits sees during a warm up. It might look like OnRoundStart (warm up starts), OnRoundOver (warm up ends), OnRoundStart (round starts) to a limit. Or it might see nothing. I'm sorry, I didn't word it correctly. I'm not actually talking about the warm up but rather the Lockdown countdown. This is the time that allows the slower loaders to get in right before the round starts. It would work like this: Player A Joins server halfway into the round. No welcome text is sent. Round finishes. Player A then spawns in to the game for the next round. If player spawns fast their will be a countdown to start the round -- this is where I'd like to see a message displayed in the chat box via player say. I suppose it doesn't necessarily have to be something that works only "in 30 seconds of the match" just the players first spawn on the next map load. The idea behind this is that spamming text is usually just ignored or not seen if it's during the match. However, during the lockdown countdown (25 seconds in my case) the players can't do anything but wait and watch the chat box or jump up and down. I think this would provide the most exposure for a message that was important. And if we wanted to get all fancy it could display a different message for each subsequent spawn at the start of a new round in round robin. Start of first full round: Message 1 Start of second full round: Message 2 Start of third full round: Message 3: And then repeat. The multiple messages was just an afterthought. Just trying to get info to players where it will actually be seen. Onspawn first expression Code: server.TimeRound < 30 \\ message is sent only in the first half minute of round \\ 30 secondssecond code Code: if (limit.ActivationsTotal(player.Name) == 1) plugin.ServerCommand("admin.yell", plugin.R("%p_n% Welcome!");, "12","player", player.Name); The more I thought about it, I think the first 30 seconds won't necessarly work because we don't know if the player has spawned or not. It would be ideal if it could be sent just on a new full round and only on the first spawn. That would mostly solve the problem and wouldn't matter if it was in the 30 seconds or not. Thank you, again. * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 3, 2012 Author Share Posted September 3, 2012 Originally Posted by HexaCanon*: I'm sorry, I didn't word it correctly. I'm not actually talking about the warm up but rather the Lockdown countdown. This is the time that allows the slower loaders to get in right before the round starts. It would work like this: Player A Joins server halfway into the round. No welcome text is sent. Round finishes. Player A then spawns in to the game for the next round. If player spawns fast their will be a countdown to start the round -- this is where I'd like to see a message displayed in the chat box via player say. I suppose it doesn't necessarily have to be something that works only "in 30 seconds of the match" just the players first spawn on the next map load. The idea behind this is that spamming text is usually just ignored or not seen if it's during the match. However, during the lockdown countdown (25 seconds in my case) the players can't do anything but wait and watch the chat box or jump up and down. I think this would provide the most exposure for a message that was important. And if we wanted to get all fancy it could display a different message for each subsequent spawn at the start of a new round in round robin. Start of first full round: Message 1 Start of second full round: Message 2 Start of third full round: Message 3: And then repeat. The multiple messages was just an afterthought. Just trying to get info to players where it will actually be seen. The more I thought about it, I think the first 30 seconds won't necessarly work because we don't know if the player has spawned or not. It would be ideal if it could be sent just on a new full round and only on the first spawn. That would mostly solve the problem and wouldn't matter if it was in the 30 seconds or not. Thank you, again. can you test what we gave you first and then tell us the exact behavior that u want to change. i do not understand what you exactly want and i think what we gave should work fine. also it is possible to do different message but first it is good if you tell us that the 30 seconds are working or not. * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 3, 2012 Author Share Posted September 3, 2012 Originally Posted by PapaCharlie9*: I'm sorry, I didn't word it correctly. I'm not actually talking about the warm up but rather the Lockdown countdown.Doesn't matter, Insane Limits doesn't know about either time period. All it knows about is the first spawn of a new round -- fortunately, that's exactly what you want! It would be ideal if it could be sent just on a new full round and only on the first spawn. That would mostly solve the problem and wouldn't matter if it was in the 30 seconds or not. Thank you, again. So you want one global yell for all players to see? But what about all the guys that haven't spawned yet? They won't see a yell. They might see a chat, though, as long as it doesn't scroll off by the time they spawn AND they have the chat window showing. I think Hexacanon's idea would work better, since it's a private yell to each player the first time they spawn in a new round. Note that his limit doesn't send a message in the first 30 seconds. What it does is test if as each player spawns, did they spawn in the first 30 seconds of the round? If yes, they get a private yell once (either forever, or once per round, ActivationsTotal vs Activations, respectively). * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 4, 2012 Author Share Posted September 4, 2012 Originally Posted by jkibbles*: PapaCharlie sent me over here from my other thread, so let's see if we can figure something out. Here's what we're trying to do. We want to have the server at 16 slots, unless people on the reserved slots list join the server, in which case it will grow up to 24 slots. We're trying to avoid kicking players as much as possible, so if there are 16 players in we want the server to gain a slot (only usable by reserved members) instead of booting a player that is in the server. Unfortunately, we're beating our heads against the wall with this. So basically, what we're trying to do is to lock down 8 slots that can only be used by people on the Reserved Slots list. If none of the RSL players are online, it's a 16 slot server. As soon as someone on the RS list joins, it becomes a 17 slot server, if another person on the RS list joins, it becomes an 18 slot server, etc. * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 4, 2012 Author Share Posted September 4, 2012 Originally Posted by Itz_cujo666*: Hi, I wanted to return to the Server First Blood example. I had my server provider upgrade Insane Limits from .6 to .8 (patch 3 - I'm brave, but players aren't). And was hoping that would fix the limit, but it hasn't. It's still not firing at appropriate times. It fires at the end of rounds, or in the middle, for example: [09:26:05 29] [insane Limits] say(All), ingwar19, activated Limit #8: FIRST BLOOD this round goes to ingwar19! [09:26:05 29] [insane Limits] WARNING: not sending global-message, virtual_mode is on [09:27:14 35] [insane Limits] round start detected -or- [09:56:43 07] [insane Limits] TOP PLATOON this round is [bLR] with 4550 points! [09:57:46 76] [insane Limits] say(All), LevelLEev, activated Limit #8: FIRST BLOOD this round goes to LevelLEev! [09:57:46 76] [insane Limits] WARNING: not sending global-message, virtual_mode is on ...in the second example, the Top Platoon limit is firing correctly, at ~10% of tickets left (thanks for your help there!). I updated the second check code, to reflect updated example you provided, so here is what I have: It evaluates on kill with action set to say. First_check expression set to: (true) Second_check code set to: Code: String kFirst = "first_kill"; if (!plugin.RoundData.issetBool(kFirst)) { plugin.RoundData.setBool(kFirst, true); return true; } return false;Hope I got the message formatted better, to make it easier, thanks for any assistance... Also, to say, .8 seems much better than .6, I especially like the extra possibilities on when to evaluate, and upgrading was very simple, all existing limits ported across without trouble. * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 5, 2012 Author Share Posted September 5, 2012 Originally Posted by Dudenell*: nvm * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 5, 2012 Author Share Posted September 5, 2012 Originally Posted by HexaCanon*: PapaCharlie sent me over here from my other thread, so let's see if we can figure something out. Here's what we're trying to do. We want to have the server at 16 slots, unless people on the reserved slots list join the server, in which case it will grow up to 24 slots. We're trying to avoid kicking players as much as possible, so if there are 16 players in we want the server to gain a slot (only usable by reserved members) instead of booting a player that is in the server. Unfortunately, we're beating our heads against the wall with this. So basically, what we're trying to do is to lock down 8 slots that can only be used by people on the Reserved Slots list. If none of the RSL players are online, it's a 16 slot server. As soon as someone on the RS list joins, it becomes a 17 slot server, if another person on the RS list joins, it becomes an 18 slot server, etc. when thinking of this, there is a scenario that might happen and i do not like. imagine the server is locked on 19 slot. a RSL member leaves , it is now 18/19 , a random player joins , it is now 19/19 , procon was late in checking and made the server max 18 players .. who gets kicked ? it is possible to do this with multiple limits but i can not guarantee that it wont have issues. * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 5, 2012 Author Share Posted September 5, 2012 Originally Posted by jkibbles*: when thinking of this, there is a scenario that might happen and i do not like. imagine the server is locked on 19 slot. a RSL member leaves , it is now 18/19 , a random player joins , it is now 19/19 , procon was late in checking and made the server max 18 players .. who gets kicked ? it is possible to do this with multiple limits but i can not guarantee that it wont have issues. Hopefully in that scenario the most recent joiner would be kicked. If it helps any, we have an extra server that we can play around with for the next couple of weeks. I have a feeling other people would find this setup useful as well. * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 5, 2012 Author Share Posted September 5, 2012 Originally Posted by Repoman*: Is there a way to use vars.vehicleSpawnDelay 99999 limit instead of the vars.vehicleSpawnAllowed limit? I don't want the server to switch to custom when using vars.vehicleSpawnAllowed. * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 5, 2012 Author Share Posted September 5, 2012 Originally Posted by pharbehind*: PapaCharlie, still requesting a "PC" edition vote ban myrcon.net/...vote-ban#entry22598 * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 5, 2012 Author Share Posted September 5, 2012 Originally Posted by HexaCanon*: PapaCharlie, still requesting a "PC" edition vote ban myrcon.net/...vote-ban#entry22598 i am using the votekick example and it is working for me. * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 6, 2012 Author Share Posted September 6, 2012 Originally Posted by pharbehind*: Hmm, alright I'll try that again. Just tested and it's definitely not working. Did you modify it at all? Can you reconfirm that its working for you? I get no response just like the other votekick plugins. * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 6, 2012 Author Share Posted September 6, 2012 Originally Posted by HexaCanon*: Hmm, alright I'll try that again. Just tested and it's definitely not working. Did you modify it at all? Can you reconfirm that its working for you? I get no response just like the other votekick plugins. screenshot your settings. * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 6, 2012 Author Share Posted September 6, 2012 Originally Posted by pharbehind*: It's copy pasted directly from the Votekick example... state: enabled, on any chat. with the code copied. My other limits run fine. * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 6, 2012 Author Share Posted September 6, 2012 Originally Posted by HexaCanon*: It's copy pasted directly from the Votekick example... state: enabled, on any chat. with the code copied. My other limits run fine. do you have error compiling or it does not work as intended ? * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 6, 2012 Author Share Posted September 6, 2012 Originally Posted by Singh400*: It's copy pasted directly from the Votekick example... state: enabled, on any chat. with the code copied. My other limits run fine. Well, clearly something is wrong. So I'd +1 on Hexa's request on a screenshot of your settings. * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 6, 2012 Author Share Posted September 6, 2012 Originally Posted by pharbehind*: No errors compiling. If my settings are wrong, why are other limits working? http://i.imgur.com/hNhNv.png http://i.imgur.com/K6hDU.png * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 7, 2012 Author Share Posted September 7, 2012 Originally Posted by PapaCharlie9*: PapaCharlie sent me over here from my other thread, so let's see if we can figure something out. Here's what we're trying to do. We want to have the server at 16 slots, unless people on the reserved slots list join the server, in which case it will grow up to 24 slots. We're trying to avoid kicking players as much as possible, so if there are 16 players in we want the server to gain a slot (only usable by reserved members) instead of booting a player that is in the server. Unfortunately, we're beating our heads against the wall with this. So basically, what we're trying to do is to lock down 8 slots that can only be used by people on the Reserved Slots list. If none of the RSL players are online, it's a 16 slot server. As soon as someone on the RS list joins, it becomes a 17 slot server, if another person on the RS list joins, it becomes an 18 slot server, etc. Insane Limits can be used to do this, but only if you are willing to copy your reserved slots list into Insane Limits, or, if everyone on the reserved slots list has the same tag (much easier). Insane Limits does not have access to the reserved slots list, though in general PRoCon plugins do have access. It just wasn't important to add to Insane Limits when reserved slots themselves didn't even work! So what do you think? * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 7, 2012 Author Share Posted September 7, 2012 Originally Posted by PapaCharlie9*: Hi, I wanted to return to the Server First Blood example. I had my server provider upgrade Insane Limits from .6 to .8 (patch 3 - I'm brave, but players aren't). And was hoping that would fix the limit, but it hasn't. It's still not firing at appropriate times. It fires at the end of rounds, or in the middle, for example: [09:26:05 29] [insane Limits] say(All), ingwar19, activated Limit #8: FIRST BLOOD this round goes to ingwar19! [09:26:05 29] [insane Limits] WARNING: not sending global-message, virtual_mode is on [09:27:14 35] [insane Limits] round start detected -or- [09:56:43 07] [insane Limits] TOP PLATOON this round is [bLR] with 4550 points! [09:57:46 76] [insane Limits] say(All), LevelLEev, activated Limit #8: FIRST BLOOD this round goes to LevelLEev! [09:57:46 76] [insane Limits] WARNING: not sending global-message, virtual_mode is on ...in the second example, the Top Platoon limit is firing correctly, at ~10% of tickets left (thanks for your help there!). I updated the second check code, to reflect updated example you provided, so here is what I have: It evaluates on kill with action set to say. First_check expression set to: (true) Second_check code set to: Code: String kFirst = "first_kill"; if (!plugin.RoundData.issetBool(kFirst)) { plugin.RoundData.setBool(kFirst, true); return true; } return false;Hope I got the message formatted better, to make it easier, thanks for any assistance... Also, to say, .8 seems much better than .6, I especially like the extra possibilities on when to evaluate, and upgrading was very simple, all existing limits ported across without trouble. That's bizarre. It might be a bug in Insane Limits. Can you post your server configuration file (startup.txt), after editing out your server password? I suspect this might have to do with warm-up delay time. Also, what map and mode is this failing on? * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 7, 2012 Author Share Posted September 7, 2012 Originally Posted by PapaCharlie9*: PapaCharlie, still requesting a "PC" edition vote ban myrcon.net/...vote-ban#entry22598 Sorry bud, but I've been buried with real-life work recently. I can only get to this forum a couple of times a week now. I got to get my clan squared away with Armored Kill first, then I can look at some of these more complicated requests. * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 7, 2012 Author Share Posted September 7, 2012 Originally Posted by pharbehind*: Cool http://www.alimartell.com/wp-content.10/veruca.jpg * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 7, 2012 Author Share Posted September 7, 2012 Originally Posted by Itz_cujo666*: Hi, Sure, here's my startup.txt, minus password/name. It's pretty vanilla except I tweaked around warm up and vars.roundRestartPlayerCount & vars.roundStartPlayerCount, but think that's fairly standard to do. We only run 2 maps, Ziba and Bazaar, game mode is SQDM. I haven't noticed a difference between Ziba and Bazaar, but now that you mention it, perhaps I should watch for this. I also run Adaptive Server Size (highly recommend to everyone, btw.), Spambot, In-game Admin, and Voteban BF3, as well as Insane Limits (19 limits all enabled except this one, on virtual, and 2 lists), as FYI, if it matters. In example below, I've got vars.maxPlayers 48, usually we just have vars.maxPlayers 32, but guess that probably doesn't matter. It's unusual, because, sometimes I think it is firing correctly, for example this JUST happened, literally as I type this (on Bazaar with 48 SQDM slots)...but then again, I guess it is super fast to have a first kill? [15:47:32 10] [insane Limits] round start detected [15:47:32 70] [insane Limits] say(All), KirthGaaroth, activated Limit #8: FIRST BLOOD this round goes to KirthGaaroth! [15:47:32 70] [insane Limits] WARNING: not sending global-message, virtual_mode is on # ------------------------------------------------------------------------------------------------------------------------- # File generated by Procon Frostbite. Replace the contents of your /cfg/AdminScripts/startup.txt # on your game server with this file for your settings to remain persistent on game server restart. # ------------------------------------------------------------------------------------------------------------------------- # Comments begin with a # at the start of a line. # Quotations are optional for single words, but are required if the parameter contains spaces: # Correct: admin.password Hello # Correct: admin.password "Hello" # Incorrect: admin.password Hello World # Correct: admin.password "Hello World" punkBuster.activate vars.serverDescription "*****NO RULES*****SQUAD DEATH MATCH 24/7*****150 Tickets*****Play FAST & FURIOUS or you lose*****NO IDIOT ADMINS*****NO KICKING FOR RESERVED SLOTS*****...and enjoy ftw! :smile:" vars.friendlyFire false vars.idleTimeout 400 vars.teamKillCountForKick 5 vars.teamKillValueForKick 4 vars.teamKillValueIncrease 1 vars.teamKillValueDecreasePerSecond 0 vars.autoBalance true vars.killCam true vars.miniMap true vars.3dSpotting true vars.miniMapSpotting true vars.3pCam true vars.maxPlayers 48 vars.idleBanRounds 0 vars.vehicleSpawnAllowed true vars.vehicleSpawnDelay 100 vars.bulletDamage 100 vars.nameTag true vars.regenerateHealth true vars.roundRestartPlayerCount 0 vars.roundStartPlayerCount 1 vars.onlySquadLeaderSpawn false vars.unlockMode "stats" vars.soldierHealth 100 vars.hud true vars.playerManDownTime 100 vars.playerRespawnTime 100 vars.gameModeCounter 300 vars.servermessage "*****150 TICKETS FOR THE WIN*****" reservedSlotsList.aggressiveJoin false vars.roundLockdownCountdown 10 vars.roundWarmupTimeout 600 * Restored post. It could be that the author is no longer active. Link to comment
ImportBot Posted September 7, 2012 Author Share Posted September 7, 2012 Originally Posted by HexaCanon*: Hi, Sure, here's my startup.txt, minus password/name. It's pretty vanilla except I tweaked around warm up and vars.roundRestartPlayerCount & vars.roundStartPlayerCount, but think that's fairly standard to do. We only run 2 maps, Ziba and Bazaar, game mode is SQDM. I haven't noticed a difference between Ziba and Bazaar, but now that you mention it, perhaps I should watch for this. I also run Adaptive Server Size (highly recommend to everyone, btw.), Spambot, In-game Admin, and Voteban BF3, as well as Insane Limits (19 limits all enabled except this one, on virtual, and 2 lists), as FYI, if it matters. In example below, I've got vars.maxPlayers 48, usually we just have vars.maxPlayers 32, but guess that probably doesn't matter. It's unusual, because, sometimes I think it is firing correctly, for example this JUST happened, literally as I type this (on Bazaar with 48 SQDM slots)...but then again, I guess it is super fast to have a first kill? [15:47:32 10] [insane Limits] round start detected [15:47:32 70] [insane Limits] say(All), KirthGaaroth, activated Limit #8: FIRST BLOOD this round goes to KirthGaaroth! [15:47:32 70] [insane Limits] WARNING: not sending global-message, virtual_mode is on # ------------------------------------------------------------------------------------------------------------------------- # File generated by Procon Frostbite. Replace the contents of your /cfg/AdminScripts/startup.txt # on your game server with this file for your settings to remain persistent on game server restart. # ------------------------------------------------------------------------------------------------------------------------- # Comments begin with a # at the start of a line. # Quotations are optional for single words, but are required if the parameter contains spaces: # Correct: admin.password Hello # Correct: admin.password "Hello" # Incorrect: admin.password Hello World # Correct: admin.password "Hello World" punkBuster.activate vars.serverDescription "*****NO RULES*****SQUAD DEATH MATCH 24/7*****150 Tickets*****Play FAST & FURIOUS or you lose*****NO IDIOT ADMINS*****NO KICKING FOR RESERVED SLOTS*****...and enjoy ftw! :smile:" vars.friendlyFire false vars.idleTimeout 400 vars.teamKillCountForKick 5 vars.teamKillValueForKick 4 vars.teamKillValueIncrease 1 vars.teamKillValueDecreasePerSecond 0 vars.autoBalance true vars.killCam true vars.miniMap true vars.3dSpotting true vars.miniMapSpotting true vars.3pCam true vars.maxPlayers 48 vars.idleBanRounds 0 vars.vehicleSpawnAllowed true vars.vehicleSpawnDelay 100 vars.bulletDamage 100 vars.nameTag true vars.regenerateHealth true vars.roundRestartPlayerCount 0 vars.roundStartPlayerCount 1 vars.onlySquadLeaderSpawn false vars.unlockMode "stats" vars.soldierHealth 100 vars.hud true vars.playerManDownTime 100 vars.playerRespawnTime 100 vars.gameModeCounter 300 vars.servermessage "*****150 TICKETS FOR THE WIN*****" reservedSlotsList.aggressiveJoin false vars.roundLockdownCountdown 10 vars.roundWarmupTimeout 600 are you having an issue with the message not being sent because virtual mode is on ? what is the issue without all the other talk ? * Restored post. It could be that the author is no longer active. Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.