Raised This Month: $ Target: $400
 0% 

[UMC3] Ultimate Mapchooser 3.4.5 (Updated 10/7/2012)


Post New Thread Reply   
 
Thread Tools Display Modes
D4rkl0rd
Member
Join Date: Aug 2013
Old 09-08-2013 , 18:44   Re: [UMC3] Ultimate Mapchooser 3.4.5 (Updated 10/7/2012)
Reply With Quote #3831

OK, one last thing.
I know it might not be important, but it's getting on my nerves.

The last selection is always in small letters. I tried:
Payload
pAyload
pAYLOAD
PAYLOAD
Non of them worked, it appears in small.
I also tried changing its location by moving it up the list and in middle, but none worked.
Also, Can I limit the number of nominations ? Like 1 nomination per group ?

Last edited by D4rkl0rd; 09-10-2013 at 15:10.
D4rkl0rd is offline
Powerlord
AlliedModders Donor
Join Date: Jun 2008
Location: Seduce Me!
Old 09-11-2013 , 18:47   Re: [UMC3] Ultimate Mapchooser 3.4.5 (Updated 10/7/2012)
Reply With Quote #3832

jasonfrog pointed out a bug to me in umc-nativevotes that can be used to stop a mapvote from happening. So, I fixed it and attached it to this post.

Incidentally, looking at how umc-core handles it made me notice that the same bug is present for group votes there as well... normal map votes are protected from this bug, though. I may update that and compile a new version of it.
Attached Files
File Type: sp Get Plugin or Get Source (umc-nativevotes.sp - 106 views - 12.8 KB)
File Type: smx umc-nativevotes.smx (12.8 KB, 115 views)
__________________
Not currently working on SourceMod plugin development.
Powerlord is offline
Dr. Greg House
Professional Troll,
Part-Time Asshole
Join Date: Jun 2010
Old 09-11-2013 , 22:22   Re: [UMC3] Ultimate Mapchooser 3.4.5 (Updated 10/7/2012)
Reply With Quote #3833

What I am experiencing is that a native vote for nextmap will be ignored in tf2 and umc will start a vote regardless.
__________________
Santa or Satan?

Watch out when you're paying people for private requests! Most stuff already exists and you can hardly assess the quality of what you'll get, and if it's worth the money.
Dr. Greg House is offline
jasonfrog
Senior Member
Join Date: Mar 2008
Old 09-12-2013 , 10:21   Re: [UMC3] Ultimate Mapchooser 3.4.5 (Updated 10/7/2012)
Reply With Quote #3834

Quote:
Originally Posted by Powerlord View Post
jasonfrog pointed out a bug to me in umc-nativevotes that can be used to stop a mapvote from happening. So, I fixed it and attached it to this post.

Incidentally, looking at how umc-core handles it made me notice that the same bug is present for group votes there as well... normal map votes are protected from this bug, though. I may update that and compile a new version of it.
Cool, well that handles it, but no attempt to start the vote after a delay occurs. So the problem remains.

PHP Code:
L 09/12/2013 14:47:24: [umc-endvote.smxStarting an end of map vote.
L 09/12/2013 14:47:25: [umc-core.smxInitiating Vote TypeMap
L 09
/12/2013 14:47:25: [umc-nativevotes.smxCould not start core voteanother NativeVotes vote is already in progress.
L 09/12/2013 14:47:25: [umc-endvote.smxCould not start UMC vote
Perhaps a timer should retry the vote after a few seconds.
jasonfrog is offline
Powerlord
AlliedModders Donor
Join Date: Jun 2008
Location: Seduce Me!
Old 09-12-2013 , 10:37   Re: [UMC3] Ultimate Mapchooser 3.4.5 (Updated 10/7/2012)
Reply With Quote #3835

Quote:
Originally Posted by jasonfrog View Post
Cool, well that handles it, but no attempt to start the vote after a delay occurs. So the problem remains.

PHP Code:
L 09/12/2013 14:47:24: [umc-endvote.smxStarting an end of map vote.
L 09/12/2013 14:47:25: [umc-core.smxInitiating Vote TypeMap
L 09
/12/2013 14:47:25: [umc-nativevotes.smxCould not start core voteanother NativeVotes vote is already in progress.
L 09/12/2013 14:47:25: [umc-endvote.smxCould not start UMC vote
Perhaps a timer should retry the vote after a few seconds.
Hmm, I was under the impression that the module in charge of the vote was supposed to do that... the vote manager itself is supposed to just return Plugin_Stop (according to the existing code).

I'd have to check what exactly umc-endvote and umc-rockthevote are doing there.

Edit: This is going to require a slight reworking of how vote managers work.
__________________
Not currently working on SourceMod plugin development.

Last edited by Powerlord; 09-12-2013 at 10:43.
Powerlord is offline
Powerlord
AlliedModders Donor
Join Date: Jun 2008
Location: Seduce Me!
Old 09-12-2013 , 17:21   Re: [UMC3] Ultimate Mapchooser 3.4.5 (Updated 10/7/2012)
Reply With Quote #3836

I have no idea if this will actually work, but here's a build of UMC based on the current master branch that allows UMC to ask the current VoteManager if a vote is going on. This is necessary because otherwise, it just asks SourceMod if it has a vote going on, which doesn't apply when using NativeVotes. UMC_RegisterVoteManager also has an optional fourth argument to register a vote checking function. A second new native, UMC_IsNewVoteAllowed, runs the function for the vote manager passed to it (defaults to "core") and gets a bool back saying whether or not a new vote is allowed... it's basically a wrapper for the previously mentioned vote checking function.

The source code repo in use is my fork of Steell's repository.

Note: This is based off of the CS:GO branch, but as far as I can tell should work for other games as long as you're using SourceMod 1.5... that's the other thing this branch is testing.

Note 2: I did add in some code for 1.4 compatibility, but it needs 1.5 to compile.

Note 3: If you are testing this with TF2 and NativeVotes, it includes a new umc-nativevotes in plugins/disabled. Move it to plugins to use it.
Attached Files
File Type: zip umc 3.4.7 beta.zip (458.3 KB, 146 views)
__________________
Not currently working on SourceMod plugin development.

Last edited by Powerlord; 09-12-2013 at 20:54. Reason: is, not in
Powerlord is offline
Powerlord
AlliedModders Donor
Join Date: Jun 2008
Location: Seduce Me!
Old 09-12-2013 , 20:47   Re: [UMC3] Ultimate Mapchooser 3.4.5 (Updated 10/7/2012)
Reply With Quote #3837

I just updated the attachment in the previous post to include the version without all the debugging messages enabled.

My initial testing is that the plugin is working on TF2 with NativeVotes. Needs further testing though.

Edit: Whoops, forgot to copy the new .inc into my compiler include directory. Updated for real this time.
__________________
Not currently working on SourceMod plugin development.

Last edited by Powerlord; 09-12-2013 at 20:57.
Powerlord is offline
Powerlord
AlliedModders Donor
Join Date: Jun 2008
Location: Seduce Me!
Old 09-13-2013 , 14:33   Re: [UMC3] Ultimate Mapchooser 3.4.5 (Updated 10/7/2012)
Reply With Quote #3838

The randomcycle in the previous zip was missing something for it's SourceMod 1.4 compatibility.
Attached Files
File Type: sp Get Plugin or Get Source (umc-randomcycle.sp - 137 views - 15.2 KB)
File Type: smx umc-randomcycle.smx (13.6 KB, 175 views)
File Type: zip umc 3.4.7 test.zip (458.7 KB, 388 views)
__________________
Not currently working on SourceMod plugin development.

Last edited by Powerlord; 09-13-2013 at 14:40.
Powerlord is offline
Pcsl
SourceMod Donor
Join Date: Jun 2013
Old 09-17-2013 , 02:00   Re: [UMC3] Ultimate Mapchooser 3.4.5 (Updated 10/7/2012)
Reply With Quote #3839

Quote:
Originally Posted by Powerlord View Post
The randomcycle in the previous zip was missing something for it's SourceMod 1.4 compatibility.
Thank you very much. I'm gonna test it on my server as soon as possible.

Anyway, it would be interesting to improve the nominated map list. Now it hides the maps already nominated and those that you can't nominate. It would be better to show them in the way the native sourcemod module does it.

There is also a bug when no player vote for the next map and the map never changes saying "inc..." when you type nextmap. If you need more details I could look later into it.

Keep up the good work.
Pcsl is offline
hardy4u
Senior Member
Join Date: Oct 2012
Location: Sydney,Australia
Old 09-22-2013 , 04:12   Re: [UMC3] Ultimate Mapchooser 3.4.5 (Updated 10/7/2012)
Reply With Quote #3840

Code:
L 09/22/2013 - 13:30:57: [umc-nominate.smx] DEBUG: Checking for chat command...
L 09/22/2013 - 13:30:57: [umc-rockthevote.smx] DEBUG: Checking RTV Entry Validity
L 09/22/2013 - 13:30:57: [umc-rockthevote.smx] Starting RTV.
L 09/22/2013 - 13:30:57: [umc-rockthevote.smx] DEBUG: Disabling RTV; setting rtv_completed flag to true
L 09/22/2013 - 13:30:57: [umc-rockthevote.smx] DEBUG: Vote Flags: ""
L 09/22/2013 - 13:30:57: [umc-rockthevote.smx] DEBUG: Client has correct flags: HΔRĐY™<2><STEAM_1:0:73662581><> (1) [F: ]
L 09/22/2013 - 13:30:57: [umc-core.smx] DEBUG: Adding Don't Change Option to end of options list...
L 09/22/2013 - 13:30:57: [umc-core.smx] Initiating Vote Type: Stage 1 Tiered
L 09/22/2013 - 13:30:57: [umc-core.smx] DEBUG: Setup slot blocking.
L 09/22/2013 - 13:30:57: [umc-core.smx] DEBUG: Adding Don't Change Option to vote menu. Position: 8
L 09/22/2013 - 13:30:57: [umc-core.smx] DEBUG: Setting proper pagination.
L 09/22/2013 - 13:30:57: [umc-core.smx] DEBUG: Vote menu built successfully.
L 09/22/2013 - 13:30:57: [umc-core.smx] DEBUG: Setting CVA True
L 09/22/2013 - 13:31:02: [umc-core.smx] DEBUG: MenuAction_Select
L 09/22/2013 - 13:31:02: [umc-core.smx] DEBUG: Handling vote results...
L 09/22/2013 - 13:31:02: [umc-core.smx] DEBUG: Setting CVA False -- Completed
L 09/22/2013 - 13:31:02: [umc-core.smx] DEBUG: *VoteManagerVoteCompleted*
L 09/22/2013 - 13:31:02: [umc-core.smx] DEBUG: Processing vote results
L 09/22/2013 - 13:31:02: [umc-core.smx] DEBUG: Old storage size (PVC): 0
L 09/22/2013 - 13:31:02: [umc-core.smx] DEBUG: New storage size: 1
L 09/22/2013 - 13:31:02: [umc-core.smx] DEBUG: Determining if the vote meets the defined threshold of 0.000000
L 09/22/2013 - 13:31:02: [umc-core.smx] DEBUG: Handling Tiered Endvote Winner "DeathRun Maps"
L 09/22/2013 - 13:31:02: [umc-core.smx] DEBUG: Setting up second part of Tiered V.
L 09/22/2013 - 13:31:02: [umc-core.smx] MAPVOTE (Tiered): Players voted for map group 'DeathRun Maps'
L 09/22/2013 - 13:31:02: [umc-core.smx] DEBUG: Counting the number of nominations from the winning group.
L 09/22/2013 - 13:31:02: [umc-core.smx] DEBUG: Valid Maps: 0
L 09/22/2013 - 13:31:02: [umc-core.smx] DEBUG: Starting filtering of map group "DeathRun Maps".
L 09/22/2013 - 13:31:02: [umc-core.smx] DEBUG: Map Group filtering completed for group "DeathRun Maps".
L 09/22/2013 - 13:31:02: [umc-core.smx] DEBUG: Counting the number of available maps from the winning group.
L 09/22/2013 - 13:31:02: [umc-core.smx] DEBUG: Valid Maps: 4
L 09/22/2013 - 13:31:02: [umc-core.smx] DEBUG: Determining if we need to run a second vote.
L 09/22/2013 - 13:31:02: [umc-core.smx] DEBUG: Starting countdown timer for the second vote.
L 09/22/2013 - 13:31:02: [umc-core.smx] DEBUG: Group for Tiered Vote:
L 09/22/2013 - 13:31:02: [umc-core.smx] 1: "umc_rotation"
L 09/22/2013 - 13:31:02: [umc-core.smx] 2:   "DeathRun Maps"
L 09/22/2013 - 13:31:02: [umc-core.smx] 3:     "deathrun_classic"
L 09/22/2013 - 13:31:02: [umc-core.smx] 3:     "deathrun_deluxe_csgo"
L 09/22/2013 - 13:31:02: [umc-core.smx] 3:     "deathrun_lego_world_final"
L 09/22/2013 - 13:31:02: [umc-core.smx] 3:     "deathrun_stone_extended_dz"
L 09/22/2013 - 13:31:02: [umc-core.smx] DEBUG: Playing vote complete sound.
L 09/22/2013 - 13:31:02: [umc-core.smx] DEBUG: Finished handling Tiered winner.
L 09/22/2013 - 13:31:02: [umc-core.smx] DEBUG: MenuAction_End
L 09/22/2013 - 13:31:07: [umc-core.smx] MAPVOTE (Tiered): Starting second stage of tiered vote.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: MAPVOTE - Building map vote menu.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Preparing mapcycle for traversal.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Starting mapcycle filtering.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Starting filtering of map group "DeathRun Maps".
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Map Group filtering completed for group "DeathRun Maps".
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Mapcycle filtering completed.
L 09/22/2013 - 13:31:07: [umc-core.smx] 1: "umc_rotation"
L 09/22/2013 - 13:31:07: [umc-core.smx] 2:   "DeathRun Maps"
L 09/22/2013 - 13:31:07: [umc-core.smx] 3:     "deathrun_classic"
L 09/22/2013 - 13:31:07: [umc-core.smx] 3:     "deathrun_deluxe_csgo"
L 09/22/2013 - 13:31:07: [umc-core.smx] 3:     "deathrun_lego_world_final"
L 09/22/2013 - 13:31:07: [umc-core.smx] 3:     "deathrun_stone_extended_dz"
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Checking for groups.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Preparing vote data storage.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Getting options from cvars.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Initializing Buffers
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Performing Traversal
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: New map weight: 1.000000
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: New map weight: 1.000000
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: New map weight: 1.000000
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: New map weight: 1.000000
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Fetching map group data
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Fetching Nominations
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Unfiltered:
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Filtered:
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Calculating amount of maps needed to be fetched.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Determining proper nomination processing algorithm.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Adding all nominations to the vote.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Finished processing nominations.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Current gDisp value: {MAP}
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Begin filling remaining spots in the vote.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Attempting to fetch a map from the group.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Preparing mapcycle for random map selection.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Preparing to traverse maps in the group.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Adding map deathrun_classic to the pool.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Adding map deathrun_deluxe_csgo to the pool.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Adding map deathrun_lego_world_final to the pool.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Adding map deathrun_stone_extended_dz to the pool.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Finished populating random pool.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Getting random map from the pool.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Getting number of items in the pool - 4
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Setting up array of weights.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Picking a random number.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Find the winner in the pool.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Update running total of weights.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Check if we're at the right item.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Update running total of weights.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Check if we're at the right item.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Update running total of weights.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Check if we're at the right item.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Item found.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Checking to make sure the map isn't already in the vote.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Searching for map in nominations.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Fetching display info for the map from the mapcycle.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: OFTS: 'deathrun_lego_world_final' 'DeathRun Maps' '{MAP}'
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: OFTS End: deathrun_lego_world_final
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: GMDS Buffer: deathrun_lego_world_final
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Display name for deathrun_lego_world_final: 'deathrun_lego_world_final'
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Determining where to place the map in the vote.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Adding map to the vote.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: *MEMLEAKTEST* Creating map trie (BuildMapVoteItems) [5]
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: *MEMLEAKTEST* Inserting map trie created at [5] into vote manager storage
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Preventing map from being picked again.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Attempting to fetch a map from the group.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Preparing mapcycle for random map selection.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Preparing to traverse maps in the group.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Adding map deathrun_classic to the pool.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Adding map deathrun_deluxe_csgo to the pool.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Adding map deathrun_stone_extended_dz to the pool.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Finished populating random pool.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Getting random map from the pool.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Getting number of items in the pool - 3
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Setting up array of weights.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Picking a random number.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Find the winner in the pool.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Update running total of weights.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Check if we're at the right item.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Update running total of weights.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Check if we're at the right item.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Update running total of weights.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Check if we're at the right item.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Item found.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Checking to make sure the map isn't already in the vote.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Searching for map in nominations.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Fetching display info for the map from the mapcycle.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: OFTS: 'deathrun_stone_extended_dz' 'DeathRun Maps' '{MAP}'
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: OFTS End: deathrun_stone_extended_dz
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: GMDS Buffer: deathrun_stone_extended_dz
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Display name for deathrun_stone_extended_dz: 'deathrun_stone_extended_dz'
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Determining where to place the map in the vote.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Adding map to the vote.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: *MEMLEAKTEST* Creating map trie (BuildMapVoteItems) [5]
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: *MEMLEAKTEST* Inserting map trie created at [5] into vote manager storage
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Preventing map from being picked again.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Attempting to fetch a map from the group.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Preparing mapcycle for random map selection.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Preparing to traverse maps in the group.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Adding map deathrun_classic to the pool.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Adding map deathrun_deluxe_csgo to the pool.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Finished populating random pool.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Getting random map from the pool.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Getting number of items in the pool - 2
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Setting up array of weights.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Picking a random number.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Find the winner in the pool.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Update running total of weights.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Check if we're at the right item.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Update running total of weights.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Check if we're at the right item.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Item found.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Checking to make sure the map isn't already in the vote.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Searching for map in nominations.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Fetching display info for the map from the mapcycle.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: OFTS: 'deathrun_deluxe_csgo' 'DeathRun Maps' '{MAP}'
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: OFTS End: deathrun_deluxe_csgo
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: GMDS Buffer: deathrun_deluxe_csgo
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Display name for deathrun_deluxe_csgo: 'deathrun_deluxe_csgo'
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Determining where to place the map in the vote.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Adding map to the vote.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: *MEMLEAKTEST* Creating map trie (BuildMapVoteItems) [5]
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: *MEMLEAKTEST* Inserting map trie created at [5] into vote manager storage
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Preventing map from being picked again.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Attempting to fetch a map from the group.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Preparing mapcycle for random map selection.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Preparing to traverse maps in the group.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Adding map deathrun_classic to the pool.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Finished populating random pool.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Getting random map from the pool.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Getting number of items in the pool - 1
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Only 1 item in pool, setting it as the winner.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Checking to make sure the map isn't already in the vote.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Searching for map in nominations.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Fetching display info for the map from the mapcycle.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: OFTS: 'deathrun_classic' 'DeathRun Maps' '{MAP}'
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: OFTS End: deathrun_classic
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: GMDS Buffer: deathrun_classic
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Display name for deathrun_classic: 'deathrun_classic'
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Determining where to place the map in the vote.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Adding map to the vote.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: *MEMLEAKTEST* Creating map trie (BuildMapVoteItems) [5]
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: *MEMLEAKTEST* Inserting map trie created at [5] into vote manager storage
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Preventing map from being picked again.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Attempting to fetch a map from the group.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Preparing mapcycle for random map selection.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: No maps found in map group DeathRun Maps. Return false.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: No more maps in group. Continuing to next group.
L 09/22/2013 - 13:31:07: [umc-core.smx] Initiating Vote Type: Map
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Attempting to start core vote...
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Setup slot blocking.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Setting proper pagination.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Vote menu built successfully.
L 09/22/2013 - 13:31:07: [umc-core.smx] DEBUG: Setting CVA True
L 09/22/2013 - 13:31:16: [umc-core.smx] DEBUG: MenuAction_Select
L 09/22/2013 - 13:31:16: [umc-core.smx] DEBUG: Handling vote results...
L 09/22/2013 - 13:31:16: [umc-core.smx] DEBUG: Setting CVA False -- Completed
L 09/22/2013 - 13:31:16: [umc-core.smx] DEBUG: *VoteManagerVoteCompleted*
L 09/22/2013 - 13:31:16: [umc-core.smx] DEBUG: Processing vote results
L 09/22/2013 - 13:31:16: [umc-core.smx] DEBUG: Old storage size (PVC): 0
L 09/22/2013 - 13:31:16: [umc-core.smx] DEBUG: New storage size: 1
L 09/22/2013 - 13:31:16: [umc-core.smx] DEBUG: Determining if the vote meets the defined threshold of 0.000000
L 09/22/2013 - 13:31:16: [umc-core.smx] DEBUG: Vote no longer in progress!
L 09/22/2013 - 13:31:16: [umc-core.smx] Setting nextmap to: deathrun_classic
L 09/22/2013 - 13:31:16: [umc-echonextmap.smx] DEBUG: Map changed, displaying message...
L 09/22/2013 - 13:31:16: [umc-echonextmap.smx] DEBUG: Attempting to display center message: "[UMC] Next Map: deathrun_classic"
L 09/22/2013 - 13:31:16: [umc-rockthevote.smx] DEBUG: Next Map has been set by UMC. Setting vote_completion flag to true
L 09/22/2013 - 13:31:16: [umc-core.smx] MAPVOTE: Players voted for map 'deathrun_classic' from group 'DeathRun Maps'
L 09/22/2013 - 13:31:16: [umc-core.smx] DEBUG: *MEMLEAKTEST* Closing map trie (ClearVoteArrays) {3, 4, 5}
L 09/22/2013 - 13:31:16: [umc-core.smx] DEBUG: *MEMLEAKTEST* Closing map trie (ClearVoteArrays) {3, 4, 5}
L 09/22/2013 - 13:31:16: [umc-core.smx] DEBUG: *MEMLEAKTEST* Closing map trie (ClearVoteArrays) {3, 4, 5}
L 09/22/2013 - 13:31:16: [umc-core.smx] DEBUG: *MEMLEAKTEST* Closing map trie (ClearVoteArrays) {3, 4, 5}
L 09/22/2013 - 13:31:16: [umc-core.smx] DEBUG: Deleting Vote Parameters
L 09/22/2013 - 13:31:16: [umc-core.smx] DEBUG: MenuAction_End
L 09/22/2013 - 13:31:56: [umc-nominate.smx] DEBUG: Checking for chat command...
L 09/22/2013 - 13:32:08: [umc-core.smx] DEBUG: Executing Core OnMapEnd
L 09/22/2013 - 13:32:08: [umc-mapcommands.smx] DEBUG: Executing MapCommands OnMapEnd
L 09/22/2013 - 13:32:08: [umc-rockthevote.smx] DEBUG: Executing RTV OnMapEnd
L 09/22/2013 - 13:32:08: [umc-core.smx] DEBUG: Executing Core OnMapStart
L 09/22/2013 - 13:32:08: [umc-core.smx] ---------------------MAP CHANGE: deathrun_classic---------------------
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Executing AdminMenu OnConfigsExecuted
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Opening Mapcycle File umc_mapcycle.txt
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Fetching first line.
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Checking first line for UMC header: ""umc_mapcycle""
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Header was not found. Aborting.
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 1: "umc_mapcycle"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 2:   "Bomb Defuse New Maps"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "de_gwalior"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "de_dust2"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "cs_siege"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "de_ali"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "de_cache"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "de_chinatown"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "de_mirage"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "de_vertigo"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "de_nuke"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 2:   "35HP Knife Maps"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "35hp_notebook"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "35hp_csgo"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "ka_dustiest"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 2:   "AWP Sniper Maps"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "awp_real_lego_go"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "awp_india_csgo"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "awp_lego_x2"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "awp_deathrow"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 2:   "Aim Maps DeathMatch"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "$2000$_csgo"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "aim_basic"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "aim_crazyjump_go"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "fy_iceworld"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "fy_twotowers"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "ak-47_map_csgo"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "aim_zpad_v2"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 2:   "DeathRun Maps"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "deathrun_classic"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "deathrun_deluxe_csgo"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "deathrun_lego_world_final"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "deathrun_stone_extended_dz"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 2:   "Surf DeathMatch"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "surf_csgo_10x_v2"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "surf_greatriver_xdre4m_d"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "surf_green_b3"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 2:   "ZombieMoD"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "zm_dust2v2"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] 3:     "zm_fun_park"
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting filtering of map group "Bomb Defuse New Maps".
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Map found at 1
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Map Excluded? 1 (Bomb Defuse New Maps | Bomb Defuse New Maps)
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Removing invalid map "de_dust2" from group "Bomb Defuse New Maps".
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Map Group filtering completed for group "Bomb Defuse New Maps".
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting filtering of map group "35HP Knife Maps".
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Map Group filtering completed for group "35HP Knife Maps".
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting filtering of map group "AWP Sniper Maps".
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Map Group filtering completed for group "AWP Sniper Maps".
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting filtering of map group "Aim Maps DeathMatch".
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Map Group filtering completed for group "Aim Maps DeathMatch".
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting filtering of map group "DeathRun Maps".
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Map found at 0
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Map Excluded? 1 (DeathRun Maps | DeathRun Maps)
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Removing invalid map "deathrun_classic" from group "DeathRun Maps".
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Map Group filtering completed for group "DeathRun Maps".
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting filtering of map group "Surf DeathMatch".
L 09/22/2013 - 13:32:08: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-adminmenu.smx] DEBUG: Map Group filtering completed for group "Surf DeathMatch".
L 09/22/2013 - 13:32:09: [umc-adminmenu.smx] DEBUG: Starting filtering of map group "ZombieMoD".
L 09/22/2013 - 13:32:09: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-adminmenu.smx] DEBUG: Map Group filtering completed for group "ZombieMoD".
L 09/22/2013 - 13:32:09: [umc-adminmenu.smx] DEBUG: Mapcycle filtering completed.
L 09/22/2013 - 13:32:09: [umc-core.smx] DEBUG: Executing Core OnConfigsExecuted
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Executing Warnings OnConfigsExecuted
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Fetching time-warnings...
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] 1: "vote_warnings"
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] 2:   "default"
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] 2:   "10-2"
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] 2:   "1"
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] 2:   "0"
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Warning time: 10, message: {TIME} seconds until vote.
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 1
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Warning time: 9, message: {TIME} seconds until vote.
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 2
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Warning time: 8, message: {TIME} seconds until vote.
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 3
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Warning time: 7, message: {TIME} seconds until vote.
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 4
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Warning time: 6, message: {TIME} seconds until vote.
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 5
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Warning time: 5, message: {TIME} seconds until vote.
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 6
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Warning time: 4, message: {TIME} seconds until vote.
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 7
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Warning time: 3, message: {TIME} seconds until vote.
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 8
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Warning time: 2, message: {TIME} seconds until vote.
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 9
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Warning time: 1, message: 1 second until vote.
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 10
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Warning time: 0, message: {TIME} seconds until vote.
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 11
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] Successfully parsed and set up 11 vote warnings.
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Sorted Warnings: 11
L 09/22/2013 - 13:32:09: [umc-endvote-warnings.smx] DEBUG: Number of time warnings: 11
L 09/22/2013 - 13:32:09: [umc-mapcommands.smx] DEBUG: Executing MapCommands OnConfigsExecuted
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Executing Nominate OnConfigsExecuted
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Opening Mapcycle File umc_mapcycle.txt
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Fetching first line.
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Checking first line for UMC header: ""umc_mapcycle""
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Header was not found. Aborting.
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 1: "umc_mapcycle"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 2:   "Bomb Defuse New Maps"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "de_gwalior"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "de_dust2"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "cs_siege"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "de_ali"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "de_cache"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "de_chinatown"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "de_mirage"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "de_vertigo"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "de_nuke"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 2:   "35HP Knife Maps"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "35hp_notebook"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "35hp_csgo"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "ka_dustiest"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 2:   "AWP Sniper Maps"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "awp_real_lego_go"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "awp_india_csgo"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "awp_lego_x2"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "awp_deathrow"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 2:   "Aim Maps DeathMatch"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "$2000$_csgo"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "aim_basic"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "aim_crazyjump_go"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "fy_iceworld"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "fy_twotowers"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "ak-47_map_csgo"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "aim_zpad_v2"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 2:   "DeathRun Maps"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "deathrun_classic"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "deathrun_deluxe_csgo"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "deathrun_lego_world_final"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "deathrun_stone_extended_dz"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 2:   "Surf DeathMatch"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "surf_csgo_10x_v2"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "surf_greatriver_xdre4m_d"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "surf_green_b3"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 2:   "ZombieMoD"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "zm_dust2v2"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] 3:     "zm_fun_park"
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting filtering of map group "Bomb Defuse New Maps".
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Map Group filtering completed for group "Bomb Defuse New Maps".
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting filtering of map group "35HP Knife Maps".
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Map Group filtering completed for group "35HP Knife Maps".
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting filtering of map group "AWP Sniper Maps".
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Map Group filtering completed for group "AWP Sniper Maps".
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting filtering of map group "Aim Maps DeathMatch".
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Map Group filtering completed for group "Aim Maps DeathMatch".
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting filtering of map group "DeathRun Maps".
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Map found at 0
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Map Excluded? 1 (DeathRun Maps | DeathRun Maps)
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Removing invalid map "deathrun_classic" from group "DeathRun Maps".
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Map Group filtering completed for group "DeathRun Maps".
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting filtering of map group "Surf DeathMatch".
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Map Group filtering completed for group "Surf DeathMatch".
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting filtering of map group "ZombieMoD".
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Map Group filtering completed for group "ZombieMoD".
L 09/22/2013 - 13:32:09: [umc-nominate.smx] DEBUG: Mapcycle filtering completed.
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Executing RTV OnConfigsExecuted
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Opening Mapcycle File umc_mapcycle.txt
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Fetching first line.
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Checking first line for UMC header: ""umc_mapcycle""
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Header was not found. Aborting.
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 1: "umc_mapcycle"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 2:   "Bomb Defuse New Maps"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "de_gwalior"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "de_dust2"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "cs_siege"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "de_ali"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "de_cache"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "de_chinatown"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "de_mirage"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "de_vertigo"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "de_nuke"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 2:   "35HP Knife Maps"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "35hp_notebook"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "35hp_csgo"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "ka_dustiest"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 2:   "AWP Sniper Maps"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "awp_real_lego_go"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "awp_india_csgo"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "awp_lego_x2"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "awp_deathrow"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 2:   "Aim Maps DeathMatch"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "$2000$_csgo"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "aim_basic"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "aim_crazyjump_go"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "fy_iceworld"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "fy_twotowers"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "ak-47_map_csgo"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "aim_zpad_v2"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 2:   "DeathRun Maps"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "deathrun_classic"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "deathrun_deluxe_csgo"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "deathrun_lego_world_final"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "deathrun_stone_extended_dz"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 2:   "Surf DeathMatch"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "surf_csgo_10x_v2"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "surf_greatriver_xdre4m_d"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "surf_green_b3"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 2:   "ZombieMoD"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "zm_dust2v2"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] 3:     "zm_fun_park"
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Enabling RTV; setting rtv_completed flag to false
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] RTV will be made available in 30 seconds.
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting filtering of map group "Bomb Defuse New Maps".
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Map Group filtering completed for group "Bomb Defuse New Maps".
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting filtering of map group "35HP Knife Maps".
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Map Group filtering completed for group "35HP Knife Maps".
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting filtering of map group "AWP Sniper Maps".
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Map Group filtering completed for group "AWP Sniper Maps".
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting filtering of map group "Aim Maps DeathMatch".
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Map Group filtering completed for group "Aim Maps DeathMatch".
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting filtering of map group "DeathRun Maps".
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Map found at 0
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Map Excluded? 1 (DeathRun Maps | DeathRun Maps)
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Removing invalid map "deathrun_classic" from group "DeathRun Maps".
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Map Group filtering completed for group "DeathRun Maps".
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting filtering of map group "Surf DeathMatch".
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Map Group filtering completed for group "Surf DeathMatch".
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting filtering of map group "ZombieMoD".
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Map Group filtering completed for group "ZombieMoD".
L 09/22/2013 - 13:32:09: [umc-rockthevote.smx] DEBUG: Mapcycle filtering completed.
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Executing VoteCommand OnConfigsExecuted
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Opening Mapcycle File umc_mapcycle.txt
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Fetching first line.
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Checking first line for UMC header: ""umc_mapcycle""
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Header was not found. Aborting.
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 1: "umc_mapcycle"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 2:   "Bomb Defuse New Maps"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "de_gwalior"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "de_dust2"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "cs_siege"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "de_ali"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "de_cache"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "de_chinatown"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "de_mirage"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "de_vertigo"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "de_nuke"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 2:   "35HP Knife Maps"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "35hp_notebook"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "35hp_csgo"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "ka_dustiest"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 2:   "AWP Sniper Maps"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "awp_real_lego_go"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "awp_india_csgo"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "awp_lego_x2"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "awp_deathrow"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 2:   "Aim Maps DeathMatch"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "$2000$_csgo"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "aim_basic"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "aim_crazyjump_go"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "fy_iceworld"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "fy_twotowers"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "ak-47_map_csgo"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "aim_zpad_v2"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 2:   "DeathRun Maps"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "deathrun_classic"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "deathrun_deluxe_csgo"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "deathrun_lego_world_final"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "deathrun_stone_extended_dz"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 2:   "Surf DeathMatch"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "surf_csgo_10x_v2"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "surf_greatriver_xdre4m_d"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "surf_green_b3"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 2:   "ZombieMoD"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "zm_dust2v2"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] 3:     "zm_fun_park"
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting filtering of map group "Bomb Defuse New Maps".
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Map Group filtering completed for group "Bomb Defuse New Maps".
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting filtering of map group "35HP Knife Maps".
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Map Group filtering completed for group "35HP Knife Maps".
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting filtering of map group "AWP Sniper Maps".
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Map Group filtering completed for group "AWP Sniper Maps".
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting filtering of map group "Aim Maps DeathMatch".
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Map Group filtering completed for group "Aim Maps DeathMatch".
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting filtering of map group "DeathRun Maps".
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Map found at 0
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Map Excluded? 1 (DeathRun Maps | DeathRun Maps)
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Removing invalid map "deathrun_classic" from group "DeathRun Maps".
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Map Group filtering completed for group "DeathRun Maps".
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting filtering of map group "Surf DeathMatch".
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Map Group filtering completed for group "Surf DeathMatch".
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting filtering of map group "ZombieMoD".
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Map Group filtering completed for group "ZombieMoD".
L 09/22/2013 - 13:32:09: [umc-votecommand.smx] DEBUG: Mapcycle filtering completed.
L 09/22/2013 - 13:32:40: [umc-rockthevote.smx] RTV is now available.
L 09/22/2013 - 13:35:35: [umc-nominate.smx] DEBUG: Checking for chat command...
L 09/22/2013 - 13:35:59: [umc-nominate.smx] DEBUG: Checking for chat command...
L 09/22/2013 - 13:37:05: [umc-nominate.smx] DEBUG: Checking for chat command...
L 09/22/2013 - 13:37:18: [umc-core.smx] DEBUG: Executing Core OnMapEnd
L 09/22/2013 - 13:37:18: [umc-mapcommands.smx] DEBUG: Executing MapCommands OnMapEnd
L 09/22/2013 - 13:37:18: [umc-rockthevote.smx] DEBUG: Executing RTV OnMapEnd
L 09/22/2013 - 13:37:18: [umc-core.smx] DEBUG: Executing Core OnMapStart
L 09/22/2013 - 13:37:18: [umc-core.smx] ---------------------MAP CHANGE: deathrun_deluxe_csgo---------------------
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Executing AdminMenu OnConfigsExecuted
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Opening Mapcycle File umc_mapcycle.txt
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Fetching first line.
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Checking first line for UMC header: ""umc_mapcycle""
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Header was not found. Aborting.
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 1: "umc_mapcycle"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 2:   "Bomb Defuse New Maps"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "de_gwalior"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "de_dust2"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "cs_siege"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "de_ali"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "de_cache"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "de_chinatown"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "de_mirage"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "de_vertigo"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "de_nuke"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 2:   "35HP Knife Maps"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "35hp_notebook"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "35hp_csgo"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "ka_dustiest"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 2:   "AWP Sniper Maps"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "awp_real_lego_go"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "awp_india_csgo"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "awp_lego_x2"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "awp_deathrow"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 2:   "Aim Maps DeathMatch"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "$2000$_csgo"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "aim_basic"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "aim_crazyjump_go"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "fy_iceworld"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "fy_twotowers"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "ak-47_map_csgo"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "aim_zpad_v2"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 2:   "DeathRun Maps"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "deathrun_classic"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "deathrun_deluxe_csgo"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "deathrun_lego_world_final"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "deathrun_stone_extended_dz"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 2:   "Surf DeathMatch"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "surf_csgo_10x_v2"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "surf_greatriver_xdre4m_d"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "surf_green_b3"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 2:   "ZombieMoD"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "zm_dust2v2"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] 3:     "zm_fun_park"
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting filtering of map group "Bomb Defuse New Maps".
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Map found at 2
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Map Excluded? 1 (Bomb Defuse New Maps | Bomb Defuse New Maps)
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Removing invalid map "de_dust2" from group "Bomb Defuse New Maps".
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Map Group filtering completed for group "Bomb Defuse New Maps".
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting filtering of map group "35HP Knife Maps".
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Map Group filtering completed for group "35HP Knife Maps".
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting filtering of map group "AWP Sniper Maps".
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Map Group filtering completed for group "AWP Sniper Maps".
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting filtering of map group "Aim Maps DeathMatch".
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Map Group filtering completed for group "Aim Maps DeathMatch".
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting filtering of map group "DeathRun Maps".
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Map found at 1
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Map Excluded? 1 (DeathRun Maps | DeathRun Maps)
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Removing invalid map "deathrun_classic" from group "DeathRun Maps".
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Map found at 0
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Map Excluded? 1 (DeathRun Maps | DeathRun Maps)
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Removing invalid map "deathrun_deluxe_csgo" from group "DeathRun Maps".
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Map Group filtering completed for group "DeathRun Maps".
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting filtering of map group "Surf DeathMatch".
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Map Group filtering completed for group "Surf DeathMatch".
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting filtering of map group "ZombieMoD".
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Map Group filtering completed for group "ZombieMoD".
L 09/22/2013 - 13:37:19: [umc-adminmenu.smx] DEBUG: Mapcycle filtering completed.
L 09/22/2013 - 13:37:19: [umc-core.smx] DEBUG: Executing Core OnConfigsExecuted
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Executing Warnings OnConfigsExecuted
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Fetching time-warnings...
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] 1: "vote_warnings"
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] 2:   "default"
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] 2:   "10-2"
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] 2:   "1"
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] 2:   "0"
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Warning time: 10, message: {TIME} seconds until vote.
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 1
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Warning time: 9, message: {TIME} seconds until vote.
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 2
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Warning time: 8, message: {TIME} seconds until vote.
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 3
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Warning time: 7, message: {TIME} seconds until vote.
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 4
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Warning time: 6, message: {TIME} seconds until vote.
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 5
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Warning time: 5, message: {TIME} seconds until vote.
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 6
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Warning time: 4, message: {TIME} seconds until vote.
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 7
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Warning time: 3, message: {TIME} seconds until vote.
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 8
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Warning time: 2, message: {TIME} seconds until vote.
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 9
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Warning time: 1, message: 1 second until vote.
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 10
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Warning time: 0, message: {TIME} seconds until vote.
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 11
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] Successfully parsed and set up 11 vote warnings.
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Sorted Warnings: 11
L 09/22/2013 - 13:37:19: [umc-endvote-warnings.smx] DEBUG: Number of time warnings: 11
L 09/22/2013 - 13:37:19: [umc-mapcommands.smx] DEBUG: Executing MapCommands OnConfigsExecuted
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Executing Nominate OnConfigsExecuted
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Opening Mapcycle File umc_mapcycle.txt
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Fetching first line.
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Checking first line for UMC header: ""umc_mapcycle""
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Header was not found. Aborting.
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 1: "umc_mapcycle"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 2:   "Bomb Defuse New Maps"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "de_gwalior"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "de_dust2"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "cs_siege"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "de_ali"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "de_cache"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "de_chinatown"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "de_mirage"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "de_vertigo"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "de_nuke"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 2:   "35HP Knife Maps"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "35hp_notebook"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "35hp_csgo"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "ka_dustiest"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 2:   "AWP Sniper Maps"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "awp_real_lego_go"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "awp_india_csgo"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "awp_lego_x2"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "awp_deathrow"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 2:   "Aim Maps DeathMatch"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "$2000$_csgo"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "aim_basic"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "aim_crazyjump_go"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "fy_iceworld"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "fy_twotowers"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "ak-47_map_csgo"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "aim_zpad_v2"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 2:   "DeathRun Maps"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "deathrun_classic"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "deathrun_deluxe_csgo"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "deathrun_lego_world_final"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "deathrun_stone_extended_dz"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 2:   "Surf DeathMatch"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "surf_csgo_10x_v2"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "surf_greatriver_xdre4m_d"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "surf_green_b3"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 2:   "ZombieMoD"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "zm_dust2v2"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] 3:     "zm_fun_park"
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting filtering of map group "Bomb Defuse New Maps".
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Map Group filtering completed for group "Bomb Defuse New Maps".
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting filtering of map group "35HP Knife Maps".
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Map Group filtering completed for group "35HP Knife Maps".
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting filtering of map group "AWP Sniper Maps".
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Map Group filtering completed for group "AWP Sniper Maps".
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting filtering of map group "Aim Maps DeathMatch".
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Map Group filtering completed for group "Aim Maps DeathMatch".
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting filtering of map group "DeathRun Maps".
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Map found at 0
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Map Excluded? 1 (DeathRun Maps | DeathRun Maps)
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Removing invalid map "deathrun_deluxe_csgo" from group "DeathRun Maps".
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Map Group filtering completed for group "DeathRun Maps".
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting filtering of map group "Surf DeathMatch".
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Map Group filtering completed for group "Surf DeathMatch".
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting filtering of map group "ZombieMoD".
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Map Group filtering completed for group "ZombieMoD".
L 09/22/2013 - 13:37:19: [umc-nominate.smx] DEBUG: Mapcycle filtering completed.
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Executing RTV OnConfigsExecuted
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Opening Mapcycle File umc_mapcycle.txt
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Fetching first line.
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Checking first line for UMC header: ""umc_mapcycle""
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Header was not found. Aborting.
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 1: "umc_mapcycle"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 2:   "Bomb Defuse New Maps"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "de_gwalior"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "de_dust2"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "cs_siege"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "de_ali"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "de_cache"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "de_chinatown"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "de_mirage"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "de_vertigo"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "de_nuke"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 2:   "35HP Knife Maps"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "35hp_notebook"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "35hp_csgo"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "ka_dustiest"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 2:   "AWP Sniper Maps"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "awp_real_lego_go"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "awp_india_csgo"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "awp_lego_x2"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "awp_deathrow"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 2:   "Aim Maps DeathMatch"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "$2000$_csgo"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "aim_basic"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "aim_crazyjump_go"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "fy_iceworld"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "fy_twotowers"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "ak-47_map_csgo"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "aim_zpad_v2"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 2:   "DeathRun Maps"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "deathrun_classic"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "deathrun_deluxe_csgo"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "deathrun_lego_world_final"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "deathrun_stone_extended_dz"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 2:   "Surf DeathMatch"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "surf_csgo_10x_v2"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "surf_greatriver_xdre4m_d"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "surf_green_b3"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 2:   "ZombieMoD"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "zm_dust2v2"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] 3:     "zm_fun_park"
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Enabling RTV; setting rtv_completed flag to false
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] RTV will be made available in 30 seconds.
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting filtering of map group "Bomb Defuse New Maps".
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Map Group filtering completed for group "Bomb Defuse New Maps".
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting filtering of map group "35HP Knife Maps".
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Map Group filtering completed for group "35HP Knife Maps".
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting filtering of map group "AWP Sniper Maps".
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Map Group filtering completed for group "AWP Sniper Maps".
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting filtering of map group "Aim Maps DeathMatch".
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Map Group filtering completed for group "Aim Maps DeathMatch".
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting filtering of map group "DeathRun Maps".
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Map found at 0
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Map Excluded? 1 (DeathRun Maps | DeathRun Maps)
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Removing invalid map "deathrun_deluxe_csgo" from group "DeathRun Maps".
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Map Group filtering completed for group "DeathRun Maps".
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting filtering of map group "Surf DeathMatch".
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Map Group filtering completed for group "Surf DeathMatch".
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting filtering of map group "ZombieMoD".
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Map Group filtering completed for group "ZombieMoD".
L 09/22/2013 - 13:37:19: [umc-rockthevote.smx] DEBUG: Mapcycle filtering completed.
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] DEBUG: Executing VoteCommand OnConfigsExecuted
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] DEBUG: Opening Mapcycle File umc_mapcycle.txt
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] DEBUG: Fetching first line.
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] DEBUG: Checking first line for UMC header: ""umc_mapcycle""
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] DEBUG: Header was not found. Aborting.
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] 1: "umc_mapcycle"
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] 2:   "Bomb Defuse New Maps"
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] 3:     "de_gwalior"
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] 3:     "de_dust2"
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] 3:     "cs_siege"
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] 3:     "de_ali"
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] 3:     "de_cache"
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] 3:     "de_chinatown"
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] 3:     "de_mirage"
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] 3:     "de_vertigo"
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] 3:     "de_nuke"
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] 2:   "35HP Knife Maps"
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] 3:     "35hp_notebook"
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] 3:     "35hp_csgo"
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] 3:     "ka_dustiest"
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] 2:   "AWP Sniper Maps"
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] 3:     "awp_real_lego_go"
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] 3:     "awp_india_csgo"
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] 3:     "awp_lego_x2"
L 09/22/2013 - 13:37:19: [umc-votecommand.smx] 3:     "awp_deathrow"
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] 2:   "Aim Maps DeathMatch"
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] 3:     "$2000$_csgo"
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] 3:     "aim_basic"
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] 3:     "aim_crazyjump_go"
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] 3:     "fy_iceworld"
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] 3:     "fy_twotowers"
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] 3:     "ak-47_map_csgo"
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] 3:     "aim_zpad_v2"
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] 2:   "DeathRun Maps"
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] 3:     "deathrun_classic"
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] 3:     "deathrun_deluxe_csgo"
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] 3:     "deathrun_lego_world_final"
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] 3:     "deathrun_stone_extended_dz"
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] 2:   "Surf DeathMatch"
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] 3:     "surf_csgo_10x_v2"
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] 3:     "surf_greatriver_xdre4m_d"
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] 3:     "surf_green_b3"
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] 2:   "ZombieMoD"
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] 3:     "zm_dust2v2"
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] 3:     "zm_fun_park"
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting filtering of map group "Bomb Defuse New Maps".
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Map Group filtering completed for group "Bomb Defuse New Maps".
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting filtering of map group "35HP Knife Maps".
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Map Group filtering completed for group "35HP Knife Maps".
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting filtering of map group "AWP Sniper Maps".
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Map Group filtering completed for group "AWP Sniper Maps".
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting filtering of map group "Aim Maps DeathMatch".
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Map Group filtering completed for group "Aim Maps DeathMatch".
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting filtering of map group "DeathRun Maps".
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Map found at 0
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Map Excluded? 1 (DeathRun Maps | DeathRun Maps)
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Removing invalid map "deathrun_deluxe_csgo" from group "DeathRun Maps".
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Map Group filtering completed for group "DeathRun Maps".
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting filtering of map group "Surf DeathMatch".
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Map Group filtering completed for group "Surf DeathMatch".
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting filtering of map group "ZombieMoD".
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Map Group filtering completed for group "ZombieMoD".
L 09/22/2013 - 13:37:20: [umc-votecommand.smx] DEBUG: Mapcycle filtering completed.
L 09/22/2013 - 13:37:51: [umc-rockthevote.smx] RTV is now available.
L 09/22/2013 - 13:39:12: [umc-nominate.smx] DEBUG: Checking for chat command...
L 09/22/2013 - 13:39:16: [umc-core.smx] DEBUG: Executing Core OnMapEnd
L 09/22/2013 - 13:39:16: [umc-mapcommands.smx] DEBUG: Executing MapCommands OnMapEnd
L 09/22/2013 - 13:39:16: [umc-rockthevote.smx] DEBUG: Executing RTV OnMapEnd
L 09/22/2013 - 13:39:16: [umc-core.smx] DEBUG: Executing Core OnMapStart
L 09/22/2013 - 13:39:16: [umc-core.smx] ---------------------MAP CHANGE: $2000$_csgo---------------------
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Executing AdminMenu OnConfigsExecuted
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Opening Mapcycle File umc_mapcycle.txt
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Fetching first line.
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Checking first line for UMC header: ""umc_mapcycle""
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Header was not found. Aborting.
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 1: "umc_mapcycle"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 2:   "Bomb Defuse New Maps"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "de_gwalior"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "de_dust2"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "cs_siege"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "de_ali"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "de_cache"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "de_chinatown"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "de_mirage"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "de_vertigo"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "de_nuke"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 2:   "35HP Knife Maps"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "35hp_notebook"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "35hp_csgo"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "ka_dustiest"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 2:   "AWP Sniper Maps"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "awp_real_lego_go"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "awp_india_csgo"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "awp_lego_x2"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "awp_deathrow"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 2:   "Aim Maps DeathMatch"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "$2000$_csgo"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "aim_basic"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "aim_crazyjump_go"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "fy_iceworld"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "fy_twotowers"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "ak-47_map_csgo"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "aim_zpad_v2"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 2:   "DeathRun Maps"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "deathrun_classic"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "deathrun_deluxe_csgo"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "deathrun_lego_world_final"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "deathrun_stone_extended_dz"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 2:   "Surf DeathMatch"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "surf_csgo_10x_v2"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "surf_greatriver_xdre4m_d"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "surf_green_b3"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 2:   "ZombieMoD"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "zm_dust2v2"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] 3:     "zm_fun_park"
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting filtering of map group "Bomb Defuse New Maps".
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Map found at 3
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Map Excluded? 1 (Bomb Defuse New Maps | Bomb Defuse New Maps)
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Removing invalid map "de_dust2" from group "Bomb Defuse New Maps".
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Map Group filtering completed for group "Bomb Defuse New Maps".
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting filtering of map group "35HP Knife Maps".
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Map Group filtering completed for group "35HP Knife Maps".
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting filtering of map group "AWP Sniper Maps".
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Map Group filtering completed for group "AWP Sniper Maps".
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting filtering of map group "Aim Maps DeathMatch".
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Map found at 0
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Map Excluded? 1 (Aim Maps DeathMatch | Aim Maps DeathMatch)
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Removing invalid map "$2000$_csgo" from group "Aim Maps DeathMatch".
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Map Group filtering completed for group "Aim Maps DeathMatch".
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting filtering of map group "DeathRun Maps".
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Map found at 2
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Map Excluded? 1 (DeathRun Maps | DeathRun Maps)
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Removing invalid map "deathrun_classic" from group "DeathRun Maps".
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Map found at 1
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Map Excluded? 1 (DeathRun Maps | DeathRun Maps)
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Removing invalid map "deathrun_deluxe_csgo" from group "DeathRun Maps".
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Map Group filtering completed for group "DeathRun Maps".
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting filtering of map group "Surf DeathMatch".
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Map Group filtering completed for group "Surf DeathMatch".
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting filtering of map group "ZombieMoD".
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Map Group filtering completed for group "ZombieMoD".
L 09/22/2013 - 13:39:17: [umc-adminmenu.smx] DEBUG: Mapcycle filtering completed.
L 09/22/2013 - 13:39:17: [umc-core.smx] DEBUG: Executing Core OnConfigsExecuted
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Executing Warnings OnConfigsExecuted
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Fetching time-warnings...
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] 1: "vote_warnings"
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] 2:   "default"
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] 2:   "10-2"
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] 2:   "1"
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] 2:   "0"
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Warning time: 10, message: {TIME} seconds until vote.
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 1
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Warning time: 9, message: {TIME} seconds until vote.
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 2
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Warning time: 8, message: {TIME} seconds until vote.
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 3
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Warning time: 7, message: {TIME} seconds until vote.
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 4
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Warning time: 6, message: {TIME} seconds until vote.
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 5
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Warning time: 5, message: {TIME} seconds until vote.
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 6
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Warning time: 4, message: {TIME} seconds until vote.
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 7
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Warning time: 3, message: {TIME} seconds until vote.
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 8
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Warning time: 2, message: {TIME} seconds until vote.
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 9
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Warning time: 1, message: 1 second until vote.
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 10
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Warning time: 0, message: {TIME} seconds until vote.
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Number of warnings: 11
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] Successfully parsed and set up 11 vote warnings.
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Sorted Warnings: 11
L 09/22/2013 - 13:39:17: [umc-endvote-warnings.smx] DEBUG: Number of time warnings: 11
L 09/22/2013 - 13:39:17: [umc-mapcommands.smx] DEBUG: Executing MapCommands OnConfigsExecuted
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Executing Nominate OnConfigsExecuted
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Opening Mapcycle File umc_mapcycle.txt
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Fetching first line.
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Checking first line for UMC header: ""umc_mapcycle""
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Header was not found. Aborting.
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 1: "umc_mapcycle"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 2:   "Bomb Defuse New Maps"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "de_gwalior"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "de_dust2"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "cs_siege"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "de_ali"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "de_cache"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "de_chinatown"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "de_mirage"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "de_vertigo"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "de_nuke"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 2:   "35HP Knife Maps"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "35hp_notebook"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "35hp_csgo"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "ka_dustiest"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 2:   "AWP Sniper Maps"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "awp_real_lego_go"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "awp_india_csgo"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "awp_lego_x2"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "awp_deathrow"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 2:   "Aim Maps DeathMatch"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "$2000$_csgo"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "aim_basic"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "aim_crazyjump_go"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "fy_iceworld"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "fy_twotowers"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "ak-47_map_csgo"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "aim_zpad_v2"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 2:   "DeathRun Maps"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "deathrun_classic"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "deathrun_deluxe_csgo"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "deathrun_lego_world_final"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "deathrun_stone_extended_dz"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 2:   "Surf DeathMatch"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "surf_csgo_10x_v2"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "surf_greatriver_xdre4m_d"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "surf_green_b3"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 2:   "ZombieMoD"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "zm_dust2v2"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] 3:     "zm_fun_park"
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting filtering of map group "Bomb Defuse New Maps".
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Map Group filtering completed for group "Bomb Defuse New Maps".
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting filtering of map group "35HP Knife Maps".
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Map Group filtering completed for group "35HP Knife Maps".
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting filtering of map group "AWP Sniper Maps".
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Map Group filtering completed for group "AWP Sniper Maps".
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting filtering of map group "Aim Maps DeathMatch".
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Map found at 0
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Map Excluded? 1 (Aim Maps DeathMatch | Aim Maps DeathMatch)
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Removing invalid map "$2000$_csgo" from group "Aim Maps DeathMatch".
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Map Group filtering completed for group "Aim Maps DeathMatch".
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting filtering of map group "DeathRun Maps".
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Map Group filtering completed for group "DeathRun Maps".
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting filtering of map group "Surf DeathMatch".
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Map Group filtering completed for group "Surf DeathMatch".
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting filtering of map group "ZombieMoD".
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Map Group filtering completed for group "ZombieMoD".
L 09/22/2013 - 13:39:17: [umc-nominate.smx] DEBUG: Mapcycle filtering completed.
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Executing RTV OnConfigsExecuted
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Opening Mapcycle File umc_mapcycle.txt
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Fetching first line.
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Checking first line for UMC header: ""umc_mapcycle""
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Header was not found. Aborting.
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 1: "umc_mapcycle"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 2:   "Bomb Defuse New Maps"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "de_gwalior"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "de_dust2"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "cs_siege"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "de_ali"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "de_cache"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "de_chinatown"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "de_mirage"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "de_vertigo"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "de_nuke"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 2:   "35HP Knife Maps"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "35hp_notebook"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "35hp_csgo"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "ka_dustiest"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 2:   "AWP Sniper Maps"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "awp_real_lego_go"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "awp_india_csgo"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "awp_lego_x2"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "awp_deathrow"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 2:   "Aim Maps DeathMatch"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "$2000$_csgo"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "aim_basic"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "aim_crazyjump_go"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "fy_iceworld"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "fy_twotowers"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "ak-47_map_csgo"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "aim_zpad_v2"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 2:   "DeathRun Maps"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "deathrun_classic"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "deathrun_deluxe_csgo"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "deathrun_lego_world_final"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "deathrun_stone_extended_dz"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 2:   "Surf DeathMatch"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "surf_csgo_10x_v2"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "surf_greatriver_xdre4m_d"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "surf_green_b3"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 2:   "ZombieMoD"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "zm_dust2v2"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] 3:     "zm_fun_park"
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Enabling RTV; setting rtv_completed flag to false
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] RTV will be made available in 30 seconds.
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting filtering of map group "Bomb Defuse New Maps".
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Map Group filtering completed for group "Bomb Defuse New Maps".
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting filtering of map group "35HP Knife Maps".
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Map Group filtering completed for group "35HP Knife Maps".
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting filtering of map group "AWP Sniper Maps".
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Map Group filtering completed for group "AWP Sniper Maps".
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting filtering of map group "Aim Maps DeathMatch".
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Map found at 0
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Map Excluded? 1 (Aim Maps DeathMatch | Aim Maps DeathMatch)
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Removing invalid map "$2000$_csgo" from group "Aim Maps DeathMatch".
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Map Group filtering completed for group "Aim Maps DeathMatch".
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting filtering of map group "DeathRun Maps".
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Map Group filtering completed for group "DeathRun Maps".
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting filtering of map group "Surf DeathMatch".
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Map Group filtering completed for group "Surf DeathMatch".
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting filtering of map group "ZombieMoD".
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Map Group filtering completed for group "ZombieMoD".
L 09/22/2013 - 13:39:17: [umc-rockthevote.smx] DEBUG: Mapcycle filtering completed.
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] DEBUG: Executing VoteCommand OnConfigsExecuted
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] DEBUG: Opening Mapcycle File umc_mapcycle.txt
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] DEBUG: Fetching first line.
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] DEBUG: Checking first line for UMC header: ""umc_mapcycle""
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] DEBUG: Header was not found. Aborting.
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 1: "umc_mapcycle"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 2:   "Bomb Defuse New Maps"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 3:     "de_gwalior"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 3:     "de_dust2"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 3:     "cs_siege"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 3:     "de_ali"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 3:     "de_cache"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 3:     "de_chinatown"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 3:     "de_mirage"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 3:     "de_vertigo"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 3:     "de_nuke"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 2:   "35HP Knife Maps"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 3:     "35hp_notebook"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 3:     "35hp_csgo"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 3:     "ka_dustiest"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 2:   "AWP Sniper Maps"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 3:     "awp_real_lego_go"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 3:     "awp_india_csgo"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 3:     "awp_lego_x2"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 3:     "awp_deathrow"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 2:   "Aim Maps DeathMatch"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 3:     "$2000$_csgo"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 3:     "aim_basic"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 3:     "aim_crazyjump_go"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 3:     "fy_iceworld"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 3:     "fy_twotowers"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 3:     "ak-47_map_csgo"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 3:     "aim_zpad_v2"
L 09/22/2013 - 13:39:17: [umc-votecommand.smx] 2:   "DeathRun Maps"
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] 3:     "deathrun_classic"
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] 3:     "deathrun_deluxe_csgo"
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] 3:     "deathrun_lego_world_final"
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] 3:     "deathrun_stone_extended_dz"
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] 2:   "Surf DeathMatch"
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] 3:     "surf_csgo_10x_v2"
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] 3:     "surf_greatriver_xdre4m_d"
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] 3:     "surf_green_b3"
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] 2:   "ZombieMoD"
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] 3:     "zm_dust2v2"
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] 3:     "zm_fun_park"
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting filtering of map group "Bomb Defuse New Maps".
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Map Group filtering completed for group "Bomb Defuse New Maps".
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting filtering of map group "35HP Knife Maps".
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Map Group filtering completed for group "35HP Knife Maps".
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting filtering of map group "AWP Sniper Maps".
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Map Group filtering completed for group "AWP Sniper Maps".
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting filtering of map group "Aim Maps DeathMatch".
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Map found at 0
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Map Excluded? 1 (Aim Maps DeathMatch | Aim Maps DeathMatch)
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Removing invalid map "$2000$_csgo" from group "Aim Maps DeathMatch".
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Map Group filtering completed for group "Aim Maps DeathMatch".
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting filtering of map group "DeathRun Maps".
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Map Group filtering completed for group "DeathRun Maps".
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting filtering of map group "Surf DeathMatch".
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Map Group filtering completed for group "Surf DeathMatch".
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting filtering of map group "ZombieMoD".
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Starting exclusion traversal...
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Map Group filtering completed for group "ZombieMoD".
L 09/22/2013 - 13:39:18: [umc-votecommand.smx] DEBUG: Mapcycle filtering completed.
__________________


I fix/manage Servers of CS:S,CS:GO | Steam ID :- t1rath
Donations (CS:GO items) keeps me motivated.
hardy4u is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 06:10.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode