steam_hlds_log_parser 0.4.2 → 0.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/locales/en.yml +2 -2
- data/lib/steam_hlds_log_parser/handler.rb +13 -6
- data/lib/steam_hlds_log_parser/version.rb +1 -1
- data/spec/handler_spec.rb +32 -5
- data/spec/log_tester_spec.rb +32 -0
- data/spec/logs/L0000000.log +2115 -0
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
SHA512:
|
3
|
-
data.tar.gz: 3bc2eb5cc13ade49b5467b27a58ffed3630ffe3121b2bb0bf52dac7b5eb06c1d556ff3bacd8884eb397d0c541d1c6052265f6a3c5cdceb18ce862e3aa5e8e360
|
4
|
-
metadata.gz: 191dd0220f6b60bc2970e2af9c420cbe0d56d4c533d4e8ad8595883cdd28c38fd91ee40ce8bdc531738a46730e0e9c2955cac08e0dc424b8615f204e9091786c
|
5
2
|
SHA1:
|
6
|
-
data.tar.gz:
|
7
|
-
metadata.gz:
|
3
|
+
data.tar.gz: 8588c3be6473b4b92384af893e320675d4e5bcf4
|
4
|
+
metadata.gz: e62ad0ac8869299086cffe58853664aced6f2911
|
5
|
+
SHA512:
|
6
|
+
data.tar.gz: d16dd7eb2e87878e44545bf861fd81b8b8ceb96082ea9a8953b2d292fdd9ec34f7b7c2921a5a1dfc2f37f11a4e2b896cd60b564b8d31ad14ed284d04b1aaec0d
|
7
|
+
metadata.gz: 69049d39ff960880178a8cb63377f01adbc55c0ab0bb02440e7bea3f9bdd861cbd4535569184f6699d1f84ccff46deadcd4b1ee14487f955594f5c490bfddb01
|
data/lib/locales/en.yml
CHANGED
@@ -6,7 +6,7 @@ en:
|
|
6
6
|
# team
|
7
7
|
full_team_name_te: "Terrorist"
|
8
8
|
full_team_name_ct: "Counter-Terrorist"
|
9
|
-
short_team_name_te: "
|
9
|
+
short_team_name_te: "T"
|
10
10
|
short_team_name_ct: "CT"
|
11
11
|
# round conclusion types
|
12
12
|
all_hostages_rescued: "All hostages have been rescued"
|
@@ -29,7 +29,7 @@ en:
|
|
29
29
|
dropped_the_bomb: "dropped the bomb"
|
30
30
|
got_the_bomb: "got the bomb"
|
31
31
|
killed_a_hostage: "killed a hostage"
|
32
|
-
planted_the_bomb: "planted the
|
32
|
+
planted_the_bomb: "planted the bomb"
|
33
33
|
rescued_a_hostage: "rescued a hostage"
|
34
34
|
spawned_with_the_bomb: "spawned with the bomb"
|
35
35
|
touched_a_hostage: "touched a hostage"
|
@@ -43,18 +43,18 @@ module SteamHldsLogParser
|
|
43
43
|
def receive_data(data)
|
44
44
|
|
45
45
|
# L 05/10/2000 - 12:34:56: Team "CT" scored "17" with "0" players
|
46
|
-
if data.gsub(/Team "(
|
46
|
+
if data.gsub(/Team "([A-Z]+)" scored "(\d+)" with "(\d+)"/).count > 0
|
47
47
|
winner, winner_score = data.match(/Team "(.+)" scored "(\d+)" with/).captures
|
48
48
|
content = { :type => 'map_ends', :params => { :winner => get_short_team_name(winner), :score => winner_score } }
|
49
49
|
|
50
50
|
# L 05/10/2000 - 12:34:56: Team "CT" triggered "CTs_Win" (CT "3") (T "0")
|
51
|
-
elsif data.gsub(
|
51
|
+
elsif data.gsub(/: Team "[A-Z]+" triggered/).count > 0
|
52
52
|
winner, type, score_ct, score_t = data.match(/Team "([A-Z]+)" triggered "([A-Za-z_]+)" \(CT "(\d+)"\) \(T "(\d+)"\)/i).captures
|
53
53
|
content = { :type => 'victory', :params => { :score_ct => score_ct, :score_t => score_t } }
|
54
54
|
|
55
55
|
# L 05/10/2000 - 12:34:56: "Killer | Player<66><STEAM_ID_LAN><TERRORIST>" killed "Killed | Player<60><STEAM_ID_LAN><CT>" with "ak47"
|
56
56
|
elsif @options[:display_kills] && data.gsub(/(\>" killed ")/).count > 0
|
57
|
-
killer, killer_team, killed, killed_team, weapon = data.match(/"(.+)<\d
|
57
|
+
killer, killer_team, killed, killed_team, weapon = data.match(/"(.+)<\d+><.+><([A-Z]+)>" killed "(.+)<\d+><.+><([A-Z]+)>" with "(.+)"/i).captures
|
58
58
|
content = { :type => 'kill', :params => { :killer_team => get_short_team_name(killer_team), :killer => killer, :killed_team => get_short_team_name(killed_team), :killed => killed, :weapon => weapon } }
|
59
59
|
|
60
60
|
# L 05/10/2000 - 12:34:56: "Player<66><STEAM_ID_LAN><TERRORIST>" committed suicide with "worldspawn" (world)
|
@@ -63,8 +63,8 @@ module SteamHldsLogParser
|
|
63
63
|
content = { :type => 'suicide', :params => { :killed => killed } }
|
64
64
|
|
65
65
|
# L 05/10/2000 - 12:34:56: "Killer | Player<66><STEAM_ID_LAN><CT>" triggered "Defused_The_Bomb"
|
66
|
-
elsif @options[:display_actions] && data.gsub(
|
67
|
-
person, person_team, event = data.match(/: "(.+)<\d
|
66
|
+
elsif @options[:display_actions] && data.gsub(/<.+><.+>" triggered "(.+)"$/).count > 0
|
67
|
+
person, person_team, event = data.match(/: "(.+)<\d+><.+><([A-Z]+)>" triggered "(.+)"/i).captures
|
68
68
|
content = { :type => 'event', :params => { :person_team => get_short_team_name(person_team), :person => person, :event_item => event, :event_i18n => I18n.t(event.downcase)} }
|
69
69
|
|
70
70
|
# L 05/10/2000 - 12:34:56: Loading map "de_dust2"
|
@@ -74,7 +74,14 @@ module SteamHldsLogParser
|
|
74
74
|
|
75
75
|
end
|
76
76
|
|
77
|
-
|
77
|
+
# no matching pattern, no output
|
78
|
+
unless content.nil?
|
79
|
+
if @options[:displayer].nil?
|
80
|
+
return(content)
|
81
|
+
else
|
82
|
+
@options[:displayer].new(content)
|
83
|
+
end
|
84
|
+
end
|
78
85
|
|
79
86
|
end
|
80
87
|
|
data/spec/handler_spec.rb
CHANGED
@@ -71,16 +71,25 @@ module SteamHldsLogParser
|
|
71
71
|
end
|
72
72
|
end
|
73
73
|
|
74
|
-
context "when data is 'killed'" do
|
74
|
+
context "when data is 'killed' (STEAM_ID_LAN)" do
|
75
75
|
it "returns Hash on killed" do
|
76
76
|
data = '# L 05/10/2000 - 12:34:56: "Killer | Player<66><STEAM_ID_LAN><TERRORIST>" killed "Killed | Player<60><STEAM_ID_LAN><CT>" with "ak47"'
|
77
|
-
expected = {:type=>"kill", :params => {:killer_team=>"
|
77
|
+
expected = {:type=>"kill", :params => {:killer_team=>"T", :killer=>"Killer | Player", :killed_team=>"CT", :killed=>"Killed | Player", :weapon=>"ak47"}}
|
78
78
|
@handler.receive_data(data).class.should eq(Hash)
|
79
79
|
@handler.receive_data(data).should eq(expected)
|
80
80
|
end
|
81
81
|
end
|
82
82
|
|
83
|
-
context "when data is '
|
83
|
+
context "when data is 'killed' (STEAM_0:0:12345)" do
|
84
|
+
it "returns Hash on killed" do
|
85
|
+
data = '# L 05/10/2000 - 12:34:56: "Killer | Player<66><STEAM_0:0:12345><TERRORIST>" killed "Killed | Player<60><STEAM_0:0:12345><CT>" with "ak47"'
|
86
|
+
expected = {:type=>"kill", :params => {:killer_team=>"T", :killer=>"Killer | Player", :killed_team=>"CT", :killed=>"Killed | Player", :weapon=>"ak47"}}
|
87
|
+
@handler.receive_data(data).class.should eq(Hash)
|
88
|
+
@handler.receive_data(data).should eq(expected)
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
context "when data is 'suicide' (STEAM_ID_LAN)" do
|
84
93
|
it "returns Hash on suicide" do
|
85
94
|
data = '# L 05/10/2000 - 12:34:56: "Player<66><STEAM_ID_LAN><TERRORIST>" committed suicide with "worldspawn" (world)'
|
86
95
|
expected = {:type=>"suicide", :params=>{:killed=>"Player"}}
|
@@ -89,7 +98,16 @@ module SteamHldsLogParser
|
|
89
98
|
end
|
90
99
|
end
|
91
100
|
|
92
|
-
context "when data is '
|
101
|
+
context "when data is 'suicide' (STEAM_0:0:12345)" do
|
102
|
+
it "returns Hash on suicide" do
|
103
|
+
data = '# L 05/10/2000 - 12:34:56: "Player<66><STEAM_0:0:12345><TERRORIST>" committed suicide with "worldspawn" (world)'
|
104
|
+
expected = {:type=>"suicide", :params=>{:killed=>"Player"}}
|
105
|
+
@handler.receive_data(data).class.should eq(Hash)
|
106
|
+
@handler.receive_data(data).should eq(expected)
|
107
|
+
end
|
108
|
+
end
|
109
|
+
|
110
|
+
context "when data is 'event' (STEAM_ID_LAN)" do
|
93
111
|
it "returns Hash on event" do
|
94
112
|
data = '# L 05/10/2000 - 12:34:56: "Killer | Player<66><STEAM_ID_LAN><CT>" triggered "Defused_The_Bomb"'
|
95
113
|
expected = {:type=>"event", :params=> {:person_team=>"CT", :person=>"Killer | Player", :event_item=>"Defused_The_Bomb", :event_i18n=>"defused the bomb"}}
|
@@ -98,6 +116,15 @@ module SteamHldsLogParser
|
|
98
116
|
end
|
99
117
|
end
|
100
118
|
|
119
|
+
context "when data is 'event' (STEAM_0:0:12345)" do
|
120
|
+
it "returns Hash on event" do
|
121
|
+
data = '# L 05/10/2000 - 12:34:56: "Killer | Player<66><STEAM_0:0:12345><CT>" triggered "Defused_The_Bomb"'
|
122
|
+
expected = {:type=>"event", :params=> {:person_team=>"CT", :person=>"Killer | Player", :event_item=>"Defused_The_Bomb", :event_i18n=>"defused the bomb"}}
|
123
|
+
@handler.receive_data(data).class.should eq(Hash)
|
124
|
+
@handler.receive_data(data).should eq(expected)
|
125
|
+
end
|
126
|
+
end
|
127
|
+
|
101
128
|
context "when data is 'changelevel'" do
|
102
129
|
it "returns Hash on changelevel" do
|
103
130
|
data = '# L 05/10/2000 - 12:34:56: Loading map "de_dust2"'
|
@@ -123,7 +150,7 @@ module SteamHldsLogParser
|
|
123
150
|
|
124
151
|
context "when full name is given"
|
125
152
|
it "returns short name" do
|
126
|
-
@handler.get_short_team_name("TERRORIST").should eq("
|
153
|
+
@handler.get_short_team_name("TERRORIST").should eq("T")
|
127
154
|
@handler.get_short_team_name("CT").should eq("CT")
|
128
155
|
end
|
129
156
|
|
@@ -0,0 +1,32 @@
|
|
1
|
+
require "helper_spec"
|
2
|
+
|
3
|
+
module SteamHldsLogParser
|
4
|
+
|
5
|
+
describe "SteamHldsLogParser" do
|
6
|
+
|
7
|
+
before :all do
|
8
|
+
@client = Client.new("0.0.0.0", 27035)
|
9
|
+
@options = @client.options
|
10
|
+
@handler = Handler.new("", "0.0.0.0", 27035, @options)
|
11
|
+
end
|
12
|
+
|
13
|
+
describe "LogTester" do
|
14
|
+
|
15
|
+
context "when data come from a log file (2000+ lines) using STEAM_ID_LAN, STEAM_0:0:12345 and BOT" do
|
16
|
+
it "returns a Hash on matching patterns without any error" do
|
17
|
+
File.open('spec/logs/L0000000.log', 'r') do |f|
|
18
|
+
f.each_line do |line|
|
19
|
+
hash = @handler.receive_data(line)
|
20
|
+
unless hash.nil?
|
21
|
+
hash.class.should eq(Hash)
|
22
|
+
string = Displayer.new(hash).get_translation
|
23
|
+
string.class.should eq(String)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,2115 @@
|
|
1
|
+
L 08/05/2013 - 20:50:00: Log file started (file "logs/L0805064.log") (game "cstrike") (version "48/1.1.2.7/Stdio/6027")
|
2
|
+
L 08/05/2013 - 20:50:00: Loading map "de_dust2"
|
3
|
+
L 08/05/2013 - 20:50:00: Server cvars start
|
4
|
+
L 08/05/2013 - 20:50:00: Server cvar "_tutor_bomb_viewable_check_interval" = "0.5"
|
5
|
+
L 08/05/2013 - 20:50:00: Server cvar "_tutor_debug_level" = "0"
|
6
|
+
L 08/05/2013 - 20:50:00: Server cvar "_tutor_examine_time" = "0.5"
|
7
|
+
L 08/05/2013 - 20:50:00: Server cvar "_tutor_hint_interval_time" = "10.0"
|
8
|
+
L 08/05/2013 - 20:50:00: Server cvar "_tutor_look_angle" = "10"
|
9
|
+
L 08/05/2013 - 20:50:00: Server cvar "_tutor_look_distance" = "200"
|
10
|
+
L 08/05/2013 - 20:50:00: Server cvar "_tutor_message_character_display_time_coefficient" = "0.07"
|
11
|
+
L 08/05/2013 - 20:50:00: Server cvar "_tutor_message_minimum_display_time" = "1"
|
12
|
+
L 08/05/2013 - 20:50:00: Server cvar "_tutor_message_repeats" = "5"
|
13
|
+
L 08/05/2013 - 20:50:00: Server cvar "_tutor_view_distance" = "1000"
|
14
|
+
L 08/05/2013 - 20:50:00: Server cvar "allow_spectators" = "1.0"
|
15
|
+
L 08/05/2013 - 20:50:00: Server cvar "amx_client_languages" = ""
|
16
|
+
L 08/05/2013 - 20:50:00: Server cvar "amxmodx_version" = ""
|
17
|
+
L 08/05/2013 - 20:50:00: Server cvar "coop" = "0"
|
18
|
+
L 08/05/2013 - 20:50:00: Server cvar "deathmatch" = "1"
|
19
|
+
L 08/05/2013 - 20:50:00: Server cvar "decalfrequency" = "30"
|
20
|
+
L 08/05/2013 - 20:50:00: Server cvar "edgefriction" = "2"
|
21
|
+
L 08/05/2013 - 20:50:00: Server cvar "hostage_debug" = "0"
|
22
|
+
L 08/05/2013 - 20:50:00: Server cvar "hostage_stop" = "0"
|
23
|
+
L 08/05/2013 - 20:50:00: Server cvar "humans_join_team" = "any"
|
24
|
+
L 08/05/2013 - 20:50:00: Server cvar "max_queries_sec" = "3.0"
|
25
|
+
L 08/05/2013 - 20:50:00: Server cvar "max_queries_sec_global" = "30"
|
26
|
+
L 08/05/2013 - 20:50:00: Server cvar "max_queries_window" = "60"
|
27
|
+
L 08/05/2013 - 20:50:00: Server cvar "metamod_version" = "1.21p37"
|
28
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_allowmonsters" = "0"
|
29
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_autokick" = "1"
|
30
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_autokick_timeout" = "-1"
|
31
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_autoteambalance" = "1"
|
32
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_buytime" = "1.5"
|
33
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_c4timer" = "45"
|
34
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_chattime" = "10"
|
35
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_consistency" = "1"
|
36
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_fadetoblack" = "0"
|
37
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_flashlight" = "0"
|
38
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_footsteps" = "1"
|
39
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_forcecamera" = "0"
|
40
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_forcechasecam" = "0"
|
41
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_fragsleft" = "0"
|
42
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_freezetime" = "6"
|
43
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_friendlyfire" = "0"
|
44
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_ghostfrequency" = "0.1"
|
45
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_hostagepenalty" = "13"
|
46
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_kickpercent" = "0.66"
|
47
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_limitteams" = "2"
|
48
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_logdetail" = "0"
|
49
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_logfile" = "1"
|
50
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_logmessages" = "1"
|
51
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_mapvoteratio" = "0.66"
|
52
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_maxrounds" = "0"
|
53
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_mirrordamage" = "0"
|
54
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_playerid" = "0"
|
55
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_roundtime" = "5"
|
56
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_startmoney" = "800"
|
57
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_timeleft" = "0"
|
58
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_timelimit" = "0"
|
59
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_tkpunish" = "0"
|
60
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_windifference" = "1"
|
61
|
+
L 08/05/2013 - 20:50:00: Server cvar "mp_winlimit" = "0"
|
62
|
+
L 08/05/2013 - 20:50:00: Server cvar "pausable" = "1"
|
63
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_aim_damper_coefficient_x" = "0.22"
|
64
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_aim_damper_coefficient_y" = "0.22"
|
65
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_aim_deviation_x" = "2.0"
|
66
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_aim_deviation_y" = "1.0"
|
67
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_aim_influence_x_on_y" = "0.25"
|
68
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_aim_influence_y_on_x" = "0.17"
|
69
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_aim_notarget_slowdown_ratio" = "0.5"
|
70
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_aim_offset_delay" = "1.2"
|
71
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_aim_spring_stiffness_x" = "13.0"
|
72
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_aim_spring_stiffness_y" = "13.0"
|
73
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_aim_target_anticipation_ratio" = "2.2"
|
74
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_aim_type" = "4"
|
75
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_autokill" = "0.0"
|
76
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_autokilldelay" = "45.0"
|
77
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_bot_join_team" = "ANY"
|
78
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_bot_quota_match" = "0.0"
|
79
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_chat" = "1"
|
80
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_dangerfactor" = "800"
|
81
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_detailnames" = "0"
|
82
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_ffa" = "0"
|
83
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_firsthumanrestart" = "0"
|
84
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_jasonmode" = "0"
|
85
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_latencybot" = "0"
|
86
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_mapstartbotdelay" = "5"
|
87
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_maxbots" = "0"
|
88
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_maxbotskill" = "100"
|
89
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_maxcamptime" = "30"
|
90
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_maxweaponpickup" = "3"
|
91
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_minbots" = "0"
|
92
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_minbotskill" = "60"
|
93
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_numfollowuser" = "3"
|
94
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_radio" = "1"
|
95
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_restrequipammo" = "000000000"
|
96
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_restrweapons" = "00000000000000000000000000"
|
97
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_shootthruwalls" = "1"
|
98
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_skin" = "5"
|
99
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_spray" = "1"
|
100
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_timer_grenade" = "0.5"
|
101
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_timer_pickup" = "0.3"
|
102
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_timer_sound" = "1.0"
|
103
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_usespeech" = "1"
|
104
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_version" = "V3B22"
|
105
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_welcomemsgs" = "1"
|
106
|
+
L 08/05/2013 - 20:50:00: Server cvar "pb_wptfolder" = "wptdefault"
|
107
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_accelerate" = "10"
|
108
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_aim" = "1"
|
109
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_airaccelerate" = "10"
|
110
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_allowupload" = "1"
|
111
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_bounce" = "1"
|
112
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_cheats" = "0"
|
113
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_clienttrace" = "1"
|
114
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_contact" = ""
|
115
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_friction" = "4"
|
116
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_gravity" = "800"
|
117
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_logblocks" = "0"
|
118
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_maxrate" = "0"
|
119
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_maxspeed" = "320"
|
120
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_minrate" = "0"
|
121
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_password" = ""
|
122
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_proxies" = "1"
|
123
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_restart" = "0"
|
124
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_restartround" = "0"
|
125
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_stepsize" = "18"
|
126
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_stopspeed" = "100"
|
127
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_uploadmax" = "0.5"
|
128
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_voiceenable" = "1"
|
129
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_wateraccelerate" = "10"
|
130
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_waterfriction" = "1"
|
131
|
+
L 08/05/2013 - 20:50:00: Server cvars end
|
132
|
+
L 08/05/2013 - 20:50:00: Server cvar "amxmodx_version" = "1.8.2"
|
133
|
+
L 08/05/2013 - 20:50:00: Server cvar "sv_maxspeed" = "900"
|
134
|
+
L 08/05/2013 - 20:50:00: Server cvar "pausable" = "0"
|
135
|
+
L 08/05/2013 - 20:50:05: Server cvar "pb_mapstartbotdelay" = "10"
|
136
|
+
L 08/05/2013 - 20:50:05: Podbot mm - Visibility Table file (pvi) exists and is newer than the waypoint file (pwf).
|
137
|
+
L 08/05/2013 - 20:50:05: Podbot mm - Loading & decompressing Visibility Table
|
138
|
+
L 08/05/2013 - 20:50:05: Podbot mm - Visibility Table loaded from File...
|
139
|
+
L 08/05/2013 - 20:50:05: Server cvar "amx_language" = "en"
|
140
|
+
L 08/05/2013 - 20:50:05: Server cvar "amx_client_languages" = "1"
|
141
|
+
L 08/05/2013 - 20:50:05: Server cvar "amx_nextmap" = "de_dust2"
|
142
|
+
L 08/05/2013 - 20:50:06: Server cvar "sv_accelerate" = "5"
|
143
|
+
L 08/05/2013 - 20:50:06: Server cvar "sv_stopspeed" = "75"
|
144
|
+
L 08/05/2013 - 20:50:17: Started map "de_dust2" (CRC "1159425449")
|
145
|
+
L 08/05/2013 - 20:50:17: Server cvar "pb_welcomemsgs" = "0"
|
146
|
+
L 08/05/2013 - 20:50:17: Server cvar "pb_usespeech" = "0"
|
147
|
+
L 08/05/2013 - 20:50:17: Server cvar "pb_minbots" = "7"
|
148
|
+
L 08/05/2013 - 20:50:17: Server cvar "pb_maxbots" = "16"
|
149
|
+
L 08/05/2013 - 20:50:17: Server cvar "pb_bot_quota_match" = "0"
|
150
|
+
L 08/05/2013 - 20:50:17: Server cvar "pb_timer_sound" = "0.5"
|
151
|
+
L 08/05/2013 - 20:50:17: Server cvar "pb_numfollowuser" = "5"
|
152
|
+
L 08/05/2013 - 20:50:17: Server cvar "pb_minbotskill" = "95"
|
153
|
+
L 08/05/2013 - 20:50:17: Server cvar "pb_maxweaponpickup" = "10"
|
154
|
+
L 08/05/2013 - 20:50:17: Server cvar "pb_autokill" = "0"
|
155
|
+
L 08/05/2013 - 20:50:17: Server cvar "pb_autokilldelay" = "45"
|
156
|
+
L 08/05/2013 - 20:50:17: Server cvar "pb_dangerfactor" = "2000"
|
157
|
+
L 08/05/2013 - 20:50:17: Server cvar "pb_chat" = "0"
|
158
|
+
L 08/05/2013 - 20:50:17: Server cvar "pb_latencybot" = "2"
|
159
|
+
L 08/05/2013 - 20:50:17: Server cvar "pb_restrweapons" = "00000000000000000000000001"
|
160
|
+
L 08/05/2013 - 20:50:17: Server cvar "sv_aim" = "0"
|
161
|
+
L 08/05/2013 - 20:50:17: Server cvar "sv_maxspeed" = "320"
|
162
|
+
L 08/05/2013 - 20:50:17: Server cvar "mp_timelimit" = "20"
|
163
|
+
L 08/05/2013 - 20:50:17: Server cvar "sv_minrate" = "15000"
|
164
|
+
L 08/05/2013 - 20:50:17: Server cvar "sv_maxrate" = "25000"
|
165
|
+
L 08/05/2013 - 20:50:24: World triggered "Round_Start"
|
166
|
+
L 08/05/2013 - 20:50:26: "Chris_Rock<1><BOT><>" entered the game
|
167
|
+
L 08/05/2013 - 20:50:26: "Chris_Rock<1><BOT><>" joined team "CT"
|
168
|
+
L 08/05/2013 - 20:50:27: "Make my Day<2><BOT><>" entered the game
|
169
|
+
L 08/05/2013 - 20:50:27: "Make my Day<2><BOT><>" joined team "TERRORIST"
|
170
|
+
L 08/05/2013 - 20:50:27: World triggered "Game_Commencing"
|
171
|
+
L 08/05/2013 - 20:50:27: World triggered "Game_Commencing" (CT "0") (T "0")
|
172
|
+
L 08/05/2013 - 20:50:27: World triggered "Round_End"
|
173
|
+
L 08/05/2013 - 20:50:27: "Jet_Li<3><BOT><>" entered the game
|
174
|
+
L 08/05/2013 - 20:50:27: "Jet_Li<3><BOT><>" joined team "TERRORIST"
|
175
|
+
L 08/05/2013 - 20:50:28: "Quentin_Tarantino<4><BOT><>" entered the game
|
176
|
+
L 08/05/2013 - 20:50:28: "Quentin_Tarantino<4><BOT><>" joined team "CT"
|
177
|
+
L 08/05/2013 - 20:50:28: "Marylin_Monroe<5><BOT><>" entered the game
|
178
|
+
L 08/05/2013 - 20:50:28: "Marylin_Monroe<5><BOT><>" joined team "TERRORIST"
|
179
|
+
L 08/05/2013 - 20:50:29: "Stacy_Keech<6><BOT><>" entered the game
|
180
|
+
L 08/05/2013 - 20:50:29: "Stacy_Keech<6><BOT><>" joined team "CT"
|
181
|
+
L 08/05/2013 - 20:50:29: "Fuzzy Logic<7><BOT><>" entered the game
|
182
|
+
L 08/05/2013 - 20:50:29: "Fuzzy Logic<7><BOT><>" joined team "TERRORIST"
|
183
|
+
L 08/05/2013 - 20:50:30: "Make my Day<2><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
184
|
+
L 08/05/2013 - 20:50:30: "Blah<8><STEAM_0:0:67410624><>" connected, address "192.168.1.10:27005"
|
185
|
+
L 08/05/2013 - 20:50:31: "Blah<8><STEAM_0:0:67410624><>" STEAM USERID validated
|
186
|
+
L 08/05/2013 - 20:50:33: "Blah<8><STEAM_0:0:67410624><>" entered the game
|
187
|
+
L 08/05/2013 - 20:50:36: World triggered "Round_Start"
|
188
|
+
L 08/05/2013 - 20:50:38: "Blah<8><STEAM_0:0:67410624><>" joined team "CT"
|
189
|
+
L 08/05/2013 - 20:50:50: "Fuzzy Logic<7><BOT><TERRORIST>" killed "Chris_Rock<1><BOT><CT>" with "deagle"
|
190
|
+
L 08/05/2013 - 20:51:03: "Blah<8><STEAM_0:0:67410624><CT>" killed "Make my Day<2><BOT><TERRORIST>" with "usp"
|
191
|
+
L 08/05/2013 - 20:51:03: "Make my Day<2><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
192
|
+
L 08/05/2013 - 20:51:07: "Blah<8><STEAM_0:0:67410624><CT>" say_team "[ ## BOMB ## ]"
|
193
|
+
L 08/05/2013 - 20:51:14: "Jet_Li<3><BOT><TERRORIST>" killed "Stacy_Keech<6><BOT><CT>" with "deagle"
|
194
|
+
L 08/05/2013 - 20:51:21: "Jet_Li<3><BOT><TERRORIST>" killed "Blah<8><STEAM_0:0:67410624><CT>" with "deagle"
|
195
|
+
L 08/05/2013 - 20:51:22: "Quentin_Tarantino<4><BOT><CT>" killed "Jet_Li<3><BOT><TERRORIST>" with "p228"
|
196
|
+
L 08/05/2013 - 20:51:30: "L33t B0t<9><BOT><>" entered the game
|
197
|
+
L 08/05/2013 - 20:51:30: Kick: "Chris_Rock<1><STEAM_0:0:0><>" was kicked by "Console"
|
198
|
+
L 08/05/2013 - 20:51:30: "Chris_Rock<1><BOT><CT>" disconnected
|
199
|
+
L 08/05/2013 - 20:51:30: "L33t B0t<9><BOT><>" joined team "CT"
|
200
|
+
L 08/05/2013 - 20:51:30: "Heather_Graham<10><BOT><>" entered the game
|
201
|
+
L 08/05/2013 - 20:51:30: "Heather_Graham<10><BOT><>" joined team "TERRORIST"
|
202
|
+
L 08/05/2013 - 20:51:31: "Polymorph<11><BOT><>" entered the game
|
203
|
+
L 08/05/2013 - 20:51:31: "Polymorph<11><BOT><>" joined team "CT"
|
204
|
+
L 08/05/2013 - 20:51:31: "Sigourney_Weaver<12><BOT><>" entered the game
|
205
|
+
L 08/05/2013 - 20:51:31: "Sigourney_Weaver<12><BOT><>" joined team "TERRORIST"
|
206
|
+
L 08/05/2013 - 20:51:35: "Will_Smith<13><BOT><>" entered the game
|
207
|
+
L 08/05/2013 - 20:51:35: "Will_Smith<13><BOT><>" joined team "CT"
|
208
|
+
L 08/05/2013 - 20:51:36: "Marylin_Monroe<5><BOT><TERRORIST>" triggered "Got_The_Bomb"
|
209
|
+
L 08/05/2013 - 20:51:58: "Marylin_Monroe<5><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
210
|
+
L 08/05/2013 - 20:51:58: "Quentin_Tarantino<4><BOT><CT>" killed "Fuzzy Logic<7><BOT><TERRORIST>" with "p228"
|
211
|
+
L 08/05/2013 - 20:52:35: "Quentin_Tarantino<4><BOT><CT>" killed "Marylin_Monroe<5><BOT><TERRORIST>" with "p228"
|
212
|
+
L 08/05/2013 - 20:52:43: Team "TERRORIST" triggered "Target_Bombed" (CT "0") (T "1")
|
213
|
+
L 08/05/2013 - 20:52:43: World triggered "Round_End"
|
214
|
+
L 08/05/2013 - 20:52:48: "Make my Day<2><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
215
|
+
L 08/05/2013 - 20:52:54: World triggered "Round_Start"
|
216
|
+
L 08/05/2013 - 20:53:13: "Marylin_Monroe<5><BOT><TERRORIST>" killed "Stacy_Keech<6><BOT><CT>" with "ak47"
|
217
|
+
L 08/05/2013 - 20:53:22: "Polymorph<11><BOT><CT>" killed "Fuzzy Logic<7><BOT><TERRORIST>" with "mp5navy"
|
218
|
+
L 08/05/2013 - 20:53:33: "Blah<8><STEAM_0:0:67410624><CT>" killed "Sigourney_Weaver<12><BOT><TERRORIST>" with "ak47"
|
219
|
+
L 08/05/2013 - 20:53:43: "Marylin_Monroe<5><BOT><TERRORIST>" killed "Will_Smith<13><BOT><CT>" with "ak47"
|
220
|
+
L 08/05/2013 - 20:53:50: "Blah<8><STEAM_0:0:67410624><CT>" killed "Marylin_Monroe<5><BOT><TERRORIST>" with "grenade"
|
221
|
+
L 08/05/2013 - 20:53:51: "Heather_Graham<10><BOT><TERRORIST>" killed "Blah<8><STEAM_0:0:67410624><CT>" with "scout"
|
222
|
+
L 08/05/2013 - 20:54:04: "Make my Day<2><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
223
|
+
L 08/05/2013 - 20:54:06: "Heather_Graham<10><BOT><TERRORIST>" killed "Polymorph<11><BOT><CT>" with "scout"
|
224
|
+
L 08/05/2013 - 20:54:18: "Quentin_Tarantino<4><BOT><CT>" killed "Jet_Li<3><BOT><TERRORIST>" with "p228"
|
225
|
+
L 08/05/2013 - 20:54:26: "Heather_Graham<10><BOT><TERRORIST>" killed "Quentin_Tarantino<4><BOT><CT>" with "grenade"
|
226
|
+
L 08/05/2013 - 20:54:28: "L33t B0t<9><BOT><CT>" killed "Heather_Graham<10><BOT><TERRORIST>" with "usp"
|
227
|
+
L 08/05/2013 - 20:54:49: Team "TERRORIST" triggered "Target_Bombed" (CT "0") (T "2")
|
228
|
+
L 08/05/2013 - 20:54:49: World triggered "Round_End"
|
229
|
+
L 08/05/2013 - 20:54:54: "Jet_Li<3><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
230
|
+
L 08/05/2013 - 20:55:00: World triggered "Round_Start"
|
231
|
+
L 08/05/2013 - 20:55:16: "Heather_Graham<10><BOT><TERRORIST>" killed "Polymorph<11><BOT><CT>" with "galil"
|
232
|
+
L 08/05/2013 - 20:55:17: "Jet_Li<3><BOT><TERRORIST>" killed "Stacy_Keech<6><BOT><CT>" with "sg552"
|
233
|
+
L 08/05/2013 - 20:55:19: "Will_Smith<13><BOT><CT>" killed "Jet_Li<3><BOT><TERRORIST>" with "ump45"
|
234
|
+
L 08/05/2013 - 20:55:19: "Jet_Li<3><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
235
|
+
L 08/05/2013 - 20:55:20: "Sigourney_Weaver<12><BOT><TERRORIST>" killed "L33t B0t<9><BOT><CT>" with "galil"
|
236
|
+
L 08/05/2013 - 20:55:24: "Sigourney_Weaver<12><BOT><TERRORIST>" killed "Blah<8><STEAM_0:0:67410624><CT>" with "galil"
|
237
|
+
L 08/05/2013 - 20:55:26: "Marylin_Monroe<5><BOT><TERRORIST>" killed "Will_Smith<13><BOT><CT>" with "ak47"
|
238
|
+
L 08/05/2013 - 20:55:28: "Marylin_Monroe<5><BOT><TERRORIST>" triggered "Got_The_Bomb"
|
239
|
+
L 08/05/2013 - 20:55:55: "Fuzzy Logic<7><BOT><TERRORIST>" killed "Quentin_Tarantino<4><BOT><CT>" with "sg552"
|
240
|
+
L 08/05/2013 - 20:55:55: Team "TERRORIST" triggered "Terrorists_Win" (CT "0") (T "3")
|
241
|
+
L 08/05/2013 - 20:55:55: World triggered "Round_End"
|
242
|
+
L 08/05/2013 - 20:55:57: "Marylin_Monroe<5><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
243
|
+
L 08/05/2013 - 20:56:00: "Marylin_Monroe<5><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
244
|
+
L 08/05/2013 - 20:56:06: World triggered "Round_Start"
|
245
|
+
L 08/05/2013 - 20:56:30: "Make my Day<2><BOT><TERRORIST>" killed "Blah<8><STEAM_0:0:67410624><CT>" with "sg552"
|
246
|
+
L 08/05/2013 - 20:56:38: "L33t B0t<9><BOT><CT>" killed "Jet_Li<3><BOT><TERRORIST>" with "tmp"
|
247
|
+
L 08/05/2013 - 20:56:43: "Make my Day<2><BOT><TERRORIST>" killed "Stacy_Keech<6><BOT><CT>" with "sg552"
|
248
|
+
L 08/05/2013 - 20:56:50: "Polymorph<11><BOT><CT>" killed "Make my Day<2><BOT><TERRORIST>" with "ump45"
|
249
|
+
L 08/05/2013 - 20:56:56: "Sigourney_Weaver<12><BOT><TERRORIST>" killed "Quentin_Tarantino<4><BOT><CT>" with "sg552"
|
250
|
+
L 08/05/2013 - 20:57:01: "Marylin_Monroe<5><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
251
|
+
L 08/05/2013 - 20:57:11: "Will_Smith<13><BOT><CT>" killed "Sigourney_Weaver<12><BOT><TERRORIST>" with "m3"
|
252
|
+
L 08/05/2013 - 20:57:14: "Marylin_Monroe<5><BOT><TERRORIST>" killed "L33t B0t<9><BOT><CT>" with "ak47"
|
253
|
+
L 08/05/2013 - 20:57:25: "Marylin_Monroe<5><BOT><TERRORIST>" killed "Polymorph<11><BOT><CT>" with "ak47"
|
254
|
+
L 08/05/2013 - 20:57:46: Team "TERRORIST" triggered "Target_Bombed" (CT "0") (T "4")
|
255
|
+
L 08/05/2013 - 20:57:46: World triggered "Round_End"
|
256
|
+
L 08/05/2013 - 20:57:51: "Fuzzy Logic<7><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
257
|
+
L 08/05/2013 - 20:57:57: World triggered "Round_Start"
|
258
|
+
L 08/05/2013 - 20:58:19: "Will_Smith<13><BOT><CT>" killed "Jet_Li<3><BOT><TERRORIST>" with "famas"
|
259
|
+
L 08/05/2013 - 20:58:32: "Blah<8><STEAM_0:0:67410624><CT>" disconnected
|
260
|
+
L 08/05/2013 - 20:58:32: "Heather_Locklear<14><BOT><>" entered the game
|
261
|
+
L 08/05/2013 - 20:58:32: "Heather_Locklear<14><BOT><>" joined team "CT"
|
262
|
+
L 08/05/2013 - 20:58:47: "Make my Day<2><BOT><TERRORIST>" killed "Polymorph<11><BOT><CT>" with "galil"
|
263
|
+
L 08/05/2013 - 20:58:48: "Blah<15><STEAM_0:0:67410624><>" connected, address "192.168.1.1:27005"
|
264
|
+
L 08/05/2013 - 20:58:49: "Blah<15><STEAM_0:0:67410624><>" STEAM USERID validated
|
265
|
+
L 08/05/2013 - 20:58:50: "Stacy_Keech<6><BOT><CT>" killed "Make my Day<2><BOT><TERRORIST>" with "m4a1"
|
266
|
+
L 08/05/2013 - 20:58:51: Kick: "Heather_Graham<10><STEAM_0:0:4><>" was kicked by "Console"
|
267
|
+
L 08/05/2013 - 20:58:51: "Heather_Graham<10><BOT><TERRORIST>" disconnected
|
268
|
+
L 08/05/2013 - 20:58:51: "Blah<15><STEAM_0:0:67410624><>" entered the game
|
269
|
+
L 08/05/2013 - 20:58:54: "Blah<15><STEAM_0:0:67410624><>" joined team "TERRORIST"
|
270
|
+
L 08/05/2013 - 20:59:05: "Quentin_Tarantino<4><BOT><CT>" committed suicide with "world"
|
271
|
+
L 08/05/2013 - 20:59:05: "Marylin_Monroe<5><BOT><TERRORIST>" committed suicide with "world"
|
272
|
+
L 08/05/2013 - 20:59:05: "Stacy_Keech<6><BOT><CT>" committed suicide with "world"
|
273
|
+
L 08/05/2013 - 20:59:05: "Fuzzy Logic<7><BOT><TERRORIST>" committed suicide with "world"
|
274
|
+
L 08/05/2013 - 20:59:05: "Fuzzy Logic<7><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
275
|
+
L 08/05/2013 - 20:59:05: "L33t B0t<9><BOT><CT>" committed suicide with "world"
|
276
|
+
L 08/05/2013 - 20:59:05: "Sigourney_Weaver<12><BOT><TERRORIST>" committed suicide with "world"
|
277
|
+
L 08/05/2013 - 20:59:05: Team "CT" triggered "CTs_Win" (CT "1") (T "4")
|
278
|
+
L 08/05/2013 - 20:59:05: World triggered "Round_End"
|
279
|
+
L 08/05/2013 - 20:59:05: "Will_Smith<13><BOT><CT>" committed suicide with "world"
|
280
|
+
L 08/05/2013 - 20:59:10: "Blah<15><STEAM_0:0:67410624><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
281
|
+
L 08/05/2013 - 20:59:15: "Make my Day<2><BOT><TERRORIST>" committed suicide with "world"
|
282
|
+
L 08/05/2013 - 20:59:15: "Jet_Li<3><BOT><TERRORIST>" committed suicide with "world"
|
283
|
+
L 08/05/2013 - 20:59:15: "Quentin_Tarantino<4><BOT><CT>" committed suicide with "world"
|
284
|
+
L 08/05/2013 - 20:59:15: "Marylin_Monroe<5><BOT><TERRORIST>" committed suicide with "world"
|
285
|
+
L 08/05/2013 - 20:59:15: "Stacy_Keech<6><BOT><CT>" committed suicide with "world"
|
286
|
+
L 08/05/2013 - 20:59:15: "Fuzzy Logic<7><BOT><TERRORIST>" committed suicide with "world"
|
287
|
+
L 08/05/2013 - 20:59:15: "Heather_Locklear<14><BOT><CT>" committed suicide with "world"
|
288
|
+
L 08/05/2013 - 20:59:15: "L33t B0t<9><BOT><CT>" committed suicide with "world"
|
289
|
+
L 08/05/2013 - 20:59:15: "Polymorph<11><BOT><CT>" committed suicide with "world"
|
290
|
+
L 08/05/2013 - 20:59:15: "Sigourney_Weaver<12><BOT><TERRORIST>" committed suicide with "world"
|
291
|
+
L 08/05/2013 - 20:59:15: "Will_Smith<13><BOT><CT>" committed suicide with "world"
|
292
|
+
L 08/05/2013 - 20:59:15: Team "TERRORIST" triggered "Terrorists_Win" (CT "1") (T "5")
|
293
|
+
L 08/05/2013 - 20:59:15: World triggered "Round_End"
|
294
|
+
L 08/05/2013 - 20:59:16: World triggered "Round_Start"
|
295
|
+
L 08/05/2013 - 20:59:20: "Make my Day<2><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
296
|
+
L 08/05/2013 - 20:59:26: World triggered "Round_Start"
|
297
|
+
L 08/05/2013 - 20:59:37: "Blah<15><STEAM_0:0:67410624><TERRORIST>" killed "L33t B0t<9><BOT><CT>" with "ak47"
|
298
|
+
L 08/05/2013 - 20:59:44: "Polymorph<11><BOT><CT>" killed "Blah<15><STEAM_0:0:67410624><TERRORIST>" with "deagle"
|
299
|
+
L 08/05/2013 - 20:59:48: "Fuzzy Logic<7><BOT><TERRORIST>" killed "Heather_Locklear<14><BOT><CT>" with "sg552"
|
300
|
+
L 08/05/2013 - 20:59:49: "Make my Day<2><BOT><TERRORIST>" committed suicide with "world"
|
301
|
+
L 08/05/2013 - 20:59:49: "Make my Day<2><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
302
|
+
L 08/05/2013 - 20:59:49: "Jet_Li<3><BOT><TERRORIST>" committed suicide with "world"
|
303
|
+
L 08/05/2013 - 20:59:49: "Quentin_Tarantino<4><BOT><CT>" committed suicide with "world"
|
304
|
+
L 08/05/2013 - 20:59:49: "Marylin_Monroe<5><BOT><TERRORIST>" committed suicide with "world"
|
305
|
+
L 08/05/2013 - 20:59:49: "Stacy_Keech<6><BOT><CT>" committed suicide with "world"
|
306
|
+
L 08/05/2013 - 20:59:49: "Fuzzy Logic<7><BOT><TERRORIST>" committed suicide with "world"
|
307
|
+
L 08/05/2013 - 20:59:49: "Polymorph<11><BOT><CT>" committed suicide with "world"
|
308
|
+
L 08/05/2013 - 20:59:49: "Sigourney_Weaver<12><BOT><TERRORIST>" committed suicide with "world"
|
309
|
+
L 08/05/2013 - 20:59:49: Team "CT" triggered "CTs_Win" (CT "2") (T "5")
|
310
|
+
L 08/05/2013 - 20:59:49: World triggered "Round_End"
|
311
|
+
L 08/05/2013 - 20:59:49: "Will_Smith<13><BOT><CT>" committed suicide with "world"
|
312
|
+
L 08/05/2013 - 20:59:54: "Jet_Li<3><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
313
|
+
L 08/05/2013 - 21:00:00: World triggered "Round_Start"
|
314
|
+
L 08/05/2013 - 21:00:15: "Stacy_Keech<6><BOT><CT>" killed "Marylin_Monroe<5><BOT><TERRORIST>" with "m4a1"
|
315
|
+
L 08/05/2013 - 21:00:15: "Heather_Locklear<14><BOT><CT>" killed "Sigourney_Weaver<12><BOT><TERRORIST>" with "usp"
|
316
|
+
L 08/05/2013 - 21:00:16: "Stacy_Keech<6><BOT><CT>" killed "Make my Day<2><BOT><TERRORIST>" with "m4a1"
|
317
|
+
L 08/05/2013 - 21:00:21: "Fuzzy Logic<7><BOT><TERRORIST>" killed "Heather_Locklear<14><BOT><CT>" with "ump45"
|
318
|
+
L 08/05/2013 - 21:00:28: "Stacy_Keech<6><BOT><CT>" killed "Jet_Li<3><BOT><TERRORIST>" with "m4a1"
|
319
|
+
L 08/05/2013 - 21:00:28: "Jet_Li<3><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
320
|
+
L 08/05/2013 - 21:00:44: "Fuzzy Logic<7><BOT><TERRORIST>" killed "Quentin_Tarantino<4><BOT><CT>" with "ump45"
|
321
|
+
L 08/05/2013 - 21:00:45: "Will_Smith<13><BOT><CT>" killed "Fuzzy Logic<7><BOT><TERRORIST>" with "scout"
|
322
|
+
L 08/05/2013 - 21:00:53: "Stacy_Keech<6><BOT><CT>" killed "Blah<15><STEAM_0:0:67410624><TERRORIST>" with "m4a1"
|
323
|
+
L 08/05/2013 - 21:00:53: Team "CT" triggered "CTs_Win" (CT "3") (T "5")
|
324
|
+
L 08/05/2013 - 21:00:53: World triggered "Round_End"
|
325
|
+
L 08/05/2013 - 21:00:58: "Marylin_Monroe<5><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
326
|
+
L 08/05/2013 - 21:01:04: World triggered "Round_Start"
|
327
|
+
L 08/05/2013 - 21:01:15: "Polymorph<11><BOT><CT>" killed "Blah<15><STEAM_0:0:67410624><TERRORIST>" with "m4a1"
|
328
|
+
L 08/05/2013 - 21:01:22: "Stacy_Keech<6><BOT><CT>" killed "Sigourney_Weaver<12><BOT><TERRORIST>" with "m4a1"
|
329
|
+
L 08/05/2013 - 21:01:23: "Make my Day<2><BOT><TERRORIST>" committed suicide with "world"
|
330
|
+
L 08/05/2013 - 21:01:23: "Jet_Li<3><BOT><TERRORIST>" committed suicide with "world"
|
331
|
+
L 08/05/2013 - 21:01:23: "Quentin_Tarantino<4><BOT><CT>" committed suicide with "world"
|
332
|
+
L 08/05/2013 - 21:01:23: "Marylin_Monroe<5><BOT><TERRORIST>" committed suicide with "world"
|
333
|
+
L 08/05/2013 - 21:01:23: "Marylin_Monroe<5><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
334
|
+
L 08/05/2013 - 21:01:23: "Stacy_Keech<6><BOT><CT>" committed suicide with "world"
|
335
|
+
L 08/05/2013 - 21:01:23: "Fuzzy Logic<7><BOT><TERRORIST>" committed suicide with "world"
|
336
|
+
L 08/05/2013 - 21:01:23: Team "CT" triggered "CTs_Win" (CT "4") (T "5")
|
337
|
+
L 08/05/2013 - 21:01:23: World triggered "Round_End"
|
338
|
+
L 08/05/2013 - 21:01:23: "Heather_Locklear<14><BOT><CT>" committed suicide with "world"
|
339
|
+
L 08/05/2013 - 21:01:23: "L33t B0t<9><BOT><CT>" committed suicide with "world"
|
340
|
+
L 08/05/2013 - 21:01:23: "Polymorph<11><BOT><CT>" committed suicide with "world"
|
341
|
+
L 08/05/2013 - 21:01:23: "Will_Smith<13><BOT><CT>" committed suicide with "world"
|
342
|
+
L 08/05/2013 - 21:01:28: "Fuzzy Logic<7><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
343
|
+
L 08/05/2013 - 21:01:34: World triggered "Round_Start"
|
344
|
+
L 08/05/2013 - 21:01:48: "Sigourney_Weaver<12><BOT><TERRORIST>" killed "L33t B0t<9><BOT><CT>" with "galil"
|
345
|
+
L 08/05/2013 - 21:01:52: "Sigourney_Weaver<12><BOT><TERRORIST>" killed "Will_Smith<13><BOT><CT>" with "galil"
|
346
|
+
L 08/05/2013 - 21:01:53: "Quentin_Tarantino<4><BOT><CT>" killed "Make my Day<2><BOT><TERRORIST>" with "m4a1"
|
347
|
+
L 08/05/2013 - 21:01:59: "Polymorph<11><BOT><CT>" killed "Sigourney_Weaver<12><BOT><TERRORIST>" with "aug"
|
348
|
+
L 08/05/2013 - 21:02:02: "Fuzzy Logic<7><BOT><TERRORIST>" killed "Polymorph<11><BOT><CT>" with "ak47"
|
349
|
+
L 08/05/2013 - 21:02:02: "Marylin_Monroe<5><BOT><TERRORIST>" killed "Quentin_Tarantino<4><BOT><CT>" with "mp5navy"
|
350
|
+
L 08/05/2013 - 21:02:11: "Heather_Locklear<14><BOT><CT>" killed "Marylin_Monroe<5><BOT><TERRORIST>" with "usp"
|
351
|
+
L 08/05/2013 - 21:02:12: "Fuzzy Logic<7><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
352
|
+
L 08/05/2013 - 21:02:26: "Stacy_Keech<6><BOT><CT>" killed "Blah<15><STEAM_0:0:67410624><TERRORIST>" with "sg550"
|
353
|
+
L 08/05/2013 - 21:02:39: "Heather_Locklear<14><BOT><CT>" killed "Jet_Li<3><BOT><TERRORIST>" with "usp"
|
354
|
+
L 08/05/2013 - 21:02:57: "Stacy_Keech<6><BOT><CT>" killed "Fuzzy Logic<7><BOT><TERRORIST>" with "sg550"
|
355
|
+
L 08/05/2013 - 21:02:57: Team "TERRORIST" triggered "Target_Bombed" (CT "4") (T "6")
|
356
|
+
L 08/05/2013 - 21:02:57: World triggered "Round_End"
|
357
|
+
L 08/05/2013 - 21:03:02: "Sigourney_Weaver<12><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
358
|
+
L 08/05/2013 - 21:03:08: World triggered "Round_Start"
|
359
|
+
L 08/05/2013 - 21:03:09: "Blah<15><STEAM_0:0:67410624><TERRORIST>" say_team "[ ## BOMB ## ]"
|
360
|
+
L 08/05/2013 - 21:03:11: "Blah<15><STEAM_0:0:67410624><TERRORIST>" say_team "[ ## BOMB ## ]"
|
361
|
+
L 08/05/2013 - 21:03:15: "Blah<15><STEAM_0:0:67410624><TERRORIST>" say_team "[ ## BOMB ## ]"
|
362
|
+
L 08/05/2013 - 21:03:20: "Blah<15><STEAM_0:0:67410624><TERRORIST>" say_team "[ ## BOMB ## ]"
|
363
|
+
L 08/05/2013 - 21:03:23: "Blah<15><STEAM_0:0:67410624><TERRORIST>" killed "Polymorph<11><BOT><CT>" with "ak47"
|
364
|
+
L 08/05/2013 - 21:03:30: "Make my Day<2><BOT><TERRORIST>" killed "L33t B0t<9><BOT><CT>" with "ak47"
|
365
|
+
L 08/05/2013 - 21:03:39: "Stacy_Keech<6><BOT><CT>" killed "Fuzzy Logic<7><BOT><TERRORIST>" with "usp"
|
366
|
+
L 08/05/2013 - 21:03:40: "Blah<15><STEAM_0:0:67410624><TERRORIST>" killed "Stacy_Keech<6><BOT><CT>" with "ak47"
|
367
|
+
L 08/05/2013 - 21:03:45: "Heather_Locklear<14><BOT><CT>" killed "Marylin_Monroe<5><BOT><TERRORIST>" with "deagle"
|
368
|
+
L 08/05/2013 - 21:03:50: "Heather_Locklear<14><BOT><CT>" killed "Make my Day<2><BOT><TERRORIST>" with "deagle"
|
369
|
+
L 08/05/2013 - 21:03:52: "Jet_Li<3><BOT><TERRORIST>" killed "Will_Smith<13><BOT><CT>" with "sg552"
|
370
|
+
L 08/05/2013 - 21:04:05: "Sigourney_Weaver<12><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
371
|
+
L 08/05/2013 - 21:04:12: "Jet_Li<3><BOT><TERRORIST>" killed "Quentin_Tarantino<4><BOT><CT>" with "sg552"
|
372
|
+
L 08/05/2013 - 21:04:15: "Jet_Li<3><BOT><TERRORIST>" killed "Heather_Locklear<14><BOT><CT>" with "sg552"
|
373
|
+
L 08/05/2013 - 21:04:15: Team "TERRORIST" triggered "Terrorists_Win" (CT "4") (T "7")
|
374
|
+
L 08/05/2013 - 21:04:15: World triggered "Round_End"
|
375
|
+
L 08/05/2013 - 21:04:20: "Blah<15><STEAM_0:0:67410624><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
376
|
+
L 08/05/2013 - 21:04:22: "Blah<15><STEAM_0:0:67410624><TERRORIST>" say_team "[ ## BOMB ## ]"
|
377
|
+
L 08/05/2013 - 21:04:26: World triggered "Round_Start"
|
378
|
+
L 08/05/2013 - 21:04:27: "Blah<15><STEAM_0:0:67410624><TERRORIST>" say_team "[ ## BOMB ## ]"
|
379
|
+
L 08/05/2013 - 21:04:46: "Marylin_Monroe<5><BOT><TERRORIST>" killed "Polymorph<11><BOT><CT>" with "xm1014"
|
380
|
+
L 08/05/2013 - 21:04:47: "Blah<15><STEAM_0:0:67410624><TERRORIST>" killed "Heather_Locklear<14><BOT><CT>" with "ak47"
|
381
|
+
L 08/05/2013 - 21:04:49: "Blah<15><STEAM_0:0:67410624><TERRORIST>" killed "Will_Smith<13><BOT><CT>" with "ak47"
|
382
|
+
L 08/05/2013 - 21:04:49: "Quentin_Tarantino<4><BOT><CT>" killed "Marylin_Monroe<5><BOT><TERRORIST>" with "mp5navy"
|
383
|
+
L 08/05/2013 - 21:04:52: "Blah<15><STEAM_0:0:67410624><TERRORIST>" killed "L33t B0t<9><BOT><CT>" with "ak47"
|
384
|
+
L 08/05/2013 - 21:04:57: "Blah<15><STEAM_0:0:67410624><TERRORIST>" say_team "[ ## BOMB ## ]"
|
385
|
+
L 08/05/2013 - 21:04:58: "Blah<15><STEAM_0:0:67410624><TERRORIST>" say_team "[ ## BOMB ## ]"
|
386
|
+
L 08/05/2013 - 21:05:01: "Sigourney_Weaver<12><BOT><TERRORIST>" killed "Quentin_Tarantino<4><BOT><CT>" with "ak47"
|
387
|
+
L 08/05/2013 - 21:05:02: "Stacy_Keech<6><BOT><CT>" killed "Blah<15><STEAM_0:0:67410624><TERRORIST>" with "tmp"
|
388
|
+
L 08/05/2013 - 21:05:02: "Blah<15><STEAM_0:0:67410624><TERRORIST>" triggered "Dropped_The_Bomb"
|
389
|
+
L 08/05/2013 - 21:05:10: "Stacy_Keech<6><BOT><CT>" killed "Fuzzy Logic<7><BOT><TERRORIST>" with "tmp"
|
390
|
+
L 08/05/2013 - 21:05:20: "Stacy_Keech<6><BOT><CT>" killed "Sigourney_Weaver<12><BOT><TERRORIST>" with "tmp"
|
391
|
+
L 08/05/2013 - 21:05:28: "Make my Day<2><BOT><TERRORIST>" triggered "Got_The_Bomb"
|
392
|
+
L 08/05/2013 - 21:05:47: "Make my Day<2><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
393
|
+
L 08/05/2013 - 21:06:04: "Make my Day<2><BOT><TERRORIST>" killed "Stacy_Keech<6><BOT><CT>" with "ak47"
|
394
|
+
L 08/05/2013 - 21:06:04: Team "TERRORIST" triggered "Terrorists_Win" (CT "4") (T "8")
|
395
|
+
L 08/05/2013 - 21:06:04: World triggered "Round_End"
|
396
|
+
L 08/05/2013 - 21:06:08: "Blah<15><STEAM_0:0:67410624><TERRORIST>" say "gg" (dead)
|
397
|
+
L 08/05/2013 - 21:06:09: "Make my Day<2><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
398
|
+
L 08/05/2013 - 21:06:15: World triggered "Round_Start"
|
399
|
+
L 08/05/2013 - 21:06:28: "Blah<15><STEAM_0:0:67410624><TERRORIST>" killed "Stacy_Keech<6><BOT><CT>" with "ak47"
|
400
|
+
L 08/05/2013 - 21:06:28: "Marylin_Monroe<5><BOT><TERRORIST>" killed "Will_Smith<13><BOT><CT>" with "sg552"
|
401
|
+
L 08/05/2013 - 21:06:35: "L33t B0t<9><BOT><CT>" killed "Marylin_Monroe<5><BOT><TERRORIST>" with "mp5navy"
|
402
|
+
L 08/05/2013 - 21:06:44: "Polymorph<11><BOT><CT>" killed "Make my Day<2><BOT><TERRORIST>" with "ump45"
|
403
|
+
L 08/05/2013 - 21:06:44: "Make my Day<2><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
404
|
+
L 08/05/2013 - 21:06:48: "Fuzzy Logic<7><BOT><TERRORIST>" killed "Polymorph<11><BOT><CT>" with "sg552"
|
405
|
+
L 08/05/2013 - 21:06:49: "Jet_Li<3><BOT><TERRORIST>" triggered "Got_The_Bomb"
|
406
|
+
L 08/05/2013 - 21:06:53: "Heather_Locklear<14><BOT><CT>" killed "Sigourney_Weaver<12><BOT><TERRORIST>" with "mp5navy"
|
407
|
+
L 08/05/2013 - 21:06:54: "Jet_Li<3><BOT><TERRORIST>" killed "Heather_Locklear<14><BOT><CT>" with "g3sg1"
|
408
|
+
L 08/05/2013 - 21:07:07: "Blah<15><STEAM_0:0:67410624><TERRORIST>" say_team "[ ## BOMB ## ]"
|
409
|
+
L 08/05/2013 - 21:07:24: "Jet_Li<3><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
410
|
+
L 08/05/2013 - 21:07:33: "Blah<15><STEAM_0:0:67410624><TERRORIST>" killed "L33t B0t<9><BOT><CT>" with "ak47"
|
411
|
+
L 08/05/2013 - 21:07:58: "Quentin_Tarantino<4><BOT><CT>" killed "Fuzzy Logic<7><BOT><TERRORIST>" with "sg552"
|
412
|
+
L 08/05/2013 - 21:08:09: Team "TERRORIST" triggered "Target_Bombed" (CT "4") (T "9")
|
413
|
+
L 08/05/2013 - 21:08:09: World triggered "Round_End"
|
414
|
+
L 08/05/2013 - 21:08:14: "Jet_Li<3><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
415
|
+
L 08/05/2013 - 21:08:20: World triggered "Round_Start"
|
416
|
+
L 08/05/2013 - 21:08:25: "Blah<15><STEAM_0:0:67410624><TERRORIST>" say_team "[ ## BOMB ## ]"
|
417
|
+
L 08/05/2013 - 21:08:38: "Marylin_Monroe<5><BOT><TERRORIST>" killed "Polymorph<11><BOT><CT>" with "ak47"
|
418
|
+
L 08/05/2013 - 21:08:39: "Will_Smith<13><BOT><CT>" killed "Jet_Li<3><BOT><TERRORIST>" with "famas"
|
419
|
+
L 08/05/2013 - 21:08:39: "Jet_Li<3><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
420
|
+
L 08/05/2013 - 21:08:39: "Fuzzy Logic<7><BOT><TERRORIST>" killed "Will_Smith<13><BOT><CT>" with "ak47"
|
421
|
+
L 08/05/2013 - 21:08:41: "Blah<15><STEAM_0:0:67410624><TERRORIST>" triggered "Got_The_Bomb"
|
422
|
+
L 08/05/2013 - 21:08:46: Server cvar "mp_timelimit" = "35"
|
423
|
+
L 08/05/2013 - 21:08:52: "Blah<15><STEAM_0:0:67410624><TERRORIST>" say_team "[ ## BOMB ## ]"
|
424
|
+
L 08/05/2013 - 21:09:05: "Blah<15><STEAM_0:0:67410624><TERRORIST>" say_team "[ ## BOMB ## ]"
|
425
|
+
L 08/05/2013 - 21:09:11: "Blah<15><STEAM_0:0:67410624><TERRORIST>" triggered "Planted_The_Bomb"
|
426
|
+
L 08/05/2013 - 21:09:22: "L33t B0t<9><BOT><CT>" killed "Blah<15><STEAM_0:0:67410624><TERRORIST>" with "m4a1"
|
427
|
+
L 08/05/2013 - 21:09:22: "L33t B0t<9><BOT><CT>" killed "Marylin_Monroe<5><BOT><TERRORIST>" with "m4a1"
|
428
|
+
L 08/05/2013 - 21:09:32: "Fuzzy Logic<7><BOT><TERRORIST>" killed "Heather_Locklear<14><BOT><CT>" with "ak47"
|
429
|
+
L 08/05/2013 - 21:09:38: "Fuzzy Logic<7><BOT><TERRORIST>" killed "L33t B0t<9><BOT><CT>" with "ak47"
|
430
|
+
L 08/05/2013 - 21:09:56: Team "TERRORIST" triggered "Target_Bombed" (CT "4") (T "10")
|
431
|
+
L 08/05/2013 - 21:09:56: World triggered "Round_End"
|
432
|
+
L 08/05/2013 - 21:10:01: "Marylin_Monroe<5><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
433
|
+
L 08/05/2013 - 21:10:07: World triggered "Round_Start"
|
434
|
+
L 08/05/2013 - 21:10:26: "L33t B0t<9><BOT><CT>" killed "Sigourney_Weaver<12><BOT><TERRORIST>" with "m4a1"
|
435
|
+
L 08/05/2013 - 21:10:28: "Marylin_Monroe<5><BOT><TERRORIST>" killed "L33t B0t<9><BOT><CT>" with "sg552"
|
436
|
+
L 08/05/2013 - 21:10:44: "Stacy_Keech<6><BOT><CT>" killed "Fuzzy Logic<7><BOT><TERRORIST>" with "m4a1"
|
437
|
+
L 08/05/2013 - 21:11:03: "Marylin_Monroe<5><BOT><TERRORIST>" killed "Will_Smith<13><BOT><CT>" with "m4a1"
|
438
|
+
L 08/05/2013 - 21:11:04: "Make my Day<2><BOT><TERRORIST>" killed "Polymorph<11><BOT><CT>" with "sg552"
|
439
|
+
L 08/05/2013 - 21:11:13: "Make my Day<2><BOT><TERRORIST>" killed "Quentin_Tarantino<4><BOT><CT>" with "sg552"
|
440
|
+
L 08/05/2013 - 21:11:17: "Marylin_Monroe<5><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
441
|
+
L 08/05/2013 - 21:11:25: "Heather_Locklear<14><BOT><CT>" killed "Blah<15><STEAM_0:0:67410624><TERRORIST>" with "famas"
|
442
|
+
L 08/05/2013 - 21:11:39: "Make my Day<2><BOT><TERRORIST>" killed "Heather_Locklear<14><BOT><CT>" with "sg552"
|
443
|
+
L 08/05/2013 - 21:12:03: Team "TERRORIST" triggered "Target_Bombed" (CT "4") (T "11")
|
444
|
+
L 08/05/2013 - 21:12:03: World triggered "Round_End"
|
445
|
+
L 08/05/2013 - 21:12:08: "Fuzzy Logic<7><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
446
|
+
L 08/05/2013 - 21:12:14: World triggered "Round_Start"
|
447
|
+
L 08/05/2013 - 21:12:25: Server cvar "mp_friendlyfire" = "1"
|
448
|
+
L 08/05/2013 - 21:12:27: "Quentin_Tarantino<4><BOT><CT>" killed "Fuzzy Logic<7><BOT><TERRORIST>" with "m4a1"
|
449
|
+
L 08/05/2013 - 21:12:27: "Fuzzy Logic<7><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
450
|
+
L 08/05/2013 - 21:12:35: "Jet_Li<3><BOT><TERRORIST>" killed "Quentin_Tarantino<4><BOT><CT>" with "g3sg1"
|
451
|
+
L 08/05/2013 - 21:12:39: "Jet_Li<3><BOT><TERRORIST>" triggered "Got_The_Bomb"
|
452
|
+
L 08/05/2013 - 21:12:49: "Jet_Li<3><BOT><TERRORIST>" killed "Polymorph<11><BOT><CT>" with "g3sg1"
|
453
|
+
L 08/05/2013 - 21:12:57: "Heather_Locklear<14><BOT><CT>" killed "Blah<15><STEAM_0:0:67410624><TERRORIST>" with "m4a1"
|
454
|
+
L 08/05/2013 - 21:12:59: "Heather_Locklear<14><BOT><CT>" killed "Marylin_Monroe<5><BOT><TERRORIST>" with "m4a1"
|
455
|
+
L 08/05/2013 - 21:13:05: "Stacy_Keech<6><BOT><CT>" killed "Sigourney_Weaver<12><BOT><TERRORIST>" with "aug"
|
456
|
+
L 08/05/2013 - 21:13:09: "Stacy_Keech<6><BOT><CT>" killed "Make my Day<2><BOT><TERRORIST>" with "aug"
|
457
|
+
L 08/05/2013 - 21:13:14: "Stacy_Keech<6><BOT><CT>" killed "Jet_Li<3><BOT><TERRORIST>" with "aug"
|
458
|
+
L 08/05/2013 - 21:13:14: Team "CT" triggered "CTs_Win" (CT "5") (T "11")
|
459
|
+
L 08/05/2013 - 21:13:14: World triggered "Round_End"
|
460
|
+
L 08/05/2013 - 21:13:19: "Sigourney_Weaver<12><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
461
|
+
L 08/05/2013 - 21:13:25: World triggered "Round_Start"
|
462
|
+
L 08/05/2013 - 21:13:39: "Quentin_Tarantino<4><BOT><CT>" killed "Sigourney_Weaver<12><BOT><TERRORIST>" with "aug"
|
463
|
+
L 08/05/2013 - 21:13:39: "Sigourney_Weaver<12><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
464
|
+
L 08/05/2013 - 21:13:40: "Quentin_Tarantino<4><BOT><CT>" killed "Blah<15><STEAM_0:0:67410624><TERRORIST>" with "aug"
|
465
|
+
L 08/05/2013 - 21:13:41: "Make my Day<2><BOT><TERRORIST>" triggered "Got_The_Bomb"
|
466
|
+
L 08/05/2013 - 21:13:42: "L33t B0t<9><BOT><CT>" killed "Marylin_Monroe<5><BOT><TERRORIST>" with "m4a1"
|
467
|
+
L 08/05/2013 - 21:13:42: "Make my Day<2><BOT><TERRORIST>" killed "Quentin_Tarantino<4><BOT><CT>" with "m3"
|
468
|
+
L 08/05/2013 - 21:13:42: "Will_Smith<13><BOT><CT>" killed "Make my Day<2><BOT><TERRORIST>" with "m4a1"
|
469
|
+
L 08/05/2013 - 21:13:42: "Make my Day<2><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
470
|
+
L 08/05/2013 - 21:13:46: "Will_Smith<13><BOT><CT>" killed "Jet_Li<3><BOT><TERRORIST>" with "m4a1"
|
471
|
+
L 08/05/2013 - 21:13:47: "Polymorph<11><BOT><CT>" killed "Fuzzy Logic<7><BOT><TERRORIST>" with "famas"
|
472
|
+
L 08/05/2013 - 21:13:47: Team "CT" triggered "CTs_Win" (CT "6") (T "11")
|
473
|
+
L 08/05/2013 - 21:13:47: World triggered "Round_End"
|
474
|
+
L 08/05/2013 - 21:13:52: "Blah<15><STEAM_0:0:67410624><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
475
|
+
L 08/05/2013 - 21:13:58: World triggered "Round_Start"
|
476
|
+
L 08/05/2013 - 21:14:14: "Jet_Li<3><BOT><TERRORIST>" killed "Stacy_Keech<6><BOT><CT>" with "ump45"
|
477
|
+
L 08/05/2013 - 21:14:16: "L33t B0t<9><BOT><CT>" killed "Make my Day<2><BOT><TERRORIST>" with "sg550"
|
478
|
+
L 08/05/2013 - 21:14:18: "L33t B0t<9><BOT><CT>" killed "Sigourney_Weaver<12><BOT><TERRORIST>" with "sg550"
|
479
|
+
L 08/05/2013 - 21:14:23: "Heather_Locklear<14><BOT><CT>" killed "Fuzzy Logic<7><BOT><TERRORIST>" with "aug"
|
480
|
+
L 08/05/2013 - 21:14:30: "Heather_Locklear<14><BOT><CT>" killed "Marylin_Monroe<5><BOT><TERRORIST>" with "aug"
|
481
|
+
L 08/05/2013 - 21:14:33: "Blah<15><STEAM_0:0:67410624><TERRORIST>" killed "Heather_Locklear<14><BOT><CT>" with "ak47"
|
482
|
+
L 08/05/2013 - 21:14:50: "Blah<15><STEAM_0:0:67410624><TERRORIST>" say_team "[ ## BOMB ## ]"
|
483
|
+
L 08/05/2013 - 21:14:52: "Jet_Li<3><BOT><TERRORIST>" killed "Will_Smith<13><BOT><CT>" with "sg550"
|
484
|
+
L 08/05/2013 - 21:14:54: "Blah<15><STEAM_0:0:67410624><TERRORIST>" triggered "Planted_The_Bomb"
|
485
|
+
L 08/05/2013 - 21:15:39: Team "TERRORIST" triggered "Target_Bombed" (CT "6") (T "12")
|
486
|
+
L 08/05/2013 - 21:15:39: World triggered "Round_End"
|
487
|
+
L 08/05/2013 - 21:15:42: "Jet_Li<3><BOT><TERRORIST>" killed "Polymorph<11><BOT><CT>" with "sg550"
|
488
|
+
L 08/05/2013 - 21:15:44: "Make my Day<2><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
489
|
+
L 08/05/2013 - 21:15:50: World triggered "Round_Start"
|
490
|
+
L 08/05/2013 - 21:16:11: "Fuzzy Logic<7><BOT><TERRORIST>" killed "Heather_Locklear<14><BOT><CT>" with "ak47"
|
491
|
+
L 08/05/2013 - 21:16:13: "Marylin_Monroe<5><BOT><TERRORIST>" killed "Polymorph<11><BOT><CT>" with "xm1014"
|
492
|
+
L 08/05/2013 - 21:16:20: "Stacy_Keech<6><BOT><CT>" killed "Blah<15><STEAM_0:0:67410624><TERRORIST>" with "sg550"
|
493
|
+
L 08/05/2013 - 21:16:23: "Quentin_Tarantino<4><BOT><CT>" killed "Jet_Li<3><BOT><TERRORIST>" with "aug"
|
494
|
+
L 08/05/2013 - 21:16:24: "Make my Day<2><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
495
|
+
L 08/05/2013 - 21:16:32: "Quentin_Tarantino<4><BOT><CT>" killed "Fuzzy Logic<7><BOT><TERRORIST>" with "sg550"
|
496
|
+
L 08/05/2013 - 21:16:41: "Stacy_Keech<6><BOT><CT>" killed "Marylin_Monroe<5><BOT><TERRORIST>" with "sg550"
|
497
|
+
L 08/05/2013 - 21:17:03: "Make my Day<2><BOT><TERRORIST>" killed "L33t B0t<9><BOT><CT>" with "sg552"
|
498
|
+
L 08/05/2013 - 21:17:03: "Stacy_Keech<6><BOT><CT>" killed "Make my Day<2><BOT><TERRORIST>" with "sg550"
|
499
|
+
L 08/05/2013 - 21:17:05: "Stacy_Keech<6><BOT><CT>" killed "Sigourney_Weaver<12><BOT><TERRORIST>" with "sg550"
|
500
|
+
L 08/05/2013 - 21:17:10: Team "TERRORIST" triggered "Target_Bombed" (CT "6") (T "13")
|
501
|
+
L 08/05/2013 - 21:17:10: World triggered "Round_End"
|
502
|
+
L 08/05/2013 - 21:17:15: "Jet_Li<3><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
503
|
+
L 08/05/2013 - 21:17:21: World triggered "Round_Start"
|
504
|
+
L 08/05/2013 - 21:17:36: "Blah<15><STEAM_0:0:67410624><TERRORIST>" killed "Polymorph<11><BOT><CT>" with "ak47"
|
505
|
+
L 08/05/2013 - 21:17:43: "Will_Smith<13><BOT><CT>" killed "Make my Day<2><BOT><TERRORIST>" with "m4a1"
|
506
|
+
L 08/05/2013 - 21:17:44: "Marylin_Monroe<5><BOT><TERRORIST>" killed "L33t B0t<9><BOT><CT>" with "xm1014"
|
507
|
+
L 08/05/2013 - 21:18:16: "Jet_Li<3><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
508
|
+
L 08/05/2013 - 21:18:17: "Stacy_Keech<6><BOT><CT>" killed "Sigourney_Weaver<12><BOT><TERRORIST>" with "sg550"
|
509
|
+
L 08/05/2013 - 21:18:23: "Fuzzy Logic<7><BOT><TERRORIST>" killed "Heather_Locklear<14><BOT><CT>" with "deagle"
|
510
|
+
L 08/05/2013 - 21:18:28: "Stacy_Keech<6><BOT><CT>" killed "Blah<15><STEAM_0:0:67410624><TERRORIST>" with "sg550"
|
511
|
+
L 08/05/2013 - 21:18:44: "Stacy_Keech<6><BOT><CT>" killed "Fuzzy Logic<7><BOT><TERRORIST>" with "sg550"
|
512
|
+
L 08/05/2013 - 21:18:50: "Jet_Li<3><BOT><TERRORIST>" killed "Quentin_Tarantino<4><BOT><CT>" with "sg552"
|
513
|
+
L 08/05/2013 - 21:18:53: "Stacy_Keech<6><BOT><CT>" committed suicide with "grenade"
|
514
|
+
L 08/05/2013 - 21:19:01: Team "TERRORIST" triggered "Target_Bombed" (CT "6") (T "14")
|
515
|
+
L 08/05/2013 - 21:19:01: World triggered "Round_End"
|
516
|
+
L 08/05/2013 - 21:19:06: "Marylin_Monroe<5><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
517
|
+
L 08/05/2013 - 21:19:12: World triggered "Round_Start"
|
518
|
+
L 08/05/2013 - 21:19:22: "Make my Day<2><BOT><TERRORIST>" killed "L33t B0t<9><BOT><CT>" with "galil"
|
519
|
+
L 08/05/2013 - 21:19:31: "Sigourney_Weaver<12><BOT><TERRORIST>" killed "Stacy_Keech<6><BOT><CT>" with "galil"
|
520
|
+
L 08/05/2013 - 21:19:37: "Will_Smith<13><BOT><CT>" killed "Sigourney_Weaver<12><BOT><TERRORIST>" with "m4a1"
|
521
|
+
L 08/05/2013 - 21:19:39: "Quentin_Tarantino<4><BOT><CT>" killed "Make my Day<2><BOT><TERRORIST>" with "ump45"
|
522
|
+
L 08/05/2013 - 21:19:40: "Marylin_Monroe<5><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
523
|
+
L 08/05/2013 - 21:19:41: "Jet_Li<3><BOT><TERRORIST>" killed "Will_Smith<13><BOT><CT>" with "sg552"
|
524
|
+
L 08/05/2013 - 21:20:08: "Jet_Li<3><BOT><TERRORIST>" killed "Heather_Locklear<14><BOT><CT>" with "sg552"
|
525
|
+
L 08/05/2013 - 21:20:09: "Polymorph<11><BOT><CT>" killed "Jet_Li<3><BOT><TERRORIST>" with "m3"
|
526
|
+
L 08/05/2013 - 21:20:25: Team "TERRORIST" triggered "Target_Bombed" (CT "6") (T "15")
|
527
|
+
L 08/05/2013 - 21:20:25: World triggered "Round_End"
|
528
|
+
L 08/05/2013 - 21:20:30: "Fuzzy Logic<7><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
529
|
+
L 08/05/2013 - 21:20:36: World triggered "Round_Start"
|
530
|
+
L 08/05/2013 - 21:20:55: "Stacy_Keech<6><BOT><CT>" killed "Jet_Li<3><BOT><TERRORIST>" with "usp"
|
531
|
+
L 08/05/2013 - 21:21:00: "Stacy_Keech<6><BOT><CT>" killed "Fuzzy Logic<7><BOT><TERRORIST>" with "usp"
|
532
|
+
L 08/05/2013 - 21:21:00: "Fuzzy Logic<7><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
533
|
+
L 08/05/2013 - 21:21:07: "Quentin_Tarantino<4><BOT><CT>" killed "Marylin_Monroe<5><BOT><TERRORIST>" with "m4a1"
|
534
|
+
L 08/05/2013 - 21:21:14: "Make my Day<2><BOT><TERRORIST>" killed "Stacy_Keech<6><BOT><CT>" with "xm1014"
|
535
|
+
L 08/05/2013 - 21:21:16: "L33t B0t<9><BOT><CT>" killed "Sigourney_Weaver<12><BOT><TERRORIST>" with "scout"
|
536
|
+
L 08/05/2013 - 21:21:18: "Make my Day<2><BOT><TERRORIST>" killed "Quentin_Tarantino<4><BOT><CT>" with "xm1014"
|
537
|
+
L 08/05/2013 - 21:21:29: "Will_Smith<13><BOT><CT>" killed "Make my Day<2><BOT><TERRORIST>" with "galil"
|
538
|
+
L 08/05/2013 - 21:22:01: "Will_Smith<13><BOT><CT>" killed "Blah<15><STEAM_0:0:67410624><TERRORIST>" with "galil"
|
539
|
+
L 08/05/2013 - 21:22:01: Team "CT" triggered "CTs_Win" (CT "7") (T "15")
|
540
|
+
L 08/05/2013 - 21:22:01: World triggered "Round_End"
|
541
|
+
L 08/05/2013 - 21:22:06: "Sigourney_Weaver<12><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
542
|
+
L 08/05/2013 - 21:22:12: World triggered "Round_Start"
|
543
|
+
L 08/05/2013 - 21:22:36: "Fuzzy Logic<7><BOT><TERRORIST>" killed "Stacy_Keech<6><BOT><CT>" with "ak47"
|
544
|
+
L 08/05/2013 - 21:22:41: "Will_Smith<13><BOT><CT>" killed "Marylin_Monroe<5><BOT><TERRORIST>" with "galil"
|
545
|
+
L 08/05/2013 - 21:22:42: "Sigourney_Weaver<12><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
546
|
+
L 08/05/2013 - 21:22:43: "Heather_Locklear<14><BOT><CT>" killed "Fuzzy Logic<7><BOT><TERRORIST>" with "p228"
|
547
|
+
L 08/05/2013 - 21:22:57: "Heather_Locklear<14><BOT><CT>" killed "Jet_Li<3><BOT><TERRORIST>" with "p228"
|
548
|
+
L 08/05/2013 - 21:23:27: Team "TERRORIST" triggered "Target_Bombed" (CT "7") (T "16")
|
549
|
+
L 08/05/2013 - 21:23:27: World triggered "Round_End"
|
550
|
+
L 08/05/2013 - 21:23:32: "Blah<15><STEAM_0:0:67410624><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
551
|
+
L 08/05/2013 - 21:23:38: World triggered "Round_Start"
|
552
|
+
L 08/05/2013 - 21:23:54: "Sigourney_Weaver<12><BOT><TERRORIST>" killed "Quentin_Tarantino<4><BOT><CT>" with "xm1014"
|
553
|
+
L 08/05/2013 - 21:24:04: "Jet_Li<3><BOT><TERRORIST>" killed "Heather_Locklear<14><BOT><CT>" with "ak47"
|
554
|
+
L 08/05/2013 - 21:24:07: "Polymorph<11><BOT><CT>" killed "Jet_Li<3><BOT><TERRORIST>" with "aug"
|
555
|
+
L 08/05/2013 - 21:24:27: "Make my Day<2><BOT><TERRORIST>" killed "Stacy_Keech<6><BOT><CT>" with "sg552"
|
556
|
+
L 08/05/2013 - 21:24:35: "Polymorph<11><BOT><CT>" killed "Blah<15><STEAM_0:0:67410624><TERRORIST>" with "grenade"
|
557
|
+
L 08/05/2013 - 21:24:35: "Blah<15><STEAM_0:0:67410624><TERRORIST>" triggered "Dropped_The_Bomb"
|
558
|
+
L 08/05/2013 - 21:24:40: "Will_Smith<13><BOT><CT>" killed "Marylin_Monroe<5><BOT><TERRORIST>" with "galil"
|
559
|
+
L 08/05/2013 - 21:24:40: "Make my Day<2><BOT><TERRORIST>" killed "Will_Smith<13><BOT><CT>" with "sg552"
|
560
|
+
L 08/05/2013 - 21:24:44: "Fuzzy Logic<7><BOT><TERRORIST>" killed "L33t B0t<9><BOT><CT>" with "scout"
|
561
|
+
L 08/05/2013 - 21:24:58: "Polymorph<11><BOT><CT>" killed "Fuzzy Logic<7><BOT><TERRORIST>" with "aug"
|
562
|
+
L 08/05/2013 - 21:25:06: "Make my Day<2><BOT><TERRORIST>" killed "Polymorph<11><BOT><CT>" with "ak47"
|
563
|
+
L 08/05/2013 - 21:25:06: Team "TERRORIST" triggered "Terrorists_Win" (CT "7") (T "17")
|
564
|
+
L 08/05/2013 - 21:25:06: World triggered "Round_End"
|
565
|
+
L 08/05/2013 - 21:25:10: "Make my Day<2><BOT><TERRORIST>" triggered "Got_The_Bomb"
|
566
|
+
L 08/05/2013 - 21:25:11: "Make my Day<2><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
567
|
+
L 08/05/2013 - 21:25:17: World triggered "Round_Start"
|
568
|
+
L 08/05/2013 - 21:25:30: "Make my Day<2><BOT><TERRORIST>" killed "Heather_Locklear<14><BOT><CT>" with "ak47"
|
569
|
+
L 08/05/2013 - 21:25:30: Team "CT" scored "7" with "6" players
|
570
|
+
L 08/05/2013 - 21:25:30: Team "TERRORIST" scored "17" with "6" players
|
571
|
+
L 08/05/2013 - 21:25:30: Podbot mm - Experience Data saved...
|
572
|
+
L 08/05/2013 - 21:25:30: Podbot mm - Visibility Table not saved - Table doesn't need to be saved now.
|
573
|
+
L 08/05/2013 - 21:25:30: Server cvar "mp_chattime" = "12"
|
574
|
+
L 08/05/2013 - 21:25:40: Server cvar "mp_chattime" = "10"
|
575
|
+
L 08/05/2013 - 21:25:40: Podbot mm - Experience Data saved...
|
576
|
+
L 08/05/2013 - 21:25:40: Podbot mm - Visibility Table not saved - Table doesn't need to be saved now.
|
577
|
+
L 08/05/2013 - 21:25:40: [META] ini: Begin re-reading plugins list: /vagrant/hlds/cstrike/addons/metamod/plugins.ini
|
578
|
+
L 08/05/2013 - 21:25:40: [META] ini: Read plugin config for: AMX Mod X
|
579
|
+
L 08/05/2013 - 21:25:40: [META] ini: Read plugin config for: POD-Bot mm
|
580
|
+
L 08/05/2013 - 21:25:40: [META] ini: Finished reading plugins list: /vagrant/hlds/cstrike/addons/metamod/plugins.ini; Found 2 plugins
|
581
|
+
L 08/05/2013 - 21:25:40: [META] dll: Updating plugins...
|
582
|
+
L 08/05/2013 - 21:25:40: [META] dll: Finished updating 5 plugins; kept 2, loaded 0, unloaded 0, reloaded 0, delayed 0
|
583
|
+
L 08/05/2013 - 21:25:40: Log file closed
|
584
|
+
L 08/05/2013 - 21:25:41: Log file started (file "logs/L0805065.log") (game "cstrike") (version "48/1.1.2.7/Stdio/6027")
|
585
|
+
L 08/05/2013 - 21:25:41: Loading map "de_dust2"
|
586
|
+
L 08/05/2013 - 21:25:41: Server cvars start
|
587
|
+
L 08/05/2013 - 21:25:41: Server cvar "_tutor_bomb_viewable_check_interval" = "0.5"
|
588
|
+
L 08/05/2013 - 21:25:41: Server cvar "_tutor_debug_level" = "0"
|
589
|
+
L 08/05/2013 - 21:25:41: Server cvar "_tutor_examine_time" = "0.5"
|
590
|
+
L 08/05/2013 - 21:25:41: Server cvar "_tutor_hint_interval_time" = "10.0"
|
591
|
+
L 08/05/2013 - 21:25:41: Server cvar "_tutor_look_angle" = "10"
|
592
|
+
L 08/05/2013 - 21:25:41: Server cvar "_tutor_look_distance" = "200"
|
593
|
+
L 08/05/2013 - 21:25:41: Server cvar "_tutor_message_character_display_time_coefficient" = "0.07"
|
594
|
+
L 08/05/2013 - 21:25:41: Server cvar "_tutor_message_minimum_display_time" = "1"
|
595
|
+
L 08/05/2013 - 21:25:41: Server cvar "_tutor_message_repeats" = "5"
|
596
|
+
L 08/05/2013 - 21:25:41: Server cvar "_tutor_view_distance" = "1000"
|
597
|
+
L 08/05/2013 - 21:25:41: Server cvar "allow_spectators" = "1.0"
|
598
|
+
L 08/05/2013 - 21:25:41: Server cvar "amx_client_languages" = "1"
|
599
|
+
L 08/05/2013 - 21:25:41: Server cvar "amx_language" = "en"
|
600
|
+
L 08/05/2013 - 21:25:41: Server cvar "amx_nextmap" = "de_dust2"
|
601
|
+
L 08/05/2013 - 21:25:41: Server cvar "amx_timeleft" = "00:00"
|
602
|
+
L 08/05/2013 - 21:25:41: Server cvar "amxmodx_version" = "1.8.2"
|
603
|
+
L 08/05/2013 - 21:25:41: Server cvar "coop" = "0"
|
604
|
+
L 08/05/2013 - 21:25:41: Server cvar "deathmatch" = "1"
|
605
|
+
L 08/05/2013 - 21:25:41: Server cvar "decalfrequency" = "30"
|
606
|
+
L 08/05/2013 - 21:25:41: Server cvar "edgefriction" = "2"
|
607
|
+
L 08/05/2013 - 21:25:41: Server cvar "hostage_debug" = "0"
|
608
|
+
L 08/05/2013 - 21:25:41: Server cvar "hostage_stop" = "0"
|
609
|
+
L 08/05/2013 - 21:25:41: Server cvar "humans_join_team" = "any"
|
610
|
+
L 08/05/2013 - 21:25:41: Server cvar "max_queries_sec" = "3.0"
|
611
|
+
L 08/05/2013 - 21:25:41: Server cvar "max_queries_sec_global" = "30"
|
612
|
+
L 08/05/2013 - 21:25:41: Server cvar "max_queries_window" = "60"
|
613
|
+
L 08/05/2013 - 21:25:41: Server cvar "metamod_version" = "1.21p37"
|
614
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_allowmonsters" = "0"
|
615
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_autokick" = "1"
|
616
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_autokick_timeout" = "-1"
|
617
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_autoteambalance" = "1"
|
618
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_buytime" = "1.5"
|
619
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_c4timer" = "45"
|
620
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_chattime" = "10"
|
621
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_consistency" = "1"
|
622
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_fadetoblack" = "0"
|
623
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_flashlight" = "0"
|
624
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_footsteps" = "1"
|
625
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_forcecamera" = "0"
|
626
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_forcechasecam" = "0"
|
627
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_fragsleft" = "0"
|
628
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_freezetime" = "6"
|
629
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_friendlyfire" = "1"
|
630
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_ghostfrequency" = "0.1"
|
631
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_hostagepenalty" = "13"
|
632
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_kickpercent" = "0.66"
|
633
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_limitteams" = "2"
|
634
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_logdetail" = "0"
|
635
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_logfile" = "1"
|
636
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_logmessages" = "1"
|
637
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_mapvoteratio" = "0.66"
|
638
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_maxrounds" = "0"
|
639
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_mirrordamage" = "0"
|
640
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_playerid" = "0"
|
641
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_roundtime" = "5"
|
642
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_startmoney" = "800"
|
643
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_timeleft" = "0"
|
644
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_timelimit" = "35"
|
645
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_tkpunish" = "0"
|
646
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_windifference" = "1"
|
647
|
+
L 08/05/2013 - 21:25:41: Server cvar "mp_winlimit" = "0"
|
648
|
+
L 08/05/2013 - 21:25:41: Server cvar "pausable" = "0"
|
649
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_aim_damper_coefficient_x" = "0.22"
|
650
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_aim_damper_coefficient_y" = "0.22"
|
651
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_aim_deviation_x" = "2.0"
|
652
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_aim_deviation_y" = "1.0"
|
653
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_aim_influence_x_on_y" = "0.25"
|
654
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_aim_influence_y_on_x" = "0.17"
|
655
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_aim_notarget_slowdown_ratio" = "0.5"
|
656
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_aim_offset_delay" = "1.2"
|
657
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_aim_spring_stiffness_x" = "13.0"
|
658
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_aim_spring_stiffness_y" = "13.0"
|
659
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_aim_target_anticipation_ratio" = "2.2"
|
660
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_aim_type" = "4"
|
661
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_autokill" = "0"
|
662
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_autokilldelay" = "45"
|
663
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_bot_join_team" = "ANY"
|
664
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_bot_quota_match" = "0"
|
665
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_chat" = "0"
|
666
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_dangerfactor" = "2000"
|
667
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_detailnames" = "0"
|
668
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_ffa" = "0"
|
669
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_firsthumanrestart" = "0"
|
670
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_jasonmode" = "0"
|
671
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_latencybot" = "2"
|
672
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_mapstartbotdelay" = "10"
|
673
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_maxbots" = "16"
|
674
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_maxbotskill" = "100"
|
675
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_maxcamptime" = "30"
|
676
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_maxweaponpickup" = "10"
|
677
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_minbots" = "7"
|
678
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_minbotskill" = "95"
|
679
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_numfollowuser" = "5"
|
680
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_radio" = "1"
|
681
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_restrequipammo" = "000000000"
|
682
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_restrweapons" = "00000000000000000000000001"
|
683
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_shootthruwalls" = "1"
|
684
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_skin" = "5"
|
685
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_spray" = "1"
|
686
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_timer_grenade" = "0.5"
|
687
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_timer_pickup" = "0.3"
|
688
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_timer_sound" = "0.5"
|
689
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_usespeech" = "0"
|
690
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_version" = "V3B22"
|
691
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_welcomemsgs" = "0"
|
692
|
+
L 08/05/2013 - 21:25:41: Server cvar "pb_wptfolder" = "wptdefault"
|
693
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_accelerate" = "5"
|
694
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_aim" = "0"
|
695
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_airaccelerate" = "10"
|
696
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_allowupload" = "1"
|
697
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_alltalk" = "0"
|
698
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_bounce" = "1"
|
699
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_cheats" = "0"
|
700
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_clienttrace" = "1"
|
701
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_contact" = ""
|
702
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_friction" = "4"
|
703
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_gravity" = "800"
|
704
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_logblocks" = "0"
|
705
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_maxrate" = "25000"
|
706
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_maxspeed" = "320"
|
707
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_minrate" = "15000"
|
708
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_password" = ""
|
709
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_proxies" = "1"
|
710
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_restart" = "0"
|
711
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_restartround" = "0"
|
712
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_stepsize" = "18"
|
713
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_stopspeed" = "75"
|
714
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_uploadmax" = "0.5"
|
715
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_voiceenable" = "1"
|
716
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_wateraccelerate" = "10"
|
717
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_waterfriction" = "1"
|
718
|
+
L 08/05/2013 - 21:25:41: Server cvars end
|
719
|
+
L 08/05/2013 - 21:25:41: Server cvar "sv_maxspeed" = "900"
|
720
|
+
L 08/05/2013 - 21:25:45: Podbot mm - Visibility Table file (pvi) exists and is newer than the waypoint file (pwf).
|
721
|
+
L 08/05/2013 - 21:25:45: Podbot mm - Loading & decompressing Visibility Table
|
722
|
+
L 08/05/2013 - 21:25:45: Podbot mm - Visibility Table loaded from File...
|
723
|
+
L 08/05/2013 - 21:25:56: Started map "de_dust2" (CRC "1159425449")
|
724
|
+
L 08/05/2013 - 21:25:58: "Blah<15><STEAM_0:0:67410624><>" entered the game
|
725
|
+
L 08/05/2013 - 21:26:00: "Blah<15><STEAM_0:0:67410624><>" joined team "CT"
|
726
|
+
L 08/05/2013 - 21:26:03: World triggered "Round_Start"
|
727
|
+
L 08/05/2013 - 21:26:05: "Make my Day<16><BOT><>" entered the game
|
728
|
+
L 08/05/2013 - 21:26:05: "Make my Day<16><BOT><>" joined team "TERRORIST"
|
729
|
+
L 08/05/2013 - 21:26:05: World triggered "Game_Commencing"
|
730
|
+
L 08/05/2013 - 21:26:05: World triggered "Game_Commencing" (CT "0") (T "0")
|
731
|
+
L 08/05/2013 - 21:26:05: World triggered "Round_End"
|
732
|
+
L 08/05/2013 - 21:26:06: "Jet_Li<17><BOT><>" entered the game
|
733
|
+
L 08/05/2013 - 21:26:06: "Jet_Li<17><BOT><>" joined team "TERRORIST"
|
734
|
+
L 08/05/2013 - 21:26:06: "Quentin_Tarantino<18><BOT><>" entered the game
|
735
|
+
L 08/05/2013 - 21:26:06: "Quentin_Tarantino<18><BOT><>" joined team "CT"
|
736
|
+
L 08/05/2013 - 21:26:06: "Blah<15><STEAM_0:0:67410624><CT>" say "/rank"
|
737
|
+
L 08/05/2013 - 21:26:07: "Marylin_Monroe<19><BOT><>" entered the game
|
738
|
+
L 08/05/2013 - 21:26:07: "Marylin_Monroe<19><BOT><>" joined team "TERRORIST"
|
739
|
+
L 08/05/2013 - 21:26:07: "Stacy_Keech<20><BOT><>" entered the game
|
740
|
+
L 08/05/2013 - 21:26:07: "Stacy_Keech<20><BOT><>" joined team "CT"
|
741
|
+
L 08/05/2013 - 21:26:08: "Fuzzy Logic<21><BOT><>" entered the game
|
742
|
+
L 08/05/2013 - 21:26:08: "Fuzzy Logic<21><BOT><>" joined team "TERRORIST"
|
743
|
+
L 08/05/2013 - 21:26:08: "Heather_Locklear<22><BOT><>" entered the game
|
744
|
+
L 08/05/2013 - 21:26:08: "Make my Day<16><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
745
|
+
L 08/05/2013 - 21:26:08: "Heather_Locklear<22><BOT><>" joined team "CT"
|
746
|
+
L 08/05/2013 - 21:26:09: "L33t B0t<23><BOT><>" entered the game
|
747
|
+
L 08/05/2013 - 21:26:09: "L33t B0t<23><BOT><>" joined team "CT"
|
748
|
+
L 08/05/2013 - 21:26:09: "Polymorph<24><BOT><>" entered the game
|
749
|
+
L 08/05/2013 - 21:26:09: "Polymorph<24><BOT><>" joined team "CT"
|
750
|
+
L 08/05/2013 - 21:26:10: "Sigourney_Weaver<25><BOT><>" entered the game
|
751
|
+
L 08/05/2013 - 21:26:10: "Sigourney_Weaver<25><BOT><>" joined team "TERRORIST"
|
752
|
+
L 08/05/2013 - 21:26:10: "Will_Smith<26><BOT><>" entered the game
|
753
|
+
L 08/05/2013 - 21:26:10: "Will_Smith<26><BOT><>" joined team "CT"
|
754
|
+
L 08/05/2013 - 21:26:14: World triggered "Round_Start"
|
755
|
+
L 08/05/2013 - 21:26:27: "Jet_Li<17><BOT><TERRORIST>" killed "L33t B0t<23><BOT><CT>" with "deagle"
|
756
|
+
L 08/05/2013 - 21:26:31: "Marylin_Monroe<19><BOT><TERRORIST>" killed "Quentin_Tarantino<18><BOT><CT>" with "glock18"
|
757
|
+
L 08/05/2013 - 21:26:39: "Jet_Li<17><BOT><TERRORIST>" killed "Polymorph<24><BOT><CT>" with "deagle"
|
758
|
+
L 08/05/2013 - 21:26:42: "Will_Smith<26><BOT><CT>" killed "Jet_Li<17><BOT><TERRORIST>" with "grenade"
|
759
|
+
L 08/05/2013 - 21:26:57: "Marylin_Monroe<19><BOT><TERRORIST>" killed "Heather_Locklear<22><BOT><CT>" with "glock18"
|
760
|
+
L 08/05/2013 - 21:26:57: "Fuzzy Logic<21><BOT><TERRORIST>" killed "Stacy_Keech<20><BOT><CT>" with "deagle"
|
761
|
+
L 08/05/2013 - 21:26:58: "Blah<15><STEAM_0:0:67410624><CT>" killed "Fuzzy Logic<21><BOT><TERRORIST>" with "usp"
|
762
|
+
L 08/05/2013 - 21:27:03: "Blah<15><STEAM_0:0:67410624><CT>" say_team "[ ## BOMB ## ]"
|
763
|
+
L 08/05/2013 - 21:27:05: "Sigourney_Weaver<25><BOT><TERRORIST>" killed "Blah<15><STEAM_0:0:67410624><CT>" with "deagle"
|
764
|
+
L 08/05/2013 - 21:27:16: "Make my Day<16><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
765
|
+
L 08/05/2013 - 21:27:17: "Sigourney_Weaver<25><BOT><TERRORIST>" killed "Will_Smith<26><BOT><CT>" with "deagle"
|
766
|
+
L 08/05/2013 - 21:27:17: Team "TERRORIST" triggered "Terrorists_Win" (CT "0") (T "1")
|
767
|
+
L 08/05/2013 - 21:27:17: World triggered "Round_End"
|
768
|
+
L 08/05/2013 - 21:27:22: "Jet_Li<17><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
769
|
+
L 08/05/2013 - 21:27:28: World triggered "Round_Start"
|
770
|
+
L 08/05/2013 - 21:27:50: "Quentin_Tarantino<18><BOT><CT>" killed "Fuzzy Logic<21><BOT><TERRORIST>" with "mp5navy"
|
771
|
+
L 08/05/2013 - 21:27:50: "Jet_Li<17><BOT><TERRORIST>" killed "Polymorph<24><BOT><CT>" with "sg552"
|
772
|
+
L 08/05/2013 - 21:27:51: "Quentin_Tarantino<18><BOT><CT>" killed "Sigourney_Weaver<25><BOT><TERRORIST>" with "mp5navy"
|
773
|
+
L 08/05/2013 - 21:28:04: "L33t B0t<23><BOT><CT>" killed "Jet_Li<17><BOT><TERRORIST>" with "fiveseven"
|
774
|
+
L 08/05/2013 - 21:28:04: "Jet_Li<17><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
775
|
+
L 08/05/2013 - 21:28:05: "Marylin_Monroe<19><BOT><TERRORIST>" triggered "Got_The_Bomb"
|
776
|
+
L 08/05/2013 - 21:28:05: "Make my Day<16><BOT><TERRORIST>" killed "Heather_Locklear<22><BOT><CT>" with "galil"
|
777
|
+
L 08/05/2013 - 21:28:06: "L33t B0t<23><BOT><CT>" killed "Marylin_Monroe<19><BOT><TERRORIST>" with "fiveseven"
|
778
|
+
L 08/05/2013 - 21:28:06: "Marylin_Monroe<19><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
779
|
+
L 08/05/2013 - 21:28:08: "Blah<15><STEAM_0:0:67410624><CT>" say_team "[ ## BOMB ## ]"
|
780
|
+
L 08/05/2013 - 21:28:11: "Make my Day<16><BOT><TERRORIST>" killed "Stacy_Keech<20><BOT><CT>" with "galil"
|
781
|
+
L 08/05/2013 - 21:28:13: "Blah<15><STEAM_0:0:67410624><CT>" say_team "[ ## BOMB ## ]"
|
782
|
+
L 08/05/2013 - 21:28:31: "Make my Day<16><BOT><TERRORIST>" killed "Blah<15><STEAM_0:0:67410624><CT>" with "galil"
|
783
|
+
L 08/05/2013 - 21:29:12: "Make my Day<16><BOT><TERRORIST>" killed "L33t B0t<23><BOT><CT>" with "galil"
|
784
|
+
L 08/05/2013 - 21:29:30: "Make my Day<16><BOT><TERRORIST>" triggered "Got_The_Bomb"
|
785
|
+
L 08/05/2013 - 21:29:35: "Make my Day<16><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
786
|
+
L 08/05/2013 - 21:29:41: "Will_Smith<26><BOT><CT>" killed "Make my Day<16><BOT><TERRORIST>" with "mp5navy"
|
787
|
+
L 08/05/2013 - 21:29:49: "Will_Smith<26><BOT><CT>" triggered "Begin_Bomb_Defuse_With_Kit"
|
788
|
+
L 08/05/2013 - 21:29:54: "Will_Smith<26><BOT><CT>" triggered "Defused_The_Bomb"
|
789
|
+
L 08/05/2013 - 21:29:54: Team "CT" triggered "Bomb_Defused" (CT "1") (T "1")
|
790
|
+
L 08/05/2013 - 21:29:54: World triggered "Round_End"
|
791
|
+
L 08/05/2013 - 21:29:59: "Will_Smith<26><BOT><CT>" joined team "TERRORIST" (auto)
|
792
|
+
L 08/05/2013 - 21:29:59: "Marylin_Monroe<19><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
793
|
+
L 08/05/2013 - 21:30:05: World triggered "Round_Start"
|
794
|
+
L 08/05/2013 - 21:30:22: "Heather_Locklear<22><BOT><CT>" killed "Marylin_Monroe<19><BOT><TERRORIST>" with "m4a1"
|
795
|
+
L 08/05/2013 - 21:30:22: "Marylin_Monroe<19><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
796
|
+
L 08/05/2013 - 21:30:27: "Heather_Locklear<22><BOT><CT>" killed "Make my Day<16><BOT><TERRORIST>" with "m4a1"
|
797
|
+
L 08/05/2013 - 21:30:30: "Jet_Li<17><BOT><TERRORIST>" killed "Heather_Locklear<22><BOT><CT>" with "mp5navy"
|
798
|
+
L 08/05/2013 - 21:30:35: "Jet_Li<17><BOT><TERRORIST>" triggered "Got_The_Bomb"
|
799
|
+
L 08/05/2013 - 21:30:43: "Blah<15><STEAM_0:0:67410624><CT>" killed "Jet_Li<17><BOT><TERRORIST>" with "m4a1"
|
800
|
+
L 08/05/2013 - 21:30:43: "Jet_Li<17><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
801
|
+
L 08/05/2013 - 21:30:46: "Sigourney_Weaver<25><BOT><TERRORIST>" killed "Polymorph<24><BOT><CT>" with "glock18"
|
802
|
+
L 08/05/2013 - 21:30:48: "Quentin_Tarantino<18><BOT><CT>" killed "Will_Smith<26><BOT><TERRORIST>" with "galil"
|
803
|
+
L 08/05/2013 - 21:30:49: "Fuzzy Logic<21><BOT><TERRORIST>" killed "Quentin_Tarantino<18><BOT><CT>" with "mac10"
|
804
|
+
L 08/05/2013 - 21:31:05: "Blah<15><STEAM_0:0:67410624><CT>" killed "Fuzzy Logic<21><BOT><TERRORIST>" with "m4a1"
|
805
|
+
L 08/05/2013 - 21:32:14: "L33t B0t<23><BOT><CT>" killed "Sigourney_Weaver<25><BOT><TERRORIST>" with "m4a1"
|
806
|
+
L 08/05/2013 - 21:32:14: Team "CT" triggered "CTs_Win" (CT "2") (T "1")
|
807
|
+
L 08/05/2013 - 21:32:14: World triggered "Round_End"
|
808
|
+
L 08/05/2013 - 21:32:19: "Fuzzy Logic<21><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
809
|
+
L 08/05/2013 - 21:32:25: World triggered "Round_Start"
|
810
|
+
L 08/05/2013 - 21:32:43: "Stacy_Keech<20><BOT><CT>" killed "Jet_Li<17><BOT><TERRORIST>" with "deagle"
|
811
|
+
L 08/05/2013 - 21:32:57: "L33t B0t<23><BOT><CT>" killed "Marylin_Monroe<19><BOT><TERRORIST>" with "m4a1"
|
812
|
+
L 08/05/2013 - 21:33:02: "L33t B0t<23><BOT><CT>" killed "Make my Day<16><BOT><TERRORIST>" with "m4a1"
|
813
|
+
L 08/05/2013 - 21:33:20: "L33t B0t<23><BOT><CT>" killed "Fuzzy Logic<21><BOT><TERRORIST>" with "m4a1"
|
814
|
+
L 08/05/2013 - 21:33:20: "Fuzzy Logic<21><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
815
|
+
L 08/05/2013 - 21:33:47: "Will_Smith<26><BOT><TERRORIST>" killed "Blah<15><STEAM_0:0:67410624><CT>" with "ak47"
|
816
|
+
L 08/05/2013 - 21:33:58: "Will_Smith<26><BOT><TERRORIST>" killed "Polymorph<24><BOT><CT>" with "ak47"
|
817
|
+
L 08/05/2013 - 21:34:00: "Quentin_Tarantino<18><BOT><CT>" committed suicide with "world"
|
818
|
+
L 08/05/2013 - 21:34:00: "Stacy_Keech<20><BOT><CT>" committed suicide with "world"
|
819
|
+
L 08/05/2013 - 21:34:00: "Heather_Locklear<22><BOT><CT>" committed suicide with "world"
|
820
|
+
L 08/05/2013 - 21:34:00: "L33t B0t<23><BOT><CT>" committed suicide with "world"
|
821
|
+
L 08/05/2013 - 21:34:00: Team "TERRORIST" triggered "Terrorists_Win" (CT "2") (T "2")
|
822
|
+
L 08/05/2013 - 21:34:00: World triggered "Round_End"
|
823
|
+
L 08/05/2013 - 21:34:00: "Sigourney_Weaver<25><BOT><TERRORIST>" committed suicide with "world"
|
824
|
+
L 08/05/2013 - 21:34:00: "Will_Smith<26><BOT><TERRORIST>" committed suicide with "world"
|
825
|
+
L 08/05/2013 - 21:34:05: "Sigourney_Weaver<25><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
826
|
+
L 08/05/2013 - 21:34:11: World triggered "Round_Start"
|
827
|
+
L 08/05/2013 - 21:34:27: "Fuzzy Logic<21><BOT><TERRORIST>" killed "Blah<15><STEAM_0:0:67410624><CT>" with "ak47"
|
828
|
+
L 08/05/2013 - 21:34:32: "Fuzzy Logic<21><BOT><TERRORIST>" killed "Stacy_Keech<20><BOT><CT>" with "ak47"
|
829
|
+
L 08/05/2013 - 21:34:32: "Make my Day<16><BOT><TERRORIST>" committed suicide with "world"
|
830
|
+
L 08/05/2013 - 21:34:32: "Jet_Li<17><BOT><TERRORIST>" committed suicide with "world"
|
831
|
+
L 08/05/2013 - 21:34:32: "Quentin_Tarantino<18><BOT><CT>" committed suicide with "world"
|
832
|
+
L 08/05/2013 - 21:34:32: "Marylin_Monroe<19><BOT><TERRORIST>" committed suicide with "world"
|
833
|
+
L 08/05/2013 - 21:34:32: "Fuzzy Logic<21><BOT><TERRORIST>" committed suicide with "world"
|
834
|
+
L 08/05/2013 - 21:34:32: "Heather_Locklear<22><BOT><CT>" committed suicide with "world"
|
835
|
+
L 08/05/2013 - 21:34:32: "L33t B0t<23><BOT><CT>" committed suicide with "world"
|
836
|
+
L 08/05/2013 - 21:34:32: "Polymorph<24><BOT><CT>" committed suicide with "world"
|
837
|
+
L 08/05/2013 - 21:34:32: Team "TERRORIST" triggered "Terrorists_Win" (CT "2") (T "3")
|
838
|
+
L 08/05/2013 - 21:34:32: World triggered "Round_End"
|
839
|
+
L 08/05/2013 - 21:34:32: "Sigourney_Weaver<25><BOT><TERRORIST>" committed suicide with "world"
|
840
|
+
L 08/05/2013 - 21:34:32: "Will_Smith<26><BOT><TERRORIST>" committed suicide with "world"
|
841
|
+
L 08/05/2013 - 21:34:37: "Will_Smith<26><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
842
|
+
L 08/05/2013 - 21:34:40: "Make my Day<16><BOT><TERRORIST>" committed suicide with "world"
|
843
|
+
L 08/05/2013 - 21:34:40: "Jet_Li<17><BOT><TERRORIST>" committed suicide with "world"
|
844
|
+
L 08/05/2013 - 21:34:40: "Quentin_Tarantino<18><BOT><CT>" committed suicide with "world"
|
845
|
+
L 08/05/2013 - 21:34:40: "Marylin_Monroe<19><BOT><TERRORIST>" committed suicide with "world"
|
846
|
+
L 08/05/2013 - 21:34:40: "Stacy_Keech<20><BOT><CT>" committed suicide with "world"
|
847
|
+
L 08/05/2013 - 21:34:40: "Fuzzy Logic<21><BOT><TERRORIST>" committed suicide with "world"
|
848
|
+
L 08/05/2013 - 21:34:40: "Heather_Locklear<22><BOT><CT>" committed suicide with "world"
|
849
|
+
L 08/05/2013 - 21:34:40: "L33t B0t<23><BOT><CT>" committed suicide with "world"
|
850
|
+
L 08/05/2013 - 21:34:40: "Polymorph<24><BOT><CT>" committed suicide with "world"
|
851
|
+
L 08/05/2013 - 21:34:40: "Sigourney_Weaver<25><BOT><TERRORIST>" committed suicide with "world"
|
852
|
+
L 08/05/2013 - 21:34:40: "Will_Smith<26><BOT><TERRORIST>" committed suicide with "world"
|
853
|
+
L 08/05/2013 - 21:34:40: Team "CT" triggered "CTs_Win" (CT "3") (T "3")
|
854
|
+
L 08/05/2013 - 21:34:40: World triggered "Round_End"
|
855
|
+
L 08/05/2013 - 21:34:43: World triggered "Round_Start"
|
856
|
+
L 08/05/2013 - 21:34:45: "Make my Day<16><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
857
|
+
L 08/05/2013 - 21:34:51: World triggered "Round_Start"
|
858
|
+
L 08/05/2013 - 21:35:06: "Stacy_Keech<20><BOT><CT>" killed "Sigourney_Weaver<25><BOT><TERRORIST>" with "famas"
|
859
|
+
L 08/05/2013 - 21:35:20: "Stacy_Keech<20><BOT><CT>" killed "Fuzzy Logic<21><BOT><TERRORIST>" with "famas"
|
860
|
+
L 08/05/2013 - 21:35:20: "L33t B0t<23><BOT><CT>" killed "Jet_Li<17><BOT><TERRORIST>" with "famas"
|
861
|
+
L 08/05/2013 - 21:35:23: "Stacy_Keech<20><BOT><CT>" killed "Make my Day<16><BOT><TERRORIST>" with "famas"
|
862
|
+
L 08/05/2013 - 21:35:23: "Make my Day<16><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
863
|
+
L 08/05/2013 - 21:35:30: "Blah<15><STEAM_0:0:67410624><CT>" say_team "[ ## BOMB ## ]"
|
864
|
+
L 08/05/2013 - 21:35:32: "Blah<15><STEAM_0:0:67410624><CT>" say_team "[ ## BOMB ## ]"
|
865
|
+
L 08/05/2013 - 21:35:40: "Heather_Locklear<22><BOT><CT>" killed "Will_Smith<26><BOT><TERRORIST>" with "mp5navy"
|
866
|
+
L 08/05/2013 - 21:35:53: "Marylin_Monroe<19><BOT><TERRORIST>" killed "Blah<15><STEAM_0:0:67410624><CT>" with "mac10"
|
867
|
+
L 08/05/2013 - 21:35:56: "Marylin_Monroe<19><BOT><TERRORIST>" killed "Stacy_Keech<20><BOT><CT>" with "mac10"
|
868
|
+
L 08/05/2013 - 21:35:57: "Blah<15><STEAM_0:0:67410624><CT>" disconnected
|
869
|
+
L 08/05/2013 - 21:35:57: "Wesley_Snipes<27><BOT><>" entered the game
|
870
|
+
L 08/05/2013 - 21:35:57: "Wesley_Snipes<27><BOT><>" joined team "CT"
|
871
|
+
L 08/05/2013 - 21:35:58: "Polymorph<24><BOT><CT>" killed "Marylin_Monroe<19><BOT><TERRORIST>" with "famas"
|
872
|
+
L 08/05/2013 - 21:35:58: Team "CT" triggered "CTs_Win" (CT "4") (T "3")
|
873
|
+
L 08/05/2013 - 21:35:58: World triggered "Round_End"
|
874
|
+
L 08/05/2013 - 21:36:03: "Jet_Li<17><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
875
|
+
L 08/05/2013 - 21:36:09: World triggered "Round_Start"
|
876
|
+
L 08/05/2013 - 21:36:20: "Wesley_Snipes<27><BOT><CT>" killed "Sigourney_Weaver<25><BOT><TERRORIST>" with "scout"
|
877
|
+
L 08/05/2013 - 21:36:29: "L33t B0t<23><BOT><CT>" killed "Marylin_Monroe<19><BOT><TERRORIST>" with "aug"
|
878
|
+
L 08/05/2013 - 21:36:29: "Fuzzy Logic<21><BOT><TERRORIST>" killed "Wesley_Snipes<27><BOT><CT>" with "mac10"
|
879
|
+
L 08/05/2013 - 21:36:30: "L33t B0t<23><BOT><CT>" killed "Will_Smith<26><BOT><TERRORIST>" with "aug"
|
880
|
+
L 08/05/2013 - 21:36:39: "Stacy_Keech<20><BOT><CT>" committed suicide with "grenade"
|
881
|
+
L 08/05/2013 - 21:36:48: "Polymorph<24><BOT><CT>" killed "Jet_Li<17><BOT><TERRORIST>" with "m4a1"
|
882
|
+
L 08/05/2013 - 21:36:48: "Jet_Li<17><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
883
|
+
L 08/05/2013 - 21:36:53: "Quentin_Tarantino<18><BOT><CT>" killed "Fuzzy Logic<21><BOT><TERRORIST>" with "scout"
|
884
|
+
L 08/05/2013 - 21:37:03: "Make my Day<16><BOT><TERRORIST>" triggered "Got_The_Bomb"
|
885
|
+
L 08/05/2013 - 21:37:07: "Polymorph<24><BOT><CT>" killed "Make my Day<16><BOT><TERRORIST>" with "m4a1"
|
886
|
+
L 08/05/2013 - 21:37:07: Team "CT" triggered "CTs_Win" (CT "5") (T "3")
|
887
|
+
L 08/05/2013 - 21:37:07: World triggered "Round_End"
|
888
|
+
L 08/05/2013 - 21:37:12: "Marylin_Monroe<19><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
889
|
+
L 08/05/2013 - 21:37:18: World triggered "Round_Start"
|
890
|
+
L 08/05/2013 - 21:37:34: "Wesley_Snipes<27><BOT><CT>" killed "Jet_Li<17><BOT><TERRORIST>" with "aug"
|
891
|
+
L 08/05/2013 - 21:37:37: "Will_Smith<26><BOT><TERRORIST>" killed "Wesley_Snipes<27><BOT><CT>" with "galil"
|
892
|
+
L 08/05/2013 - 21:37:40: "L33t B0t<23><BOT><CT>" killed "Will_Smith<26><BOT><TERRORIST>" with "aug"
|
893
|
+
L 08/05/2013 - 21:37:43: "Heather_Locklear<22><BOT><CT>" killed "Sigourney_Weaver<25><BOT><TERRORIST>" with "aug"
|
894
|
+
L 08/05/2013 - 21:37:45: "Marylin_Monroe<19><BOT><TERRORIST>" killed "Quentin_Tarantino<18><BOT><CT>" with "m3"
|
895
|
+
L 08/05/2013 - 21:37:57: "Marylin_Monroe<19><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
896
|
+
L 08/05/2013 - 21:38:00: "Fuzzy Logic<21><BOT><TERRORIST>" killed "L33t B0t<23><BOT><CT>" with "galil"
|
897
|
+
L 08/05/2013 - 21:38:02: "Stacy_Keech<20><BOT><CT>" killed "Marylin_Monroe<19><BOT><TERRORIST>" with "usp"
|
898
|
+
L 08/05/2013 - 21:38:25: "Heather_Locklear<22><BOT><CT>" triggered "Begin_Bomb_Defuse_With_Kit"
|
899
|
+
L 08/05/2013 - 21:38:30: "Heather_Locklear<22><BOT><CT>" triggered "Defused_The_Bomb"
|
900
|
+
L 08/05/2013 - 21:38:30: Team "CT" triggered "Bomb_Defused" (CT "6") (T "3")
|
901
|
+
L 08/05/2013 - 21:38:30: World triggered "Round_End"
|
902
|
+
L 08/05/2013 - 21:38:35: "Fuzzy Logic<21><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
903
|
+
L 08/05/2013 - 21:38:41: World triggered "Round_Start"
|
904
|
+
L 08/05/2013 - 21:38:59: "Stacy_Keech<20><BOT><CT>" killed "Sigourney_Weaver<25><BOT><TERRORIST>" with "sg550"
|
905
|
+
L 08/05/2013 - 21:39:01: "Jet_Li<17><BOT><TERRORIST>" killed "Quentin_Tarantino<18><BOT><CT>" with "sg552"
|
906
|
+
L 08/05/2013 - 21:39:04: "Stacy_Keech<20><BOT><CT>" killed "Make my Day<16><BOT><TERRORIST>" with "sg550"
|
907
|
+
L 08/05/2013 - 21:39:13: "Marylin_Monroe<19><BOT><TERRORIST>" killed "Wesley_Snipes<27><BOT><CT>" with "galil"
|
908
|
+
L 08/05/2013 - 21:39:18: "L33t B0t<23><BOT><CT>" killed "Will_Smith<26><BOT><TERRORIST>" with "awp"
|
909
|
+
L 08/05/2013 - 21:39:32: "Stacy_Keech<20><BOT><CT>" killed "Fuzzy Logic<21><BOT><TERRORIST>" with "sg550"
|
910
|
+
L 08/05/2013 - 21:39:32: "Fuzzy Logic<21><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
911
|
+
L 08/05/2013 - 21:39:33: "Polymorph<24><BOT><CT>" killed "Marylin_Monroe<19><BOT><TERRORIST>" with "aug"
|
912
|
+
L 08/05/2013 - 21:39:49: "Jet_Li<17><BOT><TERRORIST>" killed "Stacy_Keech<20><BOT><CT>" with "sg552"
|
913
|
+
L 08/05/2013 - 21:43:07: "Jet_Li<17><BOT><TERRORIST>" killed "Polymorph<24><BOT><CT>" with "sg552"
|
914
|
+
L 08/05/2013 - 21:43:41: Team "CT" triggered "Target_Saved" (CT "7") (T "3")
|
915
|
+
L 08/05/2013 - 21:43:41: World triggered "Round_End"
|
916
|
+
L 08/05/2013 - 21:43:46: "Sigourney_Weaver<25><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
917
|
+
L 08/05/2013 - 21:43:52: World triggered "Round_Start"
|
918
|
+
L 08/05/2013 - 21:44:13: "Make my Day<16><BOT><TERRORIST>" killed "Stacy_Keech<20><BOT><CT>" with "galil"
|
919
|
+
L 08/05/2013 - 21:44:19: "Will_Smith<26><BOT><TERRORIST>" killed "Heather_Locklear<22><BOT><CT>" with "mp5navy"
|
920
|
+
L 08/05/2013 - 21:44:32: "Wesley_Snipes<27><BOT><CT>" killed "Make my Day<16><BOT><TERRORIST>" with "m4a1"
|
921
|
+
L 08/05/2013 - 21:44:42: "Quentin_Tarantino<18><BOT><CT>" killed "Jet_Li<17><BOT><TERRORIST>" with "aug"
|
922
|
+
L 08/05/2013 - 21:44:44: "Polymorph<24><BOT><CT>" killed "Marylin_Monroe<19><BOT><TERRORIST>" with "p228"
|
923
|
+
L 08/05/2013 - 21:44:44: "Sigourney_Weaver<25><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
924
|
+
L 08/05/2013 - 21:45:02: "Sigourney_Weaver<25><BOT><TERRORIST>" killed "Polymorph<24><BOT><CT>" with "xm1014"
|
925
|
+
L 08/05/2013 - 21:45:08: "Wesley_Snipes<27><BOT><CT>" killed "Sigourney_Weaver<25><BOT><TERRORIST>" with "m4a1"
|
926
|
+
L 08/05/2013 - 21:45:12: "Wesley_Snipes<27><BOT><CT>" killed "Will_Smith<26><BOT><TERRORIST>" with "m4a1"
|
927
|
+
L 08/05/2013 - 21:45:18: "Quentin_Tarantino<18><BOT><CT>" triggered "Begin_Bomb_Defuse_With_Kit"
|
928
|
+
L 08/05/2013 - 21:45:23: "Quentin_Tarantino<18><BOT><CT>" triggered "Defused_The_Bomb"
|
929
|
+
L 08/05/2013 - 21:45:23: Team "CT" triggered "Bomb_Defused" (CT "8") (T "3")
|
930
|
+
L 08/05/2013 - 21:45:23: World triggered "Round_End"
|
931
|
+
L 08/05/2013 - 21:45:28: "Will_Smith<26><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
932
|
+
L 08/05/2013 - 21:45:34: World triggered "Round_Start"
|
933
|
+
L 08/05/2013 - 21:45:49: "Stacy_Keech<20><BOT><CT>" killed "Make my Day<16><BOT><TERRORIST>" with "scout"
|
934
|
+
L 08/05/2013 - 21:46:31: "Sigourney_Weaver<25><BOT><TERRORIST>" killed "Stacy_Keech<20><BOT><CT>" with "sg552"
|
935
|
+
L 08/05/2013 - 21:46:39: "Will_Smith<26><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
936
|
+
L 08/05/2013 - 21:46:39: "Wesley_Snipes<27><BOT><CT>" killed "Sigourney_Weaver<25><BOT><TERRORIST>" with "m4a1"
|
937
|
+
L 08/05/2013 - 21:46:40: "Jet_Li<17><BOT><TERRORIST>" killed "Wesley_Snipes<27><BOT><CT>" with "galil"
|
938
|
+
L 08/05/2013 - 21:46:49: "Marylin_Monroe<19><BOT><TERRORIST>" killed "Quentin_Tarantino<18><BOT><CT>" with "xm1014"
|
939
|
+
L 08/05/2013 - 21:47:24: Team "TERRORIST" triggered "Target_Bombed" (CT "8") (T "4")
|
940
|
+
L 08/05/2013 - 21:47:24: World triggered "Round_End"
|
941
|
+
L 08/05/2013 - 21:47:29: "Make my Day<16><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
942
|
+
L 08/05/2013 - 21:47:35: World triggered "Round_Start"
|
943
|
+
L 08/05/2013 - 21:47:54: "Polymorph<24><BOT><CT>" killed "Make my Day<16><BOT><TERRORIST>" with "m4a1"
|
944
|
+
L 08/05/2013 - 21:47:54: "Make my Day<16><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
945
|
+
L 08/05/2013 - 21:47:58: "Stacy_Keech<20><BOT><CT>" killed "Fuzzy Logic<21><BOT><TERRORIST>" with "galil"
|
946
|
+
L 08/05/2013 - 21:48:01: "Will_Smith<26><BOT><TERRORIST>" killed "Polymorph<24><BOT><CT>" with "ak47"
|
947
|
+
L 08/05/2013 - 21:48:02: "Will_Smith<26><BOT><TERRORIST>" triggered "Got_The_Bomb"
|
948
|
+
L 08/05/2013 - 21:48:03: "Wesley_Snipes<27><BOT><CT>" killed "Marylin_Monroe<19><BOT><TERRORIST>" with "usp"
|
949
|
+
L 08/05/2013 - 21:48:10: "Stacy_Keech<20><BOT><CT>" killed "Sigourney_Weaver<25><BOT><TERRORIST>" with "galil"
|
950
|
+
L 08/05/2013 - 21:48:26: "Jet_Li<17><BOT><TERRORIST>" killed "Quentin_Tarantino<18><BOT><CT>" with "deagle"
|
951
|
+
L 08/05/2013 - 21:48:29: "Will_Smith<26><BOT><TERRORIST>" killed "Heather_Locklear<22><BOT><CT>" with "ak47"
|
952
|
+
L 08/05/2013 - 21:48:33: "Wesley_Snipes<27><BOT><CT>" killed "Will_Smith<26><BOT><TERRORIST>" with "scout"
|
953
|
+
L 08/05/2013 - 21:48:33: "Will_Smith<26><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
954
|
+
L 08/05/2013 - 21:48:33: "L33t B0t<23><BOT><CT>" killed "Jet_Li<17><BOT><TERRORIST>" with "awp"
|
955
|
+
L 08/05/2013 - 21:48:33: Team "CT" triggered "CTs_Win" (CT "9") (T "4")
|
956
|
+
L 08/05/2013 - 21:48:33: World triggered "Round_End"
|
957
|
+
L 08/05/2013 - 21:48:38: "Jet_Li<17><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
958
|
+
L 08/05/2013 - 21:48:44: World triggered "Round_Start"
|
959
|
+
L 08/05/2013 - 21:48:58: "Stacy_Keech<20><BOT><CT>" killed "Jet_Li<17><BOT><TERRORIST>" with "usp"
|
960
|
+
L 08/05/2013 - 21:48:58: "Jet_Li<17><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
961
|
+
L 08/05/2013 - 21:49:17: "Polymorph<24><BOT><CT>" killed "Sigourney_Weaver<25><BOT><TERRORIST>" with "m4a1"
|
962
|
+
L 08/05/2013 - 21:49:17: "Quentin_Tarantino<18><BOT><CT>" killed "Make my Day<16><BOT><TERRORIST>" with "aug"
|
963
|
+
L 08/05/2013 - 21:49:21: "Quentin_Tarantino<18><BOT><CT>" killed "Marylin_Monroe<19><BOT><TERRORIST>" with "aug"
|
964
|
+
L 08/05/2013 - 21:49:42: "Heather_Locklear<22><BOT><CT>" killed "Fuzzy Logic<21><BOT><TERRORIST>" with "sg550"
|
965
|
+
L 08/05/2013 - 21:49:47: "Will_Smith<26><BOT><TERRORIST>" killed "Quentin_Tarantino<18><BOT><CT>" with "ak47"
|
966
|
+
L 08/05/2013 - 21:50:10: "L33t B0t<23><BOT><CT>" killed "Will_Smith<26><BOT><TERRORIST>" with "awp"
|
967
|
+
L 08/05/2013 - 21:50:10: Team "CT" triggered "CTs_Win" (CT "10") (T "4")
|
968
|
+
L 08/05/2013 - 21:50:10: World triggered "Round_End"
|
969
|
+
L 08/05/2013 - 21:50:15: "Marylin_Monroe<19><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
970
|
+
L 08/05/2013 - 21:50:21: World triggered "Round_Start"
|
971
|
+
L 08/05/2013 - 21:50:33: "Will_Smith<26><BOT><TERRORIST>" killed "Wesley_Snipes<27><BOT><CT>" with "sg552"
|
972
|
+
L 08/05/2013 - 21:50:43: "Marylin_Monroe<19><BOT><TERRORIST>" killed "L33t B0t<23><BOT><CT>" with "mac10"
|
973
|
+
L 08/05/2013 - 21:50:43: "Stacy_Keech<20><BOT><CT>" killed "Will_Smith<26><BOT><TERRORIST>" with "deagle"
|
974
|
+
L 08/05/2013 - 21:50:46: "Polymorph<24><BOT><CT>" killed "Jet_Li<17><BOT><TERRORIST>" with "m4a1"
|
975
|
+
L 08/05/2013 - 21:50:48: "Stacy_Keech<20><BOT><CT>" committed suicide with "worldspawn" (world)
|
976
|
+
L 08/05/2013 - 21:50:56: "Fuzzy Logic<21><BOT><TERRORIST>" killed "Heather_Locklear<22><BOT><CT>" with "ump45"
|
977
|
+
L 08/05/2013 - 21:51:05: "Polymorph<24><BOT><CT>" killed "Marylin_Monroe<19><BOT><TERRORIST>" with "m4a1"
|
978
|
+
L 08/05/2013 - 21:51:05: "Marylin_Monroe<19><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
979
|
+
L 08/05/2013 - 21:51:14: "Polymorph<24><BOT><CT>" killed "Fuzzy Logic<21><BOT><TERRORIST>" with "m4a1"
|
980
|
+
L 08/05/2013 - 21:51:20: "Quentin_Tarantino<18><BOT><CT>" killed "Make my Day<16><BOT><TERRORIST>" with "awp"
|
981
|
+
L 08/05/2013 - 21:51:25: "Sigourney_Weaver<25><BOT><TERRORIST>" killed "Polymorph<24><BOT><CT>" with "ump45"
|
982
|
+
L 08/05/2013 - 21:51:55: "Quentin_Tarantino<18><BOT><CT>" killed "Sigourney_Weaver<25><BOT><TERRORIST>" with "sg550"
|
983
|
+
L 08/05/2013 - 21:51:55: Team "CT" triggered "CTs_Win" (CT "11") (T "4")
|
984
|
+
L 08/05/2013 - 21:51:55: World triggered "Round_End"
|
985
|
+
L 08/05/2013 - 21:52:00: "Fuzzy Logic<21><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
986
|
+
L 08/05/2013 - 21:52:06: World triggered "Round_Start"
|
987
|
+
L 08/05/2013 - 21:52:20: "Make my Day<16><BOT><TERRORIST>" killed "Wesley_Snipes<27><BOT><CT>" with "ak47"
|
988
|
+
L 08/05/2013 - 21:52:21: "Quentin_Tarantino<18><BOT><CT>" killed "Make my Day<16><BOT><TERRORIST>" with "sg550"
|
989
|
+
L 08/05/2013 - 21:52:38: "Heather_Locklear<22><BOT><CT>" killed "Jet_Li<17><BOT><TERRORIST>" with "scout"
|
990
|
+
L 08/05/2013 - 21:52:46: "Polymorph<24><BOT><CT>" killed "Will_Smith<26><BOT><TERRORIST>" with "m4a1"
|
991
|
+
L 08/05/2013 - 21:52:47: "Fuzzy Logic<21><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
992
|
+
L 08/05/2013 - 21:52:50: "Marylin_Monroe<19><BOT><TERRORIST>" killed "Polymorph<24><BOT><CT>" with "m3"
|
993
|
+
L 08/05/2013 - 21:52:52: "Fuzzy Logic<21><BOT><TERRORIST>" killed "L33t B0t<23><BOT><CT>" with "scout"
|
994
|
+
L 08/05/2013 - 21:52:55: "Quentin_Tarantino<18><BOT><CT>" killed "Fuzzy Logic<21><BOT><TERRORIST>" with "sg550"
|
995
|
+
L 08/05/2013 - 21:53:14: "Heather_Locklear<22><BOT><CT>" killed "Marylin_Monroe<19><BOT><TERRORIST>" with "p228"
|
996
|
+
L 08/05/2013 - 21:53:17: "Quentin_Tarantino<18><BOT><CT>" triggered "Begin_Bomb_Defuse_With_Kit"
|
997
|
+
L 08/05/2013 - 21:53:22: "Quentin_Tarantino<18><BOT><CT>" triggered "Defused_The_Bomb"
|
998
|
+
L 08/05/2013 - 21:53:22: Team "CT" triggered "Bomb_Defused" (CT "12") (T "4")
|
999
|
+
L 08/05/2013 - 21:53:22: World triggered "Round_End"
|
1000
|
+
L 08/05/2013 - 21:53:27: "Sigourney_Weaver<25><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1001
|
+
L 08/05/2013 - 21:53:33: World triggered "Round_Start"
|
1002
|
+
L 08/05/2013 - 21:53:49: "Will_Smith<26><BOT><TERRORIST>" killed "Polymorph<24><BOT><CT>" with "galil"
|
1003
|
+
L 08/05/2013 - 21:53:56: "Make my Day<16><BOT><TERRORIST>" killed "Stacy_Keech<20><BOT><CT>" with "ak47"
|
1004
|
+
L 08/05/2013 - 21:53:56: "Heather_Locklear<22><BOT><CT>" killed "Sigourney_Weaver<25><BOT><TERRORIST>" with "sg550"
|
1005
|
+
L 08/05/2013 - 21:53:56: "Sigourney_Weaver<25><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
1006
|
+
L 08/05/2013 - 21:53:59: "Heather_Locklear<22><BOT><CT>" killed "Jet_Li<17><BOT><TERRORIST>" with "sg550"
|
1007
|
+
L 08/05/2013 - 21:54:06: "Fuzzy Logic<21><BOT><TERRORIST>" killed "Wesley_Snipes<27><BOT><CT>" with "ak47"
|
1008
|
+
L 08/05/2013 - 21:54:07: "Heather_Locklear<22><BOT><CT>" killed "Make my Day<16><BOT><TERRORIST>" with "sg550"
|
1009
|
+
L 08/05/2013 - 21:54:18: "Will_Smith<26><BOT><TERRORIST>" killed "L33t B0t<23><BOT><CT>" with "galil"
|
1010
|
+
L 08/05/2013 - 21:54:28: "Marylin_Monroe<19><BOT><TERRORIST>" killed "Heather_Locklear<22><BOT><CT>" with "aug"
|
1011
|
+
L 08/05/2013 - 21:54:34: "Marylin_Monroe<19><BOT><TERRORIST>" triggered "Got_The_Bomb"
|
1012
|
+
L 08/05/2013 - 21:54:47: "Marylin_Monroe<19><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
1013
|
+
L 08/05/2013 - 21:55:25: "Quentin_Tarantino<18><BOT><CT>" killed "Will_Smith<26><BOT><TERRORIST>" with "fiveseven"
|
1014
|
+
L 08/05/2013 - 21:55:26: "Fuzzy Logic<21><BOT><TERRORIST>" killed "Quentin_Tarantino<18><BOT><CT>" with "ak47"
|
1015
|
+
L 08/05/2013 - 21:55:26: Team "TERRORIST" triggered "Terrorists_Win" (CT "12") (T "5")
|
1016
|
+
L 08/05/2013 - 21:55:26: World triggered "Round_End"
|
1017
|
+
L 08/05/2013 - 21:55:31: "Will_Smith<26><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1018
|
+
L 08/05/2013 - 21:55:37: World triggered "Round_Start"
|
1019
|
+
L 08/05/2013 - 21:56:00: "Jet_Li<17><BOT><TERRORIST>" killed "Quentin_Tarantino<18><BOT><CT>" with "sg552"
|
1020
|
+
L 08/05/2013 - 21:56:03: "Heather_Locklear<22><BOT><CT>" killed "Jet_Li<17><BOT><TERRORIST>" with "ump45"
|
1021
|
+
L 08/05/2013 - 21:56:03: "Wesley_Snipes<27><BOT><CT>" killed "Make my Day<16><BOT><TERRORIST>" with "mp5navy"
|
1022
|
+
L 08/05/2013 - 21:56:07: "L33t B0t<23><BOT><CT>" killed "Will_Smith<26><BOT><TERRORIST>" with "aug"
|
1023
|
+
L 08/05/2013 - 21:56:07: "Will_Smith<26><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
1024
|
+
L 08/05/2013 - 21:56:15: "Fuzzy Logic<21><BOT><TERRORIST>" killed "Polymorph<24><BOT><CT>" with "ak47"
|
1025
|
+
L 08/05/2013 - 21:56:17: "Marylin_Monroe<19><BOT><TERRORIST>" killed "Heather_Locklear<22><BOT><CT>" with "ak47"
|
1026
|
+
L 08/05/2013 - 21:56:21: "L33t B0t<23><BOT><CT>" killed "Fuzzy Logic<21><BOT><TERRORIST>" with "aug"
|
1027
|
+
L 08/05/2013 - 21:56:29: "L33t B0t<23><BOT><CT>" killed "Marylin_Monroe<19><BOT><TERRORIST>" with "aug"
|
1028
|
+
L 08/05/2013 - 21:56:31: "L33t B0t<23><BOT><CT>" killed "Sigourney_Weaver<25><BOT><TERRORIST>" with "aug"
|
1029
|
+
L 08/05/2013 - 21:56:31: Team "CT" triggered "CTs_Win" (CT "13") (T "5")
|
1030
|
+
L 08/05/2013 - 21:56:31: World triggered "Round_End"
|
1031
|
+
L 08/05/2013 - 21:56:36: "Make my Day<16><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1032
|
+
L 08/05/2013 - 21:56:42: World triggered "Round_Start"
|
1033
|
+
L 08/05/2013 - 21:56:55: "L33t B0t<23><BOT><CT>" killed "Jet_Li<17><BOT><TERRORIST>" with "awp"
|
1034
|
+
L 08/05/2013 - 21:57:03: "Marylin_Monroe<19><BOT><TERRORIST>" killed "Heather_Locklear<22><BOT><CT>" with "galil"
|
1035
|
+
L 08/05/2013 - 21:57:05: "Make my Day<16><BOT><TERRORIST>" killed "L33t B0t<23><BOT><CT>" with "mp5navy"
|
1036
|
+
L 08/05/2013 - 21:57:07: "Quentin_Tarantino<18><BOT><CT>" killed "Marylin_Monroe<19><BOT><TERRORIST>" with "scout"
|
1037
|
+
L 08/05/2013 - 21:57:13: "Stacy_Keech<20><BOT><CT>" killed "Make my Day<16><BOT><TERRORIST>" with "aug"
|
1038
|
+
L 08/05/2013 - 21:57:13: "Make my Day<16><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
1039
|
+
L 08/05/2013 - 21:57:16: "Stacy_Keech<20><BOT><CT>" killed "Will_Smith<26><BOT><TERRORIST>" with "aug"
|
1040
|
+
L 08/05/2013 - 21:57:28: "Sigourney_Weaver<25><BOT><TERRORIST>" killed "Stacy_Keech<20><BOT><CT>" with "mp5navy"
|
1041
|
+
L 08/05/2013 - 21:57:31: "Fuzzy Logic<21><BOT><TERRORIST>" triggered "Got_The_Bomb"
|
1042
|
+
L 08/05/2013 - 21:58:03: "Quentin_Tarantino<18><BOT><CT>" killed "Sigourney_Weaver<25><BOT><TERRORIST>" with "scout"
|
1043
|
+
L 08/05/2013 - 21:58:23: "Fuzzy Logic<21><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
1044
|
+
L 08/05/2013 - 21:58:36: "Polymorph<24><BOT><CT>" killed "Fuzzy Logic<21><BOT><TERRORIST>" with "m4a1"
|
1045
|
+
L 08/05/2013 - 21:58:42: "Wesley_Snipes<27><BOT><CT>" triggered "Begin_Bomb_Defuse_With_Kit"
|
1046
|
+
L 08/05/2013 - 21:58:47: "Wesley_Snipes<27><BOT><CT>" triggered "Defused_The_Bomb"
|
1047
|
+
L 08/05/2013 - 21:58:47: Team "CT" triggered "Bomb_Defused" (CT "14") (T "5")
|
1048
|
+
L 08/05/2013 - 21:58:47: World triggered "Round_End"
|
1049
|
+
L 08/05/2013 - 21:58:52: "Jet_Li<17><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1050
|
+
L 08/05/2013 - 21:58:58: World triggered "Round_Start"
|
1051
|
+
L 08/05/2013 - 21:59:11: "Stacy_Keech<20><BOT><CT>" killed "Sigourney_Weaver<25><BOT><TERRORIST>" with "awp"
|
1052
|
+
L 08/05/2013 - 21:59:12: "Jet_Li<17><BOT><TERRORIST>" killed "Stacy_Keech<20><BOT><CT>" with "ak47"
|
1053
|
+
L 08/05/2013 - 21:59:18: "L33t B0t<23><BOT><CT>" killed "Will_Smith<26><BOT><TERRORIST>" with "scout"
|
1054
|
+
L 08/05/2013 - 21:59:21: "Heather_Locklear<22><BOT><CT>" killed "Jet_Li<17><BOT><TERRORIST>" with "usp"
|
1055
|
+
L 08/05/2013 - 21:59:21: "Jet_Li<17><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
1056
|
+
L 08/05/2013 - 21:59:25: "Quentin_Tarantino<18><BOT><CT>" killed "Fuzzy Logic<21><BOT><TERRORIST>" with "fiveseven"
|
1057
|
+
L 08/05/2013 - 21:59:28: "Make my Day<16><BOT><TERRORIST>" killed "Quentin_Tarantino<18><BOT><CT>" with "galil"
|
1058
|
+
L 08/05/2013 - 21:59:30: "Make my Day<16><BOT><TERRORIST>" killed "Heather_Locklear<22><BOT><CT>" with "galil"
|
1059
|
+
L 08/05/2013 - 21:59:37: "Marylin_Monroe<19><BOT><TERRORIST>" killed "Polymorph<24><BOT><CT>" with "galil"
|
1060
|
+
L 08/05/2013 - 22:00:04: "L33t B0t<23><BOT><CT>" killed "Marylin_Monroe<19><BOT><TERRORIST>" with "scout"
|
1061
|
+
L 08/05/2013 - 22:00:29: "Make my Day<16><BOT><TERRORIST>" triggered "Got_The_Bomb"
|
1062
|
+
L 08/05/2013 - 22:01:08: Team "CT" scored "14" with "6" players
|
1063
|
+
L 08/05/2013 - 22:01:08: Team "TERRORIST" scored "5" with "6" players
|
1064
|
+
L 08/05/2013 - 22:01:09: Podbot mm - Experience Data saved...
|
1065
|
+
L 08/05/2013 - 22:01:09: Podbot mm - Visibility Table not saved - Table doesn't need to be saved now.
|
1066
|
+
L 08/05/2013 - 22:01:09: Server cvar "mp_chattime" = "12"
|
1067
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_chattime" = "10"
|
1068
|
+
L 08/05/2013 - 22:01:19: Podbot mm - Experience Data saved...
|
1069
|
+
L 08/05/2013 - 22:01:19: Podbot mm - Visibility Table not saved - Table doesn't need to be saved now.
|
1070
|
+
L 08/05/2013 - 22:01:19: [META] ini: Begin re-reading plugins list: /vagrant/hlds/cstrike/addons/metamod/plugins.ini
|
1071
|
+
L 08/05/2013 - 22:01:19: [META] ini: Read plugin config for: AMX Mod X
|
1072
|
+
L 08/05/2013 - 22:01:19: [META] ini: Read plugin config for: POD-Bot mm
|
1073
|
+
L 08/05/2013 - 22:01:19: [META] ini: Finished reading plugins list: /vagrant/hlds/cstrike/addons/metamod/plugins.ini; Found 2 plugins
|
1074
|
+
L 08/05/2013 - 22:01:19: [META] dll: Updating plugins...
|
1075
|
+
L 08/05/2013 - 22:01:19: [META] dll: Finished updating 5 plugins; kept 2, loaded 0, unloaded 0, reloaded 0, delayed 0
|
1076
|
+
L 08/05/2013 - 22:01:19: Log file closed
|
1077
|
+
L 08/05/2013 - 22:01:19: Log file started (file "logs/L0805066.log") (game "cstrike") (version "48/1.1.2.7/Stdio/6027")
|
1078
|
+
L 08/05/2013 - 22:01:19: Loading map "de_dust2"
|
1079
|
+
L 08/05/2013 - 22:01:19: Server cvars start
|
1080
|
+
L 08/05/2013 - 22:01:19: Server cvar "_tutor_bomb_viewable_check_interval" = "0.5"
|
1081
|
+
L 08/05/2013 - 22:01:19: Server cvar "_tutor_debug_level" = "0"
|
1082
|
+
L 08/05/2013 - 22:01:19: Server cvar "_tutor_examine_time" = "0.5"
|
1083
|
+
L 08/05/2013 - 22:01:19: Server cvar "_tutor_hint_interval_time" = "10.0"
|
1084
|
+
L 08/05/2013 - 22:01:19: Server cvar "_tutor_look_angle" = "10"
|
1085
|
+
L 08/05/2013 - 22:01:19: Server cvar "_tutor_look_distance" = "200"
|
1086
|
+
L 08/05/2013 - 22:01:19: Server cvar "_tutor_message_character_display_time_coefficient" = "0.07"
|
1087
|
+
L 08/05/2013 - 22:01:19: Server cvar "_tutor_message_minimum_display_time" = "1"
|
1088
|
+
L 08/05/2013 - 22:01:19: Server cvar "_tutor_message_repeats" = "5"
|
1089
|
+
L 08/05/2013 - 22:01:19: Server cvar "_tutor_view_distance" = "1000"
|
1090
|
+
L 08/05/2013 - 22:01:19: Server cvar "allow_spectators" = "1.0"
|
1091
|
+
L 08/05/2013 - 22:01:19: Server cvar "amx_client_languages" = "1"
|
1092
|
+
L 08/05/2013 - 22:01:19: Server cvar "amx_language" = "en"
|
1093
|
+
L 08/05/2013 - 22:01:19: Server cvar "amx_nextmap" = "de_dust2"
|
1094
|
+
L 08/05/2013 - 22:01:19: Server cvar "amx_timeleft" = "00:00"
|
1095
|
+
L 08/05/2013 - 22:01:19: Server cvar "amxmodx_version" = "1.8.2"
|
1096
|
+
L 08/05/2013 - 22:01:19: Server cvar "coop" = "0"
|
1097
|
+
L 08/05/2013 - 22:01:19: Server cvar "deathmatch" = "1"
|
1098
|
+
L 08/05/2013 - 22:01:19: Server cvar "decalfrequency" = "30"
|
1099
|
+
L 08/05/2013 - 22:01:19: Server cvar "edgefriction" = "2"
|
1100
|
+
L 08/05/2013 - 22:01:19: Server cvar "hostage_debug" = "0"
|
1101
|
+
L 08/05/2013 - 22:01:19: Server cvar "hostage_stop" = "0"
|
1102
|
+
L 08/05/2013 - 22:01:19: Server cvar "humans_join_team" = "any"
|
1103
|
+
L 08/05/2013 - 22:01:19: Server cvar "max_queries_sec" = "3.0"
|
1104
|
+
L 08/05/2013 - 22:01:19: Server cvar "max_queries_sec_global" = "30"
|
1105
|
+
L 08/05/2013 - 22:01:19: Server cvar "max_queries_window" = "60"
|
1106
|
+
L 08/05/2013 - 22:01:19: Server cvar "metamod_version" = "1.21p37"
|
1107
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_allowmonsters" = "0"
|
1108
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_autokick" = "1"
|
1109
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_autokick_timeout" = "-1"
|
1110
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_autoteambalance" = "1"
|
1111
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_buytime" = "1.5"
|
1112
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_c4timer" = "45"
|
1113
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_chattime" = "10"
|
1114
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_consistency" = "1"
|
1115
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_fadetoblack" = "0"
|
1116
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_flashlight" = "0"
|
1117
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_footsteps" = "1"
|
1118
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_forcecamera" = "0"
|
1119
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_forcechasecam" = "0"
|
1120
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_fragsleft" = "0"
|
1121
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_freezetime" = "6"
|
1122
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_friendlyfire" = "1"
|
1123
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_ghostfrequency" = "0.1"
|
1124
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_hostagepenalty" = "13"
|
1125
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_kickpercent" = "0.66"
|
1126
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_limitteams" = "2"
|
1127
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_logdetail" = "0"
|
1128
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_logfile" = "1"
|
1129
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_logmessages" = "1"
|
1130
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_mapvoteratio" = "0.66"
|
1131
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_maxrounds" = "0"
|
1132
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_mirrordamage" = "0"
|
1133
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_playerid" = "0"
|
1134
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_roundtime" = "5"
|
1135
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_startmoney" = "800"
|
1136
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_timeleft" = "0"
|
1137
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_timelimit" = "35"
|
1138
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_tkpunish" = "0"
|
1139
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_windifference" = "1"
|
1140
|
+
L 08/05/2013 - 22:01:19: Server cvar "mp_winlimit" = "0"
|
1141
|
+
L 08/05/2013 - 22:01:19: Server cvar "pausable" = "0"
|
1142
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_aim_damper_coefficient_x" = "0.22"
|
1143
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_aim_damper_coefficient_y" = "0.22"
|
1144
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_aim_deviation_x" = "2.0"
|
1145
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_aim_deviation_y" = "1.0"
|
1146
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_aim_influence_x_on_y" = "0.25"
|
1147
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_aim_influence_y_on_x" = "0.17"
|
1148
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_aim_notarget_slowdown_ratio" = "0.5"
|
1149
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_aim_offset_delay" = "1.2"
|
1150
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_aim_spring_stiffness_x" = "13.0"
|
1151
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_aim_spring_stiffness_y" = "13.0"
|
1152
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_aim_target_anticipation_ratio" = "2.2"
|
1153
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_aim_type" = "4"
|
1154
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_autokill" = "0"
|
1155
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_autokilldelay" = "45"
|
1156
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_bot_join_team" = "ANY"
|
1157
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_bot_quota_match" = "0"
|
1158
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_chat" = "0"
|
1159
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_dangerfactor" = "2000"
|
1160
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_detailnames" = "0"
|
1161
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_ffa" = "0"
|
1162
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_firsthumanrestart" = "0"
|
1163
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_jasonmode" = "0"
|
1164
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_latencybot" = "2"
|
1165
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_mapstartbotdelay" = "10"
|
1166
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_maxbots" = "16"
|
1167
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_maxbotskill" = "100"
|
1168
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_maxcamptime" = "30"
|
1169
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_maxweaponpickup" = "10"
|
1170
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_minbots" = "7"
|
1171
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_minbotskill" = "95"
|
1172
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_numfollowuser" = "5"
|
1173
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_radio" = "1"
|
1174
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_restrequipammo" = "000000000"
|
1175
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_restrweapons" = "00000000000000000000000001"
|
1176
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_shootthruwalls" = "1"
|
1177
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_skin" = "5"
|
1178
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_spray" = "1"
|
1179
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_timer_grenade" = "0.5"
|
1180
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_timer_pickup" = "0.3"
|
1181
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_timer_sound" = "0.5"
|
1182
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_usespeech" = "0"
|
1183
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_version" = "V3B22"
|
1184
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_welcomemsgs" = "0"
|
1185
|
+
L 08/05/2013 - 22:01:19: Server cvar "pb_wptfolder" = "wptdefault"
|
1186
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_accelerate" = "5"
|
1187
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_aim" = "0"
|
1188
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_airaccelerate" = "10"
|
1189
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_allowupload" = "1"
|
1190
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_alltalk" = "0"
|
1191
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_bounce" = "1"
|
1192
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_cheats" = "0"
|
1193
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_clienttrace" = "1"
|
1194
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_contact" = ""
|
1195
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_friction" = "4"
|
1196
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_gravity" = "800"
|
1197
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_logblocks" = "0"
|
1198
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_maxrate" = "25000"
|
1199
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_maxspeed" = "900"
|
1200
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_minrate" = "15000"
|
1201
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_password" = ""
|
1202
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_proxies" = "1"
|
1203
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_restart" = "0"
|
1204
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_restartround" = "0"
|
1205
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_stepsize" = "18"
|
1206
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_stopspeed" = "75"
|
1207
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_uploadmax" = "0.5"
|
1208
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_voiceenable" = "1"
|
1209
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_wateraccelerate" = "10"
|
1210
|
+
L 08/05/2013 - 22:01:19: Server cvar "sv_waterfriction" = "1"
|
1211
|
+
L 08/05/2013 - 22:01:19: Server cvars end
|
1212
|
+
L 08/05/2013 - 22:01:24: Podbot mm - Visibility Table file (pvi) exists and is newer than the waypoint file (pwf).
|
1213
|
+
L 08/05/2013 - 22:01:24: Podbot mm - Loading & decompressing Visibility Table
|
1214
|
+
L 08/05/2013 - 22:01:24: Podbot mm - Visibility Table loaded from File...
|
1215
|
+
L 08/05/2013 - 22:01:36: Started map "de_dust2" (CRC "1159425449")
|
1216
|
+
L 08/05/2013 - 22:01:43: World triggered "Round_Start"
|
1217
|
+
L 08/05/2013 - 22:01:45: "Make my Day<28><BOT><>" entered the game
|
1218
|
+
L 08/05/2013 - 22:01:45: "Make my Day<28><BOT><>" joined team "TERRORIST"
|
1219
|
+
L 08/05/2013 - 22:01:45: "Make my Day<28><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1220
|
+
L 08/05/2013 - 22:01:45: "Jet_Li<29><BOT><>" entered the game
|
1221
|
+
L 08/05/2013 - 22:01:45: "Jet_Li<29><BOT><>" joined team "TERRORIST"
|
1222
|
+
L 08/05/2013 - 22:01:46: "Quentin_Tarantino<30><BOT><>" entered the game
|
1223
|
+
L 08/05/2013 - 22:01:46: "Quentin_Tarantino<30><BOT><>" joined team "CT"
|
1224
|
+
L 08/05/2013 - 22:01:46: World triggered "Game_Commencing"
|
1225
|
+
L 08/05/2013 - 22:01:46: World triggered "Game_Commencing" (CT "0") (T "0")
|
1226
|
+
L 08/05/2013 - 22:01:46: World triggered "Round_End"
|
1227
|
+
L 08/05/2013 - 22:01:46: "Marylin_Monroe<31><BOT><>" entered the game
|
1228
|
+
L 08/05/2013 - 22:01:46: "Marylin_Monroe<31><BOT><>" joined team "TERRORIST"
|
1229
|
+
L 08/05/2013 - 22:01:47: "Stacy_Keech<32><BOT><>" entered the game
|
1230
|
+
L 08/05/2013 - 22:01:47: "Stacy_Keech<32><BOT><>" joined team "CT"
|
1231
|
+
L 08/05/2013 - 22:01:47: "Fuzzy Logic<33><BOT><>" entered the game
|
1232
|
+
L 08/05/2013 - 22:01:47: "Fuzzy Logic<33><BOT><>" joined team "TERRORIST"
|
1233
|
+
L 08/05/2013 - 22:01:48: "Heather_Locklear<34><BOT><>" entered the game
|
1234
|
+
L 08/05/2013 - 22:01:48: "Heather_Locklear<34><BOT><>" joined team "CT"
|
1235
|
+
L 08/05/2013 - 22:01:48: "L33t B0t<35><BOT><>" entered the game
|
1236
|
+
L 08/05/2013 - 22:01:48: "L33t B0t<35><BOT><>" joined team "CT"
|
1237
|
+
L 08/05/2013 - 22:01:49: "Polymorph<36><BOT><>" entered the game
|
1238
|
+
L 08/05/2013 - 22:01:49: "Jet_Li<29><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1239
|
+
L 08/05/2013 - 22:01:49: "Polymorph<36><BOT><>" joined team "CT"
|
1240
|
+
L 08/05/2013 - 22:01:49: "Sigourney_Weaver<37><BOT><>" entered the game
|
1241
|
+
L 08/05/2013 - 22:01:49: "Sigourney_Weaver<37><BOT><>" joined team "TERRORIST"
|
1242
|
+
L 08/05/2013 - 22:01:50: "Will_Smith<38><BOT><>" entered the game
|
1243
|
+
L 08/05/2013 - 22:01:50: "Will_Smith<38><BOT><>" joined team "TERRORIST"
|
1244
|
+
L 08/05/2013 - 22:01:50: "Wesley_Snipes<39><BOT><>" entered the game
|
1245
|
+
L 08/05/2013 - 22:01:50: "Wesley_Snipes<39><BOT><>" joined team "CT"
|
1246
|
+
L 08/05/2013 - 22:01:55: World triggered "Round_Start"
|
1247
|
+
L 08/05/2013 - 22:02:09: "Sigourney_Weaver<37><BOT><TERRORIST>" killed "Wesley_Snipes<39><BOT><CT>" with "p228"
|
1248
|
+
L 08/05/2013 - 22:02:14: "Make my Day<28><BOT><TERRORIST>" killed "L33t B0t<35><BOT><CT>" with "deagle"
|
1249
|
+
L 08/05/2013 - 22:02:16: "Jet_Li<29><BOT><TERRORIST>" killed "Stacy_Keech<32><BOT><CT>" with "deagle"
|
1250
|
+
L 08/05/2013 - 22:02:42: "Will_Smith<38><BOT><TERRORIST>" killed "Heather_Locklear<34><BOT><CT>" with "p228"
|
1251
|
+
L 08/05/2013 - 22:03:01: "Quentin_Tarantino<30><BOT><CT>" killed "Make my Day<28><BOT><TERRORIST>" with "deagle"
|
1252
|
+
L 08/05/2013 - 22:03:05: "Fuzzy Logic<33><BOT><TERRORIST>" killed "Polymorph<36><BOT><CT>" with "p228"
|
1253
|
+
L 08/05/2013 - 22:03:18: "Jet_Li<29><BOT><TERRORIST>" killed "Quentin_Tarantino<30><BOT><CT>" with "deagle"
|
1254
|
+
L 08/05/2013 - 22:03:18: Team "TERRORIST" triggered "Terrorists_Win" (CT "0") (T "1")
|
1255
|
+
L 08/05/2013 - 22:03:18: World triggered "Round_End"
|
1256
|
+
L 08/05/2013 - 22:03:23: "Marylin_Monroe<31><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1257
|
+
L 08/05/2013 - 22:03:29: World triggered "Round_Start"
|
1258
|
+
L 08/05/2013 - 22:03:41: "Will_Smith<38><BOT><TERRORIST>" killed "Heather_Locklear<34><BOT><CT>" with "scout"
|
1259
|
+
L 08/05/2013 - 22:03:46: "Fuzzy Logic<33><BOT><TERRORIST>" killed "Polymorph<36><BOT><CT>" with "galil"
|
1260
|
+
L 08/05/2013 - 22:03:53: "Jet_Li<29><BOT><TERRORIST>" killed "Stacy_Keech<32><BOT><CT>" with "galil"
|
1261
|
+
L 08/05/2013 - 22:04:00: "Sigourney_Weaver<37><BOT><TERRORIST>" killed "Wesley_Snipes<39><BOT><CT>" with "sg552"
|
1262
|
+
L 08/05/2013 - 22:04:01: "Quentin_Tarantino<30><BOT><CT>" killed "Sigourney_Weaver<37><BOT><TERRORIST>" with "m3"
|
1263
|
+
L 08/05/2013 - 22:04:03: "Jet_Li<29><BOT><TERRORIST>" killed "Quentin_Tarantino<30><BOT><CT>" with "galil"
|
1264
|
+
L 08/05/2013 - 22:04:03: "Marylin_Monroe<31><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
1265
|
+
L 08/05/2013 - 22:04:16: "L33t B0t<35><BOT><CT>" killed "Fuzzy Logic<33><BOT><TERRORIST>" with "deagle"
|
1266
|
+
L 08/05/2013 - 22:04:39: "Marylin_Monroe<31><BOT><TERRORIST>" killed "L33t B0t<35><BOT><CT>" with "galil"
|
1267
|
+
L 08/05/2013 - 22:04:39: Team "TERRORIST" triggered "Terrorists_Win" (CT "0") (T "2")
|
1268
|
+
L 08/05/2013 - 22:04:39: World triggered "Round_End"
|
1269
|
+
L 08/05/2013 - 22:04:44: "Fuzzy Logic<33><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1270
|
+
L 08/05/2013 - 22:04:50: World triggered "Round_Start"
|
1271
|
+
L 08/05/2013 - 22:05:10: "Heather_Locklear<34><BOT><CT>" killed "Fuzzy Logic<33><BOT><TERRORIST>" with "m3"
|
1272
|
+
L 08/05/2013 - 22:05:10: "Fuzzy Logic<33><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
1273
|
+
L 08/05/2013 - 22:05:13: "Stacy_Keech<32><BOT><CT>" killed "Will_Smith<38><BOT><TERRORIST>" with "ump45"
|
1274
|
+
L 08/05/2013 - 22:05:14: "Make my Day<28><BOT><TERRORIST>" triggered "Got_The_Bomb"
|
1275
|
+
L 08/05/2013 - 22:05:16: "Make my Day<28><BOT><TERRORIST>" killed "L33t B0t<35><BOT><CT>" with "galil"
|
1276
|
+
L 08/05/2013 - 22:05:17: "Stacy_Keech<32><BOT><CT>" killed "Jet_Li<29><BOT><TERRORIST>" with "ump45"
|
1277
|
+
L 08/05/2013 - 22:05:21: "Wesley_Snipes<39><BOT><CT>" killed "Make my Day<28><BOT><TERRORIST>" with "mp5navy"
|
1278
|
+
L 08/05/2013 - 22:05:21: "Make my Day<28><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
1279
|
+
L 08/05/2013 - 22:05:25: "Sigourney_Weaver<37><BOT><TERRORIST>" killed "Heather_Locklear<34><BOT><CT>" with "galil"
|
1280
|
+
L 08/05/2013 - 22:05:26: "Polymorph<36><BOT><CT>" killed "Sigourney_Weaver<37><BOT><TERRORIST>" with "mp5navy"
|
1281
|
+
L 08/05/2013 - 22:05:32: "Marylin_Monroe<31><BOT><TERRORIST>" killed "Stacy_Keech<32><BOT><CT>" with "sg552"
|
1282
|
+
L 08/05/2013 - 22:05:41: "Polymorph<36><BOT><CT>" killed "Marylin_Monroe<31><BOT><TERRORIST>" with "mp5navy"
|
1283
|
+
L 08/05/2013 - 22:05:41: Team "CT" triggered "CTs_Win" (CT "1") (T "2")
|
1284
|
+
L 08/05/2013 - 22:05:41: World triggered "Round_End"
|
1285
|
+
L 08/05/2013 - 22:05:46: "Sigourney_Weaver<37><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1286
|
+
L 08/05/2013 - 22:05:52: World triggered "Round_Start"
|
1287
|
+
L 08/05/2013 - 22:06:09: "Stacy_Keech<32><BOT><CT>" killed "Jet_Li<29><BOT><TERRORIST>" with "famas"
|
1288
|
+
L 08/05/2013 - 22:06:09: "Will_Smith<38><BOT><TERRORIST>" killed "L33t B0t<35><BOT><CT>" with "mp5navy"
|
1289
|
+
L 08/05/2013 - 22:06:10: "Make my Day<28><BOT><TERRORIST>" killed "Stacy_Keech<32><BOT><CT>" with "ak47"
|
1290
|
+
L 08/05/2013 - 22:06:14: "Fuzzy Logic<33><BOT><TERRORIST>" killed "Heather_Locklear<34><BOT><CT>" with "mac10"
|
1291
|
+
L 08/05/2013 - 22:06:14: "Polymorph<36><BOT><CT>" killed "Will_Smith<38><BOT><TERRORIST>" with "famas"
|
1292
|
+
L 08/05/2013 - 22:06:19: "Sigourney_Weaver<37><BOT><TERRORIST>" killed "Wesley_Snipes<39><BOT><CT>" with "mac10"
|
1293
|
+
L 08/05/2013 - 22:06:26: "Quentin_Tarantino<30><BOT><CT>" killed "Fuzzy Logic<33><BOT><TERRORIST>" with "mp5navy"
|
1294
|
+
L 08/05/2013 - 22:06:27: "Marylin_Monroe<31><BOT><TERRORIST>" killed "Polymorph<36><BOT><CT>" with "xm1014"
|
1295
|
+
L 08/05/2013 - 22:06:30: "Sigourney_Weaver<37><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
1296
|
+
L 08/05/2013 - 22:06:41: "Marylin_Monroe<31><BOT><TERRORIST>" killed "Quentin_Tarantino<30><BOT><CT>" with "famas"
|
1297
|
+
L 08/05/2013 - 22:06:41: Team "TERRORIST" triggered "Terrorists_Win" (CT "1") (T "3")
|
1298
|
+
L 08/05/2013 - 22:06:41: World triggered "Round_End"
|
1299
|
+
L 08/05/2013 - 22:06:46: "Will_Smith<38><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1300
|
+
L 08/05/2013 - 22:06:52: World triggered "Round_Start"
|
1301
|
+
L 08/05/2013 - 22:07:02: "Fuzzy Logic<33><BOT><TERRORIST>" killed "Polymorph<36><BOT><CT>" with "galil"
|
1302
|
+
L 08/05/2013 - 22:07:14: "Fuzzy Logic<33><BOT><TERRORIST>" killed "Wesley_Snipes<39><BOT><CT>" with "galil"
|
1303
|
+
L 08/05/2013 - 22:07:23: "Will_Smith<38><BOT><TERRORIST>" killed "L33t B0t<35><BOT><CT>" with "galil"
|
1304
|
+
L 08/05/2013 - 22:07:31: "Heather_Locklear<34><BOT><CT>" killed "Will_Smith<38><BOT><TERRORIST>" with "deagle"
|
1305
|
+
L 08/05/2013 - 22:07:31: "Will_Smith<38><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
1306
|
+
L 08/05/2013 - 22:07:35: "Stacy_Keech<32><BOT><CT>" killed "Sigourney_Weaver<37><BOT><TERRORIST>" with "mp5navy"
|
1307
|
+
L 08/05/2013 - 22:07:38: "Heather_Locklear<34><BOT><CT>" killed "Make my Day<28><BOT><TERRORIST>" with "deagle"
|
1308
|
+
L 08/05/2013 - 22:07:40: "Jet_Li<29><BOT><TERRORIST>" killed "Quentin_Tarantino<30><BOT><CT>" with "galil"
|
1309
|
+
L 08/05/2013 - 22:07:43: "Fuzzy Logic<33><BOT><TERRORIST>" triggered "Got_The_Bomb"
|
1310
|
+
L 08/05/2013 - 22:07:44: "Jet_Li<29><BOT><TERRORIST>" killed "Stacy_Keech<32><BOT><CT>" with "galil"
|
1311
|
+
L 08/05/2013 - 22:07:50: "Heather_Locklear<34><BOT><CT>" killed "Fuzzy Logic<33><BOT><TERRORIST>" with "ak47"
|
1312
|
+
L 08/05/2013 - 22:07:50: "Fuzzy Logic<33><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
1313
|
+
L 08/05/2013 - 22:08:21: "Heather_Locklear<34><BOT><CT>" killed "Jet_Li<29><BOT><TERRORIST>" with "ak47"
|
1314
|
+
L 08/05/2013 - 22:08:31: "Marylin_Monroe<31><BOT><TERRORIST>" killed "Heather_Locklear<34><BOT><CT>" with "sg552"
|
1315
|
+
L 08/05/2013 - 22:08:31: Team "TERRORIST" triggered "Terrorists_Win" (CT "1") (T "4")
|
1316
|
+
L 08/05/2013 - 22:08:31: World triggered "Round_End"
|
1317
|
+
L 08/05/2013 - 22:08:36: "Make my Day<28><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1318
|
+
L 08/05/2013 - 22:08:42: World triggered "Round_Start"
|
1319
|
+
L 08/05/2013 - 22:08:58: "Wesley_Snipes<39><BOT><CT>" killed "Make my Day<28><BOT><TERRORIST>" with "tmp"
|
1320
|
+
L 08/05/2013 - 22:08:58: "Make my Day<28><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
1321
|
+
L 08/05/2013 - 22:09:00: "Sigourney_Weaver<37><BOT><TERRORIST>" killed "Wesley_Snipes<39><BOT><CT>" with "ak47"
|
1322
|
+
L 08/05/2013 - 22:09:01: "Fuzzy Logic<33><BOT><TERRORIST>" killed "Heather_Locklear<34><BOT><CT>" with "deagle"
|
1323
|
+
L 08/05/2013 - 22:09:04: "Sigourney_Weaver<37><BOT><TERRORIST>" triggered "Got_The_Bomb"
|
1324
|
+
L 08/05/2013 - 22:09:07: "Sigourney_Weaver<37><BOT><TERRORIST>" killed "L33t B0t<35><BOT><CT>" with "ak47"
|
1325
|
+
L 08/05/2013 - 22:09:14: "Stacy_Keech<32><BOT><CT>" killed "Sigourney_Weaver<37><BOT><TERRORIST>" with "tmp"
|
1326
|
+
L 08/05/2013 - 22:09:14: "Sigourney_Weaver<37><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
1327
|
+
L 08/05/2013 - 22:09:23: "Marylin_Monroe<31><BOT><TERRORIST>" killed "Stacy_Keech<32><BOT><CT>" with "sg552"
|
1328
|
+
L 08/05/2013 - 22:09:26: "Marylin_Monroe<31><BOT><TERRORIST>" triggered "Got_The_Bomb"
|
1329
|
+
L 08/05/2013 - 22:09:31: "Quentin_Tarantino<30><BOT><CT>" killed "Jet_Li<29><BOT><TERRORIST>" with "tmp"
|
1330
|
+
L 08/05/2013 - 22:09:39: "Marylin_Monroe<31><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
1331
|
+
L 08/05/2013 - 22:09:39: "Fuzzy Logic<33><BOT><TERRORIST>" killed "Quentin_Tarantino<30><BOT><CT>" with "scout"
|
1332
|
+
L 08/05/2013 - 22:09:45: "Fuzzy Logic<33><BOT><TERRORIST>" killed "Polymorph<36><BOT><CT>" with "scout"
|
1333
|
+
L 08/05/2013 - 22:09:45: Team "TERRORIST" triggered "Terrorists_Win" (CT "1") (T "5")
|
1334
|
+
L 08/05/2013 - 22:09:45: World triggered "Round_End"
|
1335
|
+
L 08/05/2013 - 22:09:50: "Jet_Li<29><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1336
|
+
L 08/05/2013 - 22:09:56: World triggered "Round_Start"
|
1337
|
+
L 08/05/2013 - 22:10:13: "Stacy_Keech<32><BOT><CT>" killed "Fuzzy Logic<33><BOT><TERRORIST>" with "ump45"
|
1338
|
+
L 08/05/2013 - 22:10:14: "Heather_Locklear<34><BOT><CT>" killed "Sigourney_Weaver<37><BOT><TERRORIST>" with "mp5navy"
|
1339
|
+
L 08/05/2013 - 22:10:20: "Quentin_Tarantino<30><BOT><CT>" killed "Will_Smith<38><BOT><TERRORIST>" with "scout"
|
1340
|
+
L 08/05/2013 - 22:10:21: "Heather_Locklear<34><BOT><CT>" killed "Make my Day<28><BOT><TERRORIST>" with "mp5navy"
|
1341
|
+
L 08/05/2013 - 22:10:21: "Jet_Li<29><BOT><TERRORIST>" killed "Quentin_Tarantino<30><BOT><CT>" with "scout"
|
1342
|
+
L 08/05/2013 - 22:10:24: "Jet_Li<29><BOT><TERRORIST>" killed "Polymorph<36><BOT><CT>" with "scout"
|
1343
|
+
L 08/05/2013 - 22:10:36: "Heather_Locklear<34><BOT><CT>" killed "Jet_Li<29><BOT><TERRORIST>" with "mp5navy"
|
1344
|
+
L 08/05/2013 - 22:10:36: "Jet_Li<29><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
1345
|
+
L 08/05/2013 - 22:10:47: "Marylin_Monroe<31><BOT><TERRORIST>" triggered "Got_The_Bomb"
|
1346
|
+
L 08/05/2013 - 22:10:47: "Heather_Locklear<34><BOT><CT>" killed "Marylin_Monroe<31><BOT><TERRORIST>" with "mp5navy"
|
1347
|
+
L 08/05/2013 - 22:10:47: Team "CT" triggered "CTs_Win" (CT "2") (T "5")
|
1348
|
+
L 08/05/2013 - 22:10:47: World triggered "Round_End"
|
1349
|
+
L 08/05/2013 - 22:10:52: "Marylin_Monroe<31><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1350
|
+
L 08/05/2013 - 22:10:58: World triggered "Round_Start"
|
1351
|
+
L 08/05/2013 - 22:11:16: "Marylin_Monroe<31><BOT><TERRORIST>" killed "Polymorph<36><BOT><CT>" with "xm1014"
|
1352
|
+
L 08/05/2013 - 22:11:16: "Quentin_Tarantino<30><BOT><CT>" killed "Make my Day<28><BOT><TERRORIST>" with "aug"
|
1353
|
+
L 08/05/2013 - 22:11:17: "Stacy_Keech<32><BOT><CT>" killed "Will_Smith<38><BOT><TERRORIST>" with "sg552"
|
1354
|
+
L 08/05/2013 - 22:11:23: "Stacy_Keech<32><BOT><CT>" killed "Fuzzy Logic<33><BOT><TERRORIST>" with "sg552"
|
1355
|
+
L 08/05/2013 - 22:11:27: "Jet_Li<29><BOT><TERRORIST>" killed "Stacy_Keech<32><BOT><CT>" with "mp5navy"
|
1356
|
+
L 08/05/2013 - 22:11:40: "L33t B0t<35><BOT><CT>" killed "Jet_Li<29><BOT><TERRORIST>" with "p90"
|
1357
|
+
L 08/05/2013 - 22:11:41: "Marylin_Monroe<31><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
1358
|
+
L 08/05/2013 - 22:11:43: "Sigourney_Weaver<37><BOT><TERRORIST>" killed "L33t B0t<35><BOT><CT>" with "sg552"
|
1359
|
+
L 08/05/2013 - 22:11:45: "Marylin_Monroe<31><BOT><TERRORIST>" killed "Wesley_Snipes<39><BOT><CT>" with "famas"
|
1360
|
+
L 08/05/2013 - 22:12:05: "Heather_Locklear<34><BOT><CT>" killed "Sigourney_Weaver<37><BOT><TERRORIST>" with "scout"
|
1361
|
+
L 08/05/2013 - 22:12:21: "Heather_Locklear<34><BOT><CT>" killed "Marylin_Monroe<31><BOT><TERRORIST>" with "scout"
|
1362
|
+
L 08/05/2013 - 22:12:26: Team "TERRORIST" triggered "Target_Bombed" (CT "2") (T "6")
|
1363
|
+
L 08/05/2013 - 22:12:26: World triggered "Round_End"
|
1364
|
+
L 08/05/2013 - 22:12:31: "Fuzzy Logic<33><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1365
|
+
L 08/05/2013 - 22:12:37: World triggered "Round_Start"
|
1366
|
+
L 08/05/2013 - 22:12:56: "Sigourney_Weaver<37><BOT><TERRORIST>" killed "Quentin_Tarantino<30><BOT><CT>" with "ak47"
|
1367
|
+
L 08/05/2013 - 22:13:03: "Fuzzy Logic<33><BOT><TERRORIST>" killed "Stacy_Keech<32><BOT><CT>" with "galil"
|
1368
|
+
L 08/05/2013 - 22:13:05: "L33t B0t<35><BOT><CT>" killed "Fuzzy Logic<33><BOT><TERRORIST>" with "scout"
|
1369
|
+
L 08/05/2013 - 22:13:05: "Fuzzy Logic<33><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
1370
|
+
L 08/05/2013 - 22:13:06: "L33t B0t<35><BOT><CT>" killed "Sigourney_Weaver<37><BOT><TERRORIST>" with "scout"
|
1371
|
+
L 08/05/2013 - 22:13:08: "Make my Day<28><BOT><TERRORIST>" killed "L33t B0t<35><BOT><CT>" with "aug"
|
1372
|
+
L 08/05/2013 - 22:13:15: "Jet_Li<29><BOT><TERRORIST>" killed "Heather_Locklear<34><BOT><CT>" with "scout"
|
1373
|
+
L 08/05/2013 - 22:13:17: "Make my Day<28><BOT><TERRORIST>" triggered "Got_The_Bomb"
|
1374
|
+
L 08/05/2013 - 22:13:25: "Marylin_Monroe<31><BOT><TERRORIST>" killed "Wesley_Snipes<39><BOT><CT>" with "ak47"
|
1375
|
+
L 08/05/2013 - 22:13:54: "Make my Day<28><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
1376
|
+
L 08/05/2013 - 22:14:39: Team "TERRORIST" triggered "Target_Bombed" (CT "2") (T "7")
|
1377
|
+
L 08/05/2013 - 22:14:39: World triggered "Round_End"
|
1378
|
+
L 08/05/2013 - 22:14:44: "Sigourney_Weaver<37><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1379
|
+
L 08/05/2013 - 22:14:50: World triggered "Round_Start"
|
1380
|
+
L 08/05/2013 - 22:15:04: "Wesley_Snipes<39><BOT><CT>" killed "Fuzzy Logic<33><BOT><TERRORIST>" with "ump45"
|
1381
|
+
L 08/05/2013 - 22:15:08: "L33t B0t<35><BOT><CT>" killed "Sigourney_Weaver<37><BOT><TERRORIST>" with "tmp"
|
1382
|
+
L 08/05/2013 - 22:15:08: "Sigourney_Weaver<37><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
1383
|
+
L 08/05/2013 - 22:15:16: "L33t B0t<35><BOT><CT>" killed "Make my Day<28><BOT><TERRORIST>" with "usp"
|
1384
|
+
L 08/05/2013 - 22:15:21: "Marylin_Monroe<31><BOT><TERRORIST>" killed "Stacy_Keech<32><BOT><CT>" with "ak47"
|
1385
|
+
L 08/05/2013 - 22:15:25: "Will_Smith<38><BOT><TERRORIST>" killed "L33t B0t<35><BOT><CT>" with "ak47"
|
1386
|
+
L 08/05/2013 - 22:15:37: "Will_Smith<38><BOT><TERRORIST>" triggered "Got_The_Bomb"
|
1387
|
+
L 08/05/2013 - 22:16:24: "Quentin_Tarantino<30><BOT><CT>" killed "Jet_Li<29><BOT><TERRORIST>" with "ump45"
|
1388
|
+
L 08/05/2013 - 22:16:27: "Quentin_Tarantino<30><BOT><CT>" killed "Will_Smith<38><BOT><TERRORIST>" with "ump45"
|
1389
|
+
L 08/05/2013 - 22:16:27: "Will_Smith<38><BOT><TERRORIST>" triggered "Dropped_The_Bomb"
|
1390
|
+
L 08/05/2013 - 22:16:49: "Marylin_Monroe<31><BOT><TERRORIST>" triggered "Got_The_Bomb"
|
1391
|
+
L 08/05/2013 - 22:17:11: "Marylin_Monroe<31><BOT><TERRORIST>" killed "Wesley_Snipes<39><BOT><CT>" with "ak47"
|
1392
|
+
L 08/05/2013 - 22:17:24: "Marylin_Monroe<31><BOT><TERRORIST>" killed "Heather_Locklear<34><BOT><CT>" with "ak47"
|
1393
|
+
L 08/05/2013 - 22:17:49: "Marylin_Monroe<31><BOT><TERRORIST>" killed "Quentin_Tarantino<30><BOT><CT>" with "ak47"
|
1394
|
+
L 08/05/2013 - 22:18:31: "Marylin_Monroe<31><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
1395
|
+
L 08/05/2013 - 22:18:53: "Polymorph<36><BOT><CT>" killed "Marylin_Monroe<31><BOT><TERRORIST>" with "ak47"
|
1396
|
+
L 08/05/2013 - 22:19:08: "Polymorph<36><BOT><CT>" triggered "Begin_Bomb_Defuse_With_Kit"
|
1397
|
+
L 08/05/2013 - 22:19:13: "Polymorph<36><BOT><CT>" triggered "Defused_The_Bomb"
|
1398
|
+
L 08/05/2013 - 22:19:13: Team "CT" triggered "Bomb_Defused" (CT "3") (T "7")
|
1399
|
+
L 08/05/2013 - 22:19:13: World triggered "Round_End"
|
1400
|
+
L 08/05/2013 - 22:19:18: "Will_Smith<38><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1401
|
+
L 08/05/2013 - 22:19:24: World triggered "Round_Start"
|
1402
|
+
L 08/05/2013 - 22:19:42: "Polymorph<36><BOT><CT>" killed "Sigourney_Weaver<37><BOT><TERRORIST>" with "knife"
|
1403
|
+
L 08/05/2013 - 22:19:48: "Will_Smith<38><BOT><TERRORIST>" killed "Heather_Locklear<34><BOT><CT>" with "sg552"
|
1404
|
+
L 08/05/2013 - 22:19:55: "Quentin_Tarantino<30><BOT><CT>" killed "Make my Day<28><BOT><TERRORIST>" with "ak47"
|
1405
|
+
L 08/05/2013 - 22:19:58: "Fuzzy Logic<33><BOT><TERRORIST>" killed "Quentin_Tarantino<30><BOT><CT>" with "galil"
|
1406
|
+
L 08/05/2013 - 22:20:09: "Polymorph<36><BOT><CT>" killed "Marylin_Monroe<31><BOT><TERRORIST>" with "m4a1"
|
1407
|
+
L 08/05/2013 - 22:20:10: "Jet_Li<29><BOT><TERRORIST>" killed "Wesley_Snipes<39><BOT><CT>" with "glock18"
|
1408
|
+
L 08/05/2013 - 22:20:21: "Fuzzy Logic<33><BOT><TERRORIST>" killed "Stacy_Keech<32><BOT><CT>" with "galil"
|
1409
|
+
L 08/05/2013 - 22:21:00: "L33t B0t<35><BOT><CT>" killed "Fuzzy Logic<33><BOT><TERRORIST>" with "m4a1"
|
1410
|
+
L 08/05/2013 - 22:21:37: "Will_Smith<38><BOT><TERRORIST>" killed "L33t B0t<35><BOT><CT>" with "sg552"
|
1411
|
+
L 08/05/2013 - 22:22:53: "Will_Smith<38><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
1412
|
+
L 08/05/2013 - 22:23:11: "Will_Smith<38><BOT><TERRORIST>" killed "Polymorph<36><BOT><CT>" with "sg552"
|
1413
|
+
L 08/05/2013 - 22:23:11: Team "TERRORIST" triggered "Terrorists_Win" (CT "3") (T "8")
|
1414
|
+
L 08/05/2013 - 22:23:11: World triggered "Round_End"
|
1415
|
+
L 08/05/2013 - 22:23:16: "Make my Day<28><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1416
|
+
L 08/05/2013 - 22:23:22: World triggered "Round_Start"
|
1417
|
+
L 08/05/2013 - 22:23:49: "Quentin_Tarantino<30><BOT><CT>" killed "Jet_Li<29><BOT><TERRORIST>" with "knife"
|
1418
|
+
L 08/05/2013 - 22:23:50: "Sigourney_Weaver<37><BOT><TERRORIST>" killed "Stacy_Keech<32><BOT><CT>" with "glock18"
|
1419
|
+
L 08/05/2013 - 22:24:04: "Marylin_Monroe<31><BOT><TERRORIST>" killed "Quentin_Tarantino<30><BOT><CT>" with "ak47"
|
1420
|
+
L 08/05/2013 - 22:24:07: "Will_Smith<38><BOT><TERRORIST>" killed "Polymorph<36><BOT><CT>" with "sg552"
|
1421
|
+
L 08/05/2013 - 22:24:09: "Wesley_Snipes<39><BOT><CT>" killed "Will_Smith<38><BOT><TERRORIST>" with "deagle"
|
1422
|
+
L 08/05/2013 - 22:24:12: "Make my Day<28><BOT><TERRORIST>" triggered "Planted_The_Bomb"
|
1423
|
+
L 08/05/2013 - 22:24:20: "Fuzzy Logic<33><BOT><TERRORIST>" killed "Heather_Locklear<34><BOT><CT>" with "ak47"
|
1424
|
+
L 08/05/2013 - 22:24:37: "Make my Day<28><BOT><TERRORIST>" killed "Wesley_Snipes<39><BOT><CT>" with "sg552"
|
1425
|
+
L 08/05/2013 - 22:24:57: Team "TERRORIST" triggered "Target_Bombed" (CT "3") (T "9")
|
1426
|
+
L 08/05/2013 - 22:24:57: World triggered "Round_End"
|
1427
|
+
L 08/05/2013 - 22:25:02: "Jet_Li<29><BOT><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1428
|
+
L 08/05/2013 - 22:25:08: World triggered "Round_Start"
|
1429
|
+
L 08/05/2013 - 22:25:27: "Fuzzy Logic<33><BOT><TERRORIST>" killed "L33t B0t<35><BOT><CT>" with "ak47"
|
1430
|
+
L 08/05/2013 - 22:25:31: "Will_Smith<38><BOT><TERRORIST>" killed "Quentin_Tarantino<30><BOT><CT>" with "ak47"
|
1431
|
+
L 08/05/2013 - 22:25:37: "Sigourney_Weaver<37><BOT><TERRORIST>" killed "Polymorph<36><BOT><CT>" with "sg552"
|
1432
|
+
L 08/05/2013 - 22:25:50: "Sigourney_Weaver<37><BOT><TERRORIST>" killed "Stacy_Keech<32><BOT><CT>" with "sg552"
|
1433
|
+
L 08/14/2013 - 06:42:48: Log file started (file "logs/L0814019.log") (game "cstrike") (version "48/1.1.2.7/Stdio/6027")
|
1434
|
+
L 08/14/2013 - 06:42:48: Loading map "de_dust2"
|
1435
|
+
L 08/14/2013 - 06:42:48: Server cvars start
|
1436
|
+
L 08/14/2013 - 06:42:48: Server cvar "_tutor_bomb_viewable_check_interval" = "0.5"
|
1437
|
+
L 08/14/2013 - 06:42:48: Server cvar "_tutor_debug_level" = "0"
|
1438
|
+
L 08/14/2013 - 06:42:48: Server cvar "_tutor_examine_time" = "0.5"
|
1439
|
+
L 08/14/2013 - 06:42:48: Server cvar "_tutor_hint_interval_time" = "10.0"
|
1440
|
+
L 08/14/2013 - 06:42:48: Server cvar "_tutor_look_angle" = "10"
|
1441
|
+
L 08/14/2013 - 06:42:48: Server cvar "_tutor_look_distance" = "200"
|
1442
|
+
L 08/14/2013 - 06:42:48: Server cvar "_tutor_message_character_display_time_coefficient" = "0.07"
|
1443
|
+
L 08/14/2013 - 06:42:48: Server cvar "_tutor_message_minimum_display_time" = "1"
|
1444
|
+
L 08/14/2013 - 06:42:48: Server cvar "_tutor_message_repeats" = "5"
|
1445
|
+
L 08/14/2013 - 06:42:48: Server cvar "_tutor_view_distance" = "1000"
|
1446
|
+
L 08/14/2013 - 06:42:48: Server cvar "allow_spectators" = "1.0"
|
1447
|
+
L 08/14/2013 - 06:42:48: Server cvar "amx_client_languages" = "1"
|
1448
|
+
L 08/14/2013 - 06:42:48: Server cvar "amx_language" = "en"
|
1449
|
+
L 08/14/2013 - 06:42:48: Server cvar "amx_nextmap" = "de_dust2"
|
1450
|
+
L 08/14/2013 - 06:42:48: Server cvar "amx_timeleft" = "00:00"
|
1451
|
+
L 08/14/2013 - 06:42:48: Server cvar "amxmodx_version" = "1.8.2"
|
1452
|
+
L 08/14/2013 - 06:42:48: Server cvar "coop" = "0"
|
1453
|
+
L 08/14/2013 - 06:42:48: Server cvar "deathmatch" = "1"
|
1454
|
+
L 08/14/2013 - 06:42:48: Server cvar "decalfrequency" = "30"
|
1455
|
+
L 08/14/2013 - 06:42:48: Server cvar "edgefriction" = "2"
|
1456
|
+
L 08/14/2013 - 06:42:48: Server cvar "hostage_debug" = "0"
|
1457
|
+
L 08/14/2013 - 06:42:48: Server cvar "hostage_stop" = "0"
|
1458
|
+
L 08/14/2013 - 06:42:48: Server cvar "humans_join_team" = "any"
|
1459
|
+
L 08/14/2013 - 06:42:48: Server cvar "max_queries_sec" = "3.0"
|
1460
|
+
L 08/14/2013 - 06:42:48: Server cvar "max_queries_sec_global" = "30"
|
1461
|
+
L 08/14/2013 - 06:42:48: Server cvar "max_queries_window" = "60"
|
1462
|
+
L 08/14/2013 - 06:42:48: Server cvar "metamod_version" = "1.21p37"
|
1463
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_allowmonsters" = "0"
|
1464
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_autokick" = "1"
|
1465
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_autokick_timeout" = "-1"
|
1466
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_autoteambalance" = "1"
|
1467
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_buytime" = "1.5"
|
1468
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_c4timer" = "45"
|
1469
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_chattime" = "10"
|
1470
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_consistency" = "1"
|
1471
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_fadetoblack" = "0"
|
1472
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_flashlight" = "0"
|
1473
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_footsteps" = "1"
|
1474
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_forcecamera" = "0"
|
1475
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_forcechasecam" = "0"
|
1476
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_fragsleft" = "0"
|
1477
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_freezetime" = "6"
|
1478
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_friendlyfire" = "1"
|
1479
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_ghostfrequency" = "0.1"
|
1480
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_hostagepenalty" = "13"
|
1481
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_kickpercent" = "0.66"
|
1482
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_limitteams" = "2"
|
1483
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_logdetail" = "0"
|
1484
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_logfile" = "1"
|
1485
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_logmessages" = "1"
|
1486
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_mapvoteratio" = "0.66"
|
1487
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_maxrounds" = "0"
|
1488
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_mirrordamage" = "0"
|
1489
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_playerid" = "0"
|
1490
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_roundtime" = "5"
|
1491
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_startmoney" = "800"
|
1492
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_timeleft" = "0"
|
1493
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_timelimit" = "20"
|
1494
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_tkpunish" = "0"
|
1495
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_windifference" = "1"
|
1496
|
+
L 08/14/2013 - 06:42:48: Server cvar "mp_winlimit" = "0"
|
1497
|
+
L 08/14/2013 - 06:42:48: Server cvar "pausable" = "0"
|
1498
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_aim_damper_coefficient_x" = "0.22"
|
1499
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_aim_damper_coefficient_y" = "0.22"
|
1500
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_aim_deviation_x" = "2.0"
|
1501
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_aim_deviation_y" = "1.0"
|
1502
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_aim_influence_x_on_y" = "0.25"
|
1503
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_aim_influence_y_on_x" = "0.17"
|
1504
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_aim_notarget_slowdown_ratio" = "0.5"
|
1505
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_aim_offset_delay" = "1.2"
|
1506
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_aim_spring_stiffness_x" = "13.0"
|
1507
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_aim_spring_stiffness_y" = "13.0"
|
1508
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_aim_target_anticipation_ratio" = "2.2"
|
1509
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_aim_type" = "4"
|
1510
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_autokill" = "0"
|
1511
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_autokilldelay" = "45"
|
1512
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_bot_join_team" = "ANY"
|
1513
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_bot_quota_match" = "0"
|
1514
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_chat" = "0"
|
1515
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_dangerfactor" = "2000"
|
1516
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_detailnames" = "0"
|
1517
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_ffa" = "0"
|
1518
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_firsthumanrestart" = "0"
|
1519
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_jasonmode" = "0"
|
1520
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_latencybot" = "2"
|
1521
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_mapstartbotdelay" = "10"
|
1522
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_maxbots" = "16"
|
1523
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_maxbotskill" = "100"
|
1524
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_maxcamptime" = "30"
|
1525
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_maxweaponpickup" = "10"
|
1526
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_minbots" = "9"
|
1527
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_minbotskill" = "95"
|
1528
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_numfollowuser" = "5"
|
1529
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_radio" = "1"
|
1530
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_restrequipammo" = "000000000"
|
1531
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_restrweapons" = "00000000000000000000000001"
|
1532
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_shootthruwalls" = "1"
|
1533
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_skin" = "5"
|
1534
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_spray" = "1"
|
1535
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_timer_grenade" = "0.5"
|
1536
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_timer_pickup" = "0.3"
|
1537
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_timer_sound" = "0.5"
|
1538
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_usespeech" = "0"
|
1539
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_version" = "V3B22"
|
1540
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_welcomemsgs" = "0"
|
1541
|
+
L 08/14/2013 - 06:42:48: Server cvar "pb_wptfolder" = "wptdefault"
|
1542
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_accelerate" = "5"
|
1543
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_aim" = "0"
|
1544
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_airaccelerate" = "10"
|
1545
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_allowupload" = "1"
|
1546
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_alltalk" = "0"
|
1547
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_bounce" = "1"
|
1548
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_cheats" = "0"
|
1549
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_clienttrace" = "1"
|
1550
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_contact" = "cstrike-admin@ifusio.com"
|
1551
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_friction" = "4"
|
1552
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_gravity" = "800"
|
1553
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_logblocks" = "0"
|
1554
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_maxrate" = "25000"
|
1555
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_maxspeed" = "900"
|
1556
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_minrate" = "15000"
|
1557
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_password" = ""
|
1558
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_proxies" = "1"
|
1559
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_restart" = "0"
|
1560
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_restartround" = "0"
|
1561
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_stepsize" = "18"
|
1562
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_stopspeed" = "75"
|
1563
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_uploadmax" = "0.5"
|
1564
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_voiceenable" = "1"
|
1565
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_wateraccelerate" = "10"
|
1566
|
+
L 08/14/2013 - 06:42:48: Server cvar "sv_waterfriction" = "1"
|
1567
|
+
L 08/14/2013 - 06:42:48: Server cvars end
|
1568
|
+
L 08/14/2013 - 06:42:53: Podbot mm - Visibility Table file (pvi) exists and is newer than the waypoint file (pwf).
|
1569
|
+
L 08/14/2013 - 06:42:53: Podbot mm - Loading & decompressing Visibility Table
|
1570
|
+
L 08/14/2013 - 06:42:53: Podbot mm - Visibility Table loaded from File...
|
1571
|
+
L 08/14/2013 - 06:43:04: Started map "de_dust2" (CRC "1159425449")
|
1572
|
+
L 08/14/2013 - 06:43:11: World triggered "Round_Start"
|
1573
|
+
L 08/14/2013 - 06:43:13: "Neuromancer<246><STEAM_ID_LAN><>" entered the game
|
1574
|
+
L 08/14/2013 - 06:43:13: "Neuromancer<246><STEAM_ID_LAN><>" joined team "CT"
|
1575
|
+
L 08/14/2013 - 06:43:14: "Juliet_Lewis<247><STEAM_ID_LAN><>" entered the game
|
1576
|
+
L 08/14/2013 - 06:43:14: "Juliet_Lewis<247><STEAM_ID_LAN><>" joined team "TERRORIST"
|
1577
|
+
L 08/14/2013 - 06:43:14: World triggered "Game_Commencing"
|
1578
|
+
L 08/14/2013 - 06:43:14: World triggered "Game_Commencing" (CT "0") (T "0")
|
1579
|
+
L 08/14/2013 - 06:43:14: World triggered "Round_End"
|
1580
|
+
L 08/14/2013 - 06:43:14: "Alloc<248><STEAM_ID_LAN><>" entered the game
|
1581
|
+
L 08/14/2013 - 06:43:14: "Alloc<248><STEAM_ID_LAN><>" joined team "CT"
|
1582
|
+
L 08/14/2013 - 06:43:15: "Jim_Carrey<249><STEAM_ID_LAN><>" entered the game
|
1583
|
+
L 08/14/2013 - 06:43:15: "Jim_Carrey<249><STEAM_ID_LAN><>" joined team "TERRORIST"
|
1584
|
+
L 08/14/2013 - 06:43:15: "V0id<250><STEAM_ID_LAN><>" entered the game
|
1585
|
+
L 08/14/2013 - 06:43:15: "V0id<250><STEAM_ID_LAN><>" joined team "CT"
|
1586
|
+
L 08/14/2013 - 06:43:16: "Funky Byte<251><STEAM_ID_LAN><>" entered the game
|
1587
|
+
L 08/14/2013 - 06:43:16: "Funky Byte<251><STEAM_ID_LAN><>" joined team "TERRORIST"
|
1588
|
+
L 08/14/2013 - 06:43:16: "killaruna<252><STEAM_ID_LAN><>" entered the game
|
1589
|
+
L 08/14/2013 - 06:43:16: "killaruna<252><STEAM_ID_LAN><>" joined team "TERRORIST"
|
1590
|
+
L 08/14/2013 - 06:43:17: "Make my Day<253><STEAM_ID_LAN><>" entered the game
|
1591
|
+
L 08/14/2013 - 06:43:17: "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1592
|
+
L 08/14/2013 - 06:43:17: "Make my Day<253><STEAM_ID_LAN><>" joined team "CT"
|
1593
|
+
L 08/14/2013 - 06:43:17: "Zap!<254><STEAM_ID_LAN><>" entered the game
|
1594
|
+
L 08/14/2013 - 06:43:17: "Zap!<254><STEAM_ID_LAN><>" joined team "TERRORIST"
|
1595
|
+
L 08/14/2013 - 06:43:23: World triggered "Round_Start"
|
1596
|
+
L 08/14/2013 - 06:43:38: "killaruna<252><STEAM_ID_LAN><TERRORIST>" killed "Neuromancer<246><STEAM_ID_LAN><CT>" with "deagle"
|
1597
|
+
L 08/14/2013 - 06:43:39: "Alloc<248><STEAM_ID_LAN><CT>" killed "killaruna<252><STEAM_ID_LAN><TERRORIST>" with "fiveseven"
|
1598
|
+
L 08/14/2013 - 06:43:40: "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" killed "Alloc<248><STEAM_ID_LAN><CT>" with "deagle"
|
1599
|
+
L 08/14/2013 - 06:43:43: "V0id<250><STEAM_ID_LAN><CT>" killed "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" with "usp"
|
1600
|
+
L 08/14/2013 - 06:43:43: "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" triggered "Dropped_The_Bomb"
|
1601
|
+
L 08/14/2013 - 06:43:54: "V0id<250><STEAM_ID_LAN><CT>" killed "Zap!<254><STEAM_ID_LAN><TERRORIST>" with "usp"
|
1602
|
+
L 08/14/2013 - 06:44:03: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" killed "Make my Day<253><STEAM_ID_LAN><CT>" with "deagle"
|
1603
|
+
L 08/14/2013 - 06:44:33: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" killed "V0id<250><STEAM_ID_LAN><CT>" with "usp"
|
1604
|
+
L 08/14/2013 - 06:44:33: Team "TERRORIST" triggered "Terrorists_Win" (CT "0") (T "1")
|
1605
|
+
L 08/14/2013 - 06:44:33: World triggered "Round_End"
|
1606
|
+
L 08/14/2013 - 06:44:38: "Jim_Carrey<249><STEAM_ID_LAN><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1607
|
+
L 08/14/2013 - 06:44:44: World triggered "Round_Start"
|
1608
|
+
L 08/14/2013 - 06:44:59: "V0id<250><STEAM_ID_LAN><CT>" killed "Jim_Carrey<249><STEAM_ID_LAN><TERRORIST>" with "tmp"
|
1609
|
+
L 08/14/2013 - 06:44:59: "Jim_Carrey<249><STEAM_ID_LAN><TERRORIST>" triggered "Dropped_The_Bomb"
|
1610
|
+
L 08/14/2013 - 06:45:05: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" killed "Make my Day<253><STEAM_ID_LAN><CT>" with "ak47"
|
1611
|
+
L 08/14/2013 - 06:45:06: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" triggered "Got_The_Bomb"
|
1612
|
+
L 08/14/2013 - 06:45:07: "killaruna<252><STEAM_ID_LAN><TERRORIST>" killed "V0id<250><STEAM_ID_LAN><CT>" with "ak47"
|
1613
|
+
L 08/14/2013 - 06:45:08: "Alloc<248><STEAM_ID_LAN><CT>" killed "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" with "ump45"
|
1614
|
+
L 08/14/2013 - 06:45:08: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" triggered "Dropped_The_Bomb"
|
1615
|
+
L 08/14/2013 - 06:45:09: "Zap!<254><STEAM_ID_LAN><TERRORIST>" triggered "Got_The_Bomb"
|
1616
|
+
L 08/14/2013 - 06:45:15: "Alloc<248><STEAM_ID_LAN><CT>" killed "Zap!<254><STEAM_ID_LAN><TERRORIST>" with "ump45"
|
1617
|
+
L 08/14/2013 - 06:45:15: "Zap!<254><STEAM_ID_LAN><TERRORIST>" triggered "Dropped_The_Bomb"
|
1618
|
+
L 08/14/2013 - 06:45:19: "killaruna<252><STEAM_ID_LAN><TERRORIST>" killed "Alloc<248><STEAM_ID_LAN><CT>" with "ak47"
|
1619
|
+
L 08/14/2013 - 06:45:21: "killaruna<252><STEAM_ID_LAN><TERRORIST>" triggered "Got_The_Bomb"
|
1620
|
+
L 08/14/2013 - 06:45:42: "killaruna<252><STEAM_ID_LAN><TERRORIST>" killed "Neuromancer<246><STEAM_ID_LAN><CT>" with "ak47"
|
1621
|
+
L 08/14/2013 - 06:45:42: Team "TERRORIST" triggered "Terrorists_Win" (CT "0") (T "2")
|
1622
|
+
L 08/14/2013 - 06:45:42: World triggered "Round_End"
|
1623
|
+
L 08/14/2013 - 06:45:47: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1624
|
+
L 08/14/2013 - 06:45:53: World triggered "Round_Start"
|
1625
|
+
L 08/14/2013 - 06:46:09: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" killed "Alloc<248><STEAM_ID_LAN><CT>" with "ak47"
|
1626
|
+
L 08/14/2013 - 06:46:14: "killaruna<252><STEAM_ID_LAN><TERRORIST>" killed "Make my Day<253><STEAM_ID_LAN><CT>" with "ak47"
|
1627
|
+
L 08/14/2013 - 06:46:17: "Neuromancer<246><STEAM_ID_LAN><CT>" killed "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" with "ump45"
|
1628
|
+
L 08/14/2013 - 06:46:29: "V0id<250><STEAM_ID_LAN><CT>" killed "killaruna<252><STEAM_ID_LAN><TERRORIST>" with "tmp"
|
1629
|
+
L 08/14/2013 - 06:46:39: "V0id<250><STEAM_ID_LAN><CT>" killed "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" with "tmp"
|
1630
|
+
L 08/14/2013 - 06:46:39: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" triggered "Dropped_The_Bomb"
|
1631
|
+
L 08/14/2013 - 06:46:55: "Zap!<254><STEAM_ID_LAN><TERRORIST>" triggered "Got_The_Bomb"
|
1632
|
+
L 08/14/2013 - 06:46:58: "Zap!<254><STEAM_ID_LAN><TERRORIST>" killed "Neuromancer<246><STEAM_ID_LAN><CT>" with "ak47"
|
1633
|
+
L 08/14/2013 - 06:47:10: "Zap!<254><STEAM_ID_LAN><TERRORIST>" killed "V0id<250><STEAM_ID_LAN><CT>" with "ak47"
|
1634
|
+
L 08/14/2013 - 06:47:10: Team "TERRORIST" triggered "Terrorists_Win" (CT "0") (T "3")
|
1635
|
+
L 08/14/2013 - 06:47:10: World triggered "Round_End"
|
1636
|
+
L 08/14/2013 - 06:47:15: "killaruna<252><STEAM_ID_LAN><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1637
|
+
L 08/14/2013 - 06:47:21: World triggered "Round_Start"
|
1638
|
+
L 08/14/2013 - 06:47:44: "V0id<250><STEAM_ID_LAN><CT>" killed "killaruna<252><STEAM_ID_LAN><TERRORIST>" with "famas"
|
1639
|
+
L 08/14/2013 - 06:47:44: "killaruna<252><STEAM_ID_LAN><TERRORIST>" triggered "Dropped_The_Bomb"
|
1640
|
+
L 08/14/2013 - 06:47:51: "Neuromancer<246><STEAM_ID_LAN><CT>" killed "Zap!<254><STEAM_ID_LAN><TERRORIST>" with "mp5navy"
|
1641
|
+
L 08/14/2013 - 06:47:55: "Alloc<248><STEAM_ID_LAN><CT>" killed "Jim_Carrey<249><STEAM_ID_LAN><TERRORIST>" with "p90"
|
1642
|
+
L 08/14/2013 - 06:48:00: "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" killed "Alloc<248><STEAM_ID_LAN><CT>" with "ak47"
|
1643
|
+
L 08/14/2013 - 06:48:12: "Make my Day<253><STEAM_ID_LAN><CT>" killed "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" with "mp5navy"
|
1644
|
+
L 08/14/2013 - 06:48:20: "V0id<250><STEAM_ID_LAN><CT>" killed "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" with "famas"
|
1645
|
+
L 08/14/2013 - 06:48:20: Team "CT" triggered "CTs_Win" (CT "1") (T "3")
|
1646
|
+
L 08/14/2013 - 06:48:20: World triggered "Round_End"
|
1647
|
+
L 08/14/2013 - 06:48:25: "Zap!<254><STEAM_ID_LAN><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1648
|
+
L 08/14/2013 - 06:48:31: World triggered "Round_Start"
|
1649
|
+
L 08/14/2013 - 06:48:45: "Alloc<248><STEAM_ID_LAN><CT>" killed "Jim_Carrey<249><STEAM_ID_LAN><TERRORIST>" with "famas"
|
1650
|
+
L 08/14/2013 - 06:48:51: "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" killed "Neuromancer<246><STEAM_ID_LAN><CT>" with "ak47"
|
1651
|
+
L 08/14/2013 - 06:49:11: "Zap!<254><STEAM_ID_LAN><TERRORIST>" triggered "Planted_The_Bomb"
|
1652
|
+
L 08/14/2013 - 06:49:17: "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" killed "V0id<250><STEAM_ID_LAN><CT>" with "ak47"
|
1653
|
+
L 08/14/2013 - 06:49:24: "Zap!<254><STEAM_ID_LAN><TERRORIST>" killed "Alloc<248><STEAM_ID_LAN><CT>" with "ak47"
|
1654
|
+
L 08/14/2013 - 06:49:39: "Make my Day<253><STEAM_ID_LAN><CT>" killed "killaruna<252><STEAM_ID_LAN><TERRORIST>" with "ak47"
|
1655
|
+
L 08/14/2013 - 06:49:40: "Make my Day<253><STEAM_ID_LAN><CT>" killed "Zap!<254><STEAM_ID_LAN><TERRORIST>" with "ak47"
|
1656
|
+
L 08/14/2013 - 06:49:47: "Make my Day<253><STEAM_ID_LAN><CT>" triggered "Begin_Bomb_Defuse_With_Kit"
|
1657
|
+
L 08/14/2013 - 06:49:53: "Make my Day<253><STEAM_ID_LAN><CT>" triggered "Defused_The_Bomb"
|
1658
|
+
L 08/14/2013 - 06:49:53: Team "CT" triggered "Bomb_Defused" (CT "2") (T "3")
|
1659
|
+
L 08/14/2013 - 06:49:53: World triggered "Round_End"
|
1660
|
+
L 08/14/2013 - 06:49:58: "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1661
|
+
L 08/14/2013 - 06:50:04: World triggered "Round_Start"
|
1662
|
+
L 08/14/2013 - 06:50:33: "V0id<250><STEAM_ID_LAN><CT>" killed "Jim_Carrey<249><STEAM_ID_LAN><TERRORIST>" with "famas"
|
1663
|
+
L 08/14/2013 - 06:50:41: "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" killed "Neuromancer<246><STEAM_ID_LAN><CT>" with "ak47"
|
1664
|
+
L 08/14/2013 - 06:50:41: "V0id<250><STEAM_ID_LAN><CT>" killed "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" with "famas"
|
1665
|
+
L 08/14/2013 - 06:50:41: "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" triggered "Dropped_The_Bomb"
|
1666
|
+
L 08/14/2013 - 06:51:02: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" killed "V0id<250><STEAM_ID_LAN><CT>" with "aug"
|
1667
|
+
L 08/14/2013 - 06:51:05: "Alloc<248><STEAM_ID_LAN><CT>" killed "Zap!<254><STEAM_ID_LAN><TERRORIST>" with "awp"
|
1668
|
+
L 08/14/2013 - 06:51:13: "Alloc<248><STEAM_ID_LAN><CT>" killed "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" with "awp"
|
1669
|
+
L 08/14/2013 - 06:51:16: "Alloc<248><STEAM_ID_LAN><CT>" killed "killaruna<252><STEAM_ID_LAN><TERRORIST>" with "awp"
|
1670
|
+
L 08/14/2013 - 06:51:16: Team "CT" triggered "CTs_Win" (CT "3") (T "3")
|
1671
|
+
L 08/14/2013 - 06:51:16: World triggered "Round_End"
|
1672
|
+
L 08/14/2013 - 06:51:21: "Jim_Carrey<249><STEAM_ID_LAN><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1673
|
+
L 08/14/2013 - 06:51:27: World triggered "Round_Start"
|
1674
|
+
L 08/14/2013 - 06:51:45: "Make my Day<253><STEAM_ID_LAN><CT>" killed "Zap!<254><STEAM_ID_LAN><TERRORIST>" with "m4a1"
|
1675
|
+
L 08/14/2013 - 06:51:46: "Make my Day<253><STEAM_ID_LAN><CT>" killed "killaruna<252><STEAM_ID_LAN><TERRORIST>" with "m4a1"
|
1676
|
+
L 08/14/2013 - 06:51:52: "Jim_Carrey<249><STEAM_ID_LAN><TERRORIST>" killed "Alloc<248><STEAM_ID_LAN><CT>" with "mp5navy"
|
1677
|
+
L 08/14/2013 - 06:51:54: "Neuromancer<246><STEAM_ID_LAN><CT>" killed "Jim_Carrey<249><STEAM_ID_LAN><TERRORIST>" with "mp5navy"
|
1678
|
+
L 08/14/2013 - 06:51:54: "Jim_Carrey<249><STEAM_ID_LAN><TERRORIST>" triggered "Dropped_The_Bomb"
|
1679
|
+
L 08/14/2013 - 06:52:17: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" triggered "Got_The_Bomb"
|
1680
|
+
L 08/14/2013 - 06:52:17: "Neuromancer<246><STEAM_ID_LAN><CT>" killed "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" with "usp"
|
1681
|
+
L 08/14/2013 - 06:52:17: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" triggered "Dropped_The_Bomb"
|
1682
|
+
L 08/14/2013 - 06:52:24: "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" triggered "Got_The_Bomb"
|
1683
|
+
L 08/14/2013 - 06:52:24: "Neuromancer<246><STEAM_ID_LAN><CT>" killed "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" with "usp"
|
1684
|
+
L 08/14/2013 - 06:52:24: Team "CT" triggered "CTs_Win" (CT "4") (T "3")
|
1685
|
+
L 08/14/2013 - 06:52:24: World triggered "Round_End"
|
1686
|
+
L 08/14/2013 - 06:52:29: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1687
|
+
L 08/14/2013 - 06:52:35: World triggered "Round_Start"
|
1688
|
+
L 08/14/2013 - 06:52:52: "V0id<250><STEAM_ID_LAN><CT>" killed "Jim_Carrey<249><STEAM_ID_LAN><TERRORIST>" with "famas"
|
1689
|
+
L 08/14/2013 - 06:52:52: "Zap!<254><STEAM_ID_LAN><TERRORIST>" killed "V0id<250><STEAM_ID_LAN><CT>" with "ak47"
|
1690
|
+
L 08/14/2013 - 06:52:59: "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" killed "Neuromancer<246><STEAM_ID_LAN><CT>" with "deagle"
|
1691
|
+
L 08/14/2013 - 06:53:01: "Make my Day<253><STEAM_ID_LAN><CT>" killed "Zap!<254><STEAM_ID_LAN><TERRORIST>" with "m4a1"
|
1692
|
+
L 08/14/2013 - 06:53:04: "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" killed "Alloc<248><STEAM_ID_LAN><CT>" with "deagle"
|
1693
|
+
L 08/14/2013 - 06:53:41: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" triggered "Planted_The_Bomb"
|
1694
|
+
L 08/14/2013 - 06:54:01: "Make my Day<253><STEAM_ID_LAN><CT>" killed "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" with "m4a1"
|
1695
|
+
L 08/14/2013 - 06:54:07: "killaruna<252><STEAM_ID_LAN><TERRORIST>" killed "Make my Day<253><STEAM_ID_LAN><CT>" with "ak47"
|
1696
|
+
L 08/14/2013 - 06:54:07: Team "TERRORIST" triggered "Terrorists_Win" (CT "4") (T "4")
|
1697
|
+
L 08/14/2013 - 06:54:07: World triggered "Round_End"
|
1698
|
+
L 08/14/2013 - 06:54:12: "killaruna<252><STEAM_ID_LAN><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1699
|
+
L 08/14/2013 - 06:54:18: World triggered "Round_Start"
|
1700
|
+
L 08/14/2013 - 06:54:32: "Neuromancer<246><STEAM_ID_LAN><CT>" killed "killaruna<252><STEAM_ID_LAN><TERRORIST>" with "fiveseven"
|
1701
|
+
L 08/14/2013 - 06:54:32: "killaruna<252><STEAM_ID_LAN><TERRORIST>" triggered "Dropped_The_Bomb"
|
1702
|
+
L 08/14/2013 - 06:54:40: "Jim_Carrey<249><STEAM_ID_LAN><TERRORIST>" killed "Make my Day<253><STEAM_ID_LAN><CT>" with "glock18"
|
1703
|
+
L 08/14/2013 - 06:54:40: "Neuromancer<246><STEAM_ID_LAN><CT>" killed "Jim_Carrey<249><STEAM_ID_LAN><TERRORIST>" with "fiveseven"
|
1704
|
+
L 08/14/2013 - 06:54:50: "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" triggered "Got_The_Bomb"
|
1705
|
+
L 08/14/2013 - 06:54:50: "Neuromancer<246><STEAM_ID_LAN><CT>" killed "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" with "fiveseven"
|
1706
|
+
L 08/14/2013 - 06:54:50: "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" triggered "Dropped_The_Bomb"
|
1707
|
+
L 08/14/2013 - 06:54:53: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" killed "Neuromancer<246><STEAM_ID_LAN><CT>" with "galil"
|
1708
|
+
L 08/14/2013 - 06:54:54: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" triggered "Got_The_Bomb"
|
1709
|
+
L 08/14/2013 - 06:54:56: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" killed "Alloc<248><STEAM_ID_LAN><CT>" with "galil"
|
1710
|
+
L 08/14/2013 - 06:55:22: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" triggered "Planted_The_Bomb"
|
1711
|
+
L 08/14/2013 - 06:55:38: "V0id<250><STEAM_ID_LAN><CT>" killed "Zap!<254><STEAM_ID_LAN><TERRORIST>" with "aug"
|
1712
|
+
L 08/14/2013 - 06:56:07: Team "TERRORIST" triggered "Target_Bombed" (CT "4") (T "5")
|
1713
|
+
L 08/14/2013 - 06:56:07: World triggered "Round_End"
|
1714
|
+
L 08/14/2013 - 06:56:08: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" killed "V0id<250><STEAM_ID_LAN><CT>" with "galil"
|
1715
|
+
L 08/14/2013 - 06:56:12: "Zap!<254><STEAM_ID_LAN><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1716
|
+
L 08/14/2013 - 06:56:18: World triggered "Round_Start"
|
1717
|
+
L 08/14/2013 - 06:56:31: "Jim_Carrey<249><STEAM_ID_LAN><TERRORIST>" killed "Alloc<248><STEAM_ID_LAN><CT>" with "scout"
|
1718
|
+
L 08/14/2013 - 06:56:39: "V0id<250><STEAM_ID_LAN><CT>" killed "killaruna<252><STEAM_ID_LAN><TERRORIST>" with "mp5navy"
|
1719
|
+
L 08/14/2013 - 06:57:05: "Zap!<254><STEAM_ID_LAN><TERRORIST>" triggered "Planted_The_Bomb"
|
1720
|
+
L 08/14/2013 - 06:57:06: "Make my Day<253><STEAM_ID_LAN><CT>" killed "Jim_Carrey<249><STEAM_ID_LAN><TERRORIST>" with "awp"
|
1721
|
+
L 08/14/2013 - 06:57:14: "Zap!<254><STEAM_ID_LAN><TERRORIST>" killed "Neuromancer<246><STEAM_ID_LAN><CT>" with "xm1014"
|
1722
|
+
L 08/14/2013 - 06:57:50: Team "TERRORIST" triggered "Target_Bombed" (CT "4") (T "6")
|
1723
|
+
L 08/14/2013 - 06:57:50: World triggered "Round_End"
|
1724
|
+
L 08/14/2013 - 06:57:55: "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1725
|
+
L 08/14/2013 - 06:58:01: World triggered "Round_Start"
|
1726
|
+
L 08/14/2013 - 06:58:17: "killaruna<252><STEAM_ID_LAN><TERRORIST>" killed "V0id<250><STEAM_ID_LAN><CT>" with "galil"
|
1727
|
+
L 08/14/2013 - 06:58:21: "Neuromancer<246><STEAM_ID_LAN><CT>" killed "Jim_Carrey<249><STEAM_ID_LAN><TERRORIST>" with "mp5navy"
|
1728
|
+
L 08/14/2013 - 06:58:41: "killaruna<252><STEAM_ID_LAN><TERRORIST>" killed "Neuromancer<246><STEAM_ID_LAN><CT>" with "sg552"
|
1729
|
+
L 08/14/2013 - 06:58:51: "Make my Day<253><STEAM_ID_LAN><CT>" killed "Zap!<254><STEAM_ID_LAN><TERRORIST>" with "deagle"
|
1730
|
+
L 08/14/2013 - 06:58:53: "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" killed "Make my Day<253><STEAM_ID_LAN><CT>" with "galil"
|
1731
|
+
L 08/14/2013 - 06:59:29: "Alloc<248><STEAM_ID_LAN><CT>" killed "killaruna<252><STEAM_ID_LAN><TERRORIST>" with "galil"
|
1732
|
+
L 08/14/2013 - 06:59:48: "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" killed "Alloc<248><STEAM_ID_LAN><CT>" with "galil"
|
1733
|
+
L 08/14/2013 - 06:59:48: Team "TERRORIST" triggered "Terrorists_Win" (CT "4") (T "7")
|
1734
|
+
L 08/14/2013 - 06:59:48: World triggered "Round_End"
|
1735
|
+
L 08/14/2013 - 06:59:53: "Jim_Carrey<249><STEAM_ID_LAN><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1736
|
+
L 08/14/2013 - 06:59:59: World triggered "Round_Start"
|
1737
|
+
L 08/14/2013 - 07:00:17: "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" killed "V0id<250><STEAM_ID_LAN><CT>" with "galil"
|
1738
|
+
L 08/14/2013 - 07:00:50: "Make my Day<253><STEAM_ID_LAN><CT>" killed "Zap!<254><STEAM_ID_LAN><TERRORIST>" with "aug"
|
1739
|
+
L 08/14/2013 - 07:00:51: "Make my Day<253><STEAM_ID_LAN><CT>" killed "Juliet_Lewis<247><STEAM_ID_LAN><TERRORIST>" with "aug"
|
1740
|
+
L 08/14/2013 - 07:00:52: "Alloc<248><STEAM_ID_LAN><CT>" killed "Jim_Carrey<249><STEAM_ID_LAN><TERRORIST>" with "scout"
|
1741
|
+
L 08/14/2013 - 07:00:52: "Jim_Carrey<249><STEAM_ID_LAN><TERRORIST>" triggered "Dropped_The_Bomb"
|
1742
|
+
L 08/14/2013 - 07:01:02: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" killed "Make my Day<253><STEAM_ID_LAN><CT>" with "sg552"
|
1743
|
+
L 08/14/2013 - 07:01:17: "killaruna<252><STEAM_ID_LAN><TERRORIST>" killed "Neuromancer<246><STEAM_ID_LAN><CT>" with "ak47"
|
1744
|
+
L 08/14/2013 - 07:01:22: "Alloc<248><STEAM_ID_LAN><CT>" killed "killaruna<252><STEAM_ID_LAN><TERRORIST>" with "scout"
|
1745
|
+
L 08/14/2013 - 07:01:26: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" killed "Alloc<248><STEAM_ID_LAN><CT>" with "sg552"
|
1746
|
+
L 08/14/2013 - 07:01:26: Team "TERRORIST" triggered "Terrorists_Win" (CT "4") (T "8")
|
1747
|
+
L 08/14/2013 - 07:01:26: World triggered "Round_End"
|
1748
|
+
L 08/14/2013 - 07:01:29: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" triggered "Got_The_Bomb"
|
1749
|
+
L 08/14/2013 - 07:01:31: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1750
|
+
L 08/14/2013 - 07:01:37: World triggered "Round_Start"
|
1751
|
+
L 08/14/2013 - 07:01:53: "Zap!<254><STEAM_ID_LAN><TERRORIST>" killed "Neuromancer<246><STEAM_ID_LAN><CT>" with "galil"
|
1752
|
+
L 08/14/2013 - 07:01:56: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" killed "V0id<250><STEAM_ID_LAN><CT>" with "sg552"
|
1753
|
+
L 08/14/2013 - 07:01:59: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" killed "Alloc<248><STEAM_ID_LAN><CT>" with "sg552"
|
1754
|
+
L 08/14/2013 - 07:02:07: "killaruna<252><STEAM_ID_LAN><TERRORIST>" killed "Make my Day<253><STEAM_ID_LAN><CT>" with "ak47"
|
1755
|
+
L 08/14/2013 - 07:02:07: Team "TERRORIST" triggered "Terrorists_Win" (CT "4") (T "9")
|
1756
|
+
L 08/14/2013 - 07:02:07: World triggered "Round_End"
|
1757
|
+
L 08/14/2013 - 07:02:12: "killaruna<252><STEAM_ID_LAN><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1758
|
+
L 08/14/2013 - 07:02:18: World triggered "Round_Start"
|
1759
|
+
L 08/14/2013 - 07:02:33: "Jim_Carrey<249><STEAM_ID_LAN><TERRORIST>" killed "V0id<250><STEAM_ID_LAN><CT>" with "scout"
|
1760
|
+
L 08/14/2013 - 07:02:40: "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" killed "Make my Day<253><STEAM_ID_LAN><CT>" with "sg552"
|
1761
|
+
L 08/14/2013 - 07:02:52: "Neuromancer<246><STEAM_ID_LAN><CT>" killed "Zap!<254><STEAM_ID_LAN><TERRORIST>" with "famas"
|
1762
|
+
L 08/14/2013 - 07:02:56: "Neuromancer<246><STEAM_ID_LAN><CT>" killed "Funky Byte<251><STEAM_ID_LAN><TERRORIST>" with "famas"
|
1763
|
+
L 08/14/2013 - 07:03:01: "killaruna<252><STEAM_ID_LAN><TERRORIST>" triggered "Planted_The_Bomb"
|
1764
|
+
L 08/14/2013 - 07:03:17: Team "CT" scored "4" with "4" players
|
1765
|
+
L 08/14/2013 - 07:03:17: Team "TERRORIST" scored "9" with "5" players
|
1766
|
+
L 08/14/2013 - 07:03:17: Podbot mm - Experience Data saved...
|
1767
|
+
L 08/14/2013 - 07:03:17: Podbot mm - Visibility Table not saved - Table doesn't need to be saved now.
|
1768
|
+
L 08/14/2013 - 07:03:17: Server cvar "mp_chattime" = "12"
|
1769
|
+
L 08/14/2013 - 07:03:27: Server cvar "mp_chattime" = "10"
|
1770
|
+
L 08/14/2013 - 07:03:27: Podbot mm - Experience Data saved...
|
1771
|
+
L 08/14/2013 - 07:03:27: Podbot mm - Visibility Table not saved - Table doesn't need to be saved now.
|
1772
|
+
L 08/14/2013 - 07:03:27: [META] ini: Begin re-reading plugins list: /vagrant/hlds/cstrike/addons/metamod/plugins.ini
|
1773
|
+
L 08/14/2013 - 07:03:27: [META] ini: Read plugin config for: AMX Mod X
|
1774
|
+
L 08/14/2013 - 07:03:27: [META] ini: Read plugin config for: POD-Bot mm
|
1775
|
+
L 08/14/2013 - 07:03:27: [META] ini: Finished reading plugins list: /vagrant/hlds/cstrike/addons/metamod/plugins.ini; Found 2 plugins
|
1776
|
+
L 08/14/2013 - 07:03:27: [META] dll: Updating plugins...
|
1777
|
+
L 08/14/2013 - 07:03:27: [META] dll: Finished updating 5 plugins; kept 2, loaded 0, unloaded 0, reloaded 0, delayed 0
|
1778
|
+
L 08/14/2013 - 07:03:27: Log file closed
|
1779
|
+
L 08/14/2013 - 08:26:01: Log file started (file "logs/L0814024.log") (game "cstrike") (version "48/1.1.2.7/Stdio/6027")
|
1780
|
+
L 08/14/2013 - 08:26:01: Loading map "de_dust2"
|
1781
|
+
L 08/14/2013 - 08:26:01: Server cvars start
|
1782
|
+
L 08/14/2013 - 08:26:01: Server cvar "_tutor_bomb_viewable_check_interval" = "0.5"
|
1783
|
+
L 08/14/2013 - 08:26:01: Server cvar "_tutor_debug_level" = "0"
|
1784
|
+
L 08/14/2013 - 08:26:01: Server cvar "_tutor_examine_time" = "0.5"
|
1785
|
+
L 08/14/2013 - 08:26:01: Server cvar "_tutor_hint_interval_time" = "10.0"
|
1786
|
+
L 08/14/2013 - 08:26:01: Server cvar "_tutor_look_angle" = "10"
|
1787
|
+
L 08/14/2013 - 08:26:01: Server cvar "_tutor_look_distance" = "200"
|
1788
|
+
L 08/14/2013 - 08:26:01: Server cvar "_tutor_message_character_display_time_coefficient" = "0.07"
|
1789
|
+
L 08/14/2013 - 08:26:01: Server cvar "_tutor_message_minimum_display_time" = "1"
|
1790
|
+
L 08/14/2013 - 08:26:01: Server cvar "_tutor_message_repeats" = "5"
|
1791
|
+
L 08/14/2013 - 08:26:01: Server cvar "_tutor_view_distance" = "1000"
|
1792
|
+
L 08/14/2013 - 08:26:01: Server cvar "allow_spectators" = "1.0"
|
1793
|
+
L 08/14/2013 - 08:26:01: Server cvar "amx_client_languages" = "1"
|
1794
|
+
L 08/14/2013 - 08:26:01: Server cvar "amx_language" = "en"
|
1795
|
+
L 08/14/2013 - 08:26:01: Server cvar "amx_nextmap" = "de_dust2"
|
1796
|
+
L 08/14/2013 - 08:26:01: Server cvar "amx_timeleft" = "00:00"
|
1797
|
+
L 08/14/2013 - 08:26:01: Server cvar "amxmodx_version" = "1.8.2"
|
1798
|
+
L 08/14/2013 - 08:26:01: Server cvar "coop" = "0"
|
1799
|
+
L 08/14/2013 - 08:26:01: Server cvar "deathmatch" = "1"
|
1800
|
+
L 08/14/2013 - 08:26:01: Server cvar "decalfrequency" = "30"
|
1801
|
+
L 08/14/2013 - 08:26:01: Server cvar "edgefriction" = "2"
|
1802
|
+
L 08/14/2013 - 08:26:01: Server cvar "hostage_debug" = "0"
|
1803
|
+
L 08/14/2013 - 08:26:01: Server cvar "hostage_stop" = "0"
|
1804
|
+
L 08/14/2013 - 08:26:01: Server cvar "humans_join_team" = "any"
|
1805
|
+
L 08/14/2013 - 08:26:01: Server cvar "max_queries_sec" = "3.0"
|
1806
|
+
L 08/14/2013 - 08:26:01: Server cvar "max_queries_sec_global" = "30"
|
1807
|
+
L 08/14/2013 - 08:26:01: Server cvar "max_queries_window" = "60"
|
1808
|
+
L 08/14/2013 - 08:26:01: Server cvar "metamod_version" = "1.21p37"
|
1809
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_allowmonsters" = "0"
|
1810
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_autokick" = "1"
|
1811
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_autokick_timeout" = "-1"
|
1812
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_autoteambalance" = "1"
|
1813
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_buytime" = "1.5"
|
1814
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_c4timer" = "45"
|
1815
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_chattime" = "10"
|
1816
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_consistency" = "1"
|
1817
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_fadetoblack" = "0"
|
1818
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_flashlight" = "0"
|
1819
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_footsteps" = "1"
|
1820
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_forcecamera" = "0"
|
1821
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_forcechasecam" = "0"
|
1822
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_fragsleft" = "0"
|
1823
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_freezetime" = "6"
|
1824
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_friendlyfire" = "1"
|
1825
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_ghostfrequency" = "0.1"
|
1826
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_hostagepenalty" = "13"
|
1827
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_kickpercent" = "0.66"
|
1828
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_limitteams" = "2"
|
1829
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_logdetail" = "0"
|
1830
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_logfile" = "1"
|
1831
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_logmessages" = "1"
|
1832
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_mapvoteratio" = "0.66"
|
1833
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_maxrounds" = "0"
|
1834
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_mirrordamage" = "0"
|
1835
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_playerid" = "0"
|
1836
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_roundtime" = "5"
|
1837
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_startmoney" = "800"
|
1838
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_timeleft" = "0"
|
1839
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_timelimit" = "20"
|
1840
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_tkpunish" = "0"
|
1841
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_windifference" = "1"
|
1842
|
+
L 08/14/2013 - 08:26:01: Server cvar "mp_winlimit" = "0"
|
1843
|
+
L 08/14/2013 - 08:26:01: Server cvar "pausable" = "0"
|
1844
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_aim_damper_coefficient_x" = "0.22"
|
1845
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_aim_damper_coefficient_y" = "0.22"
|
1846
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_aim_deviation_x" = "2.0"
|
1847
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_aim_deviation_y" = "1.0"
|
1848
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_aim_influence_x_on_y" = "0.25"
|
1849
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_aim_influence_y_on_x" = "0.17"
|
1850
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_aim_notarget_slowdown_ratio" = "0.5"
|
1851
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_aim_offset_delay" = "1.2"
|
1852
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_aim_spring_stiffness_x" = "13.0"
|
1853
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_aim_spring_stiffness_y" = "13.0"
|
1854
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_aim_target_anticipation_ratio" = "2.2"
|
1855
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_aim_type" = "4"
|
1856
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_autokill" = "0"
|
1857
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_autokilldelay" = "45"
|
1858
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_bot_join_team" = "ANY"
|
1859
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_bot_quota_match" = "0"
|
1860
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_chat" = "0"
|
1861
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_dangerfactor" = "2000"
|
1862
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_detailnames" = "0"
|
1863
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_ffa" = "0"
|
1864
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_firsthumanrestart" = "0"
|
1865
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_jasonmode" = "0"
|
1866
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_latencybot" = "2"
|
1867
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_mapstartbotdelay" = "10"
|
1868
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_maxbots" = "16"
|
1869
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_maxbotskill" = "100"
|
1870
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_maxcamptime" = "30"
|
1871
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_maxweaponpickup" = "10"
|
1872
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_minbots" = "9"
|
1873
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_minbotskill" = "95"
|
1874
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_numfollowuser" = "5"
|
1875
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_radio" = "1"
|
1876
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_restrequipammo" = "000000000"
|
1877
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_restrweapons" = "00000000000000000000000001"
|
1878
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_shootthruwalls" = "1"
|
1879
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_skin" = "5"
|
1880
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_spray" = "1"
|
1881
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_timer_grenade" = "0.5"
|
1882
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_timer_pickup" = "0.3"
|
1883
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_timer_sound" = "0.5"
|
1884
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_usespeech" = "0"
|
1885
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_version" = "V3B22"
|
1886
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_welcomemsgs" = "0"
|
1887
|
+
L 08/14/2013 - 08:26:01: Server cvar "pb_wptfolder" = "wptdefault"
|
1888
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_accelerate" = "5"
|
1889
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_aim" = "0"
|
1890
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_airaccelerate" = "10"
|
1891
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_allowupload" = "1"
|
1892
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_alltalk" = "0"
|
1893
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_bounce" = "1"
|
1894
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_cheats" = "0"
|
1895
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_clienttrace" = "1"
|
1896
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_contact" = "cstrike-admin@ifusio.com"
|
1897
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_friction" = "4"
|
1898
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_gravity" = "800"
|
1899
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_logblocks" = "0"
|
1900
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_maxrate" = "25000"
|
1901
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_maxspeed" = "900"
|
1902
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_minrate" = "15000"
|
1903
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_password" = ""
|
1904
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_proxies" = "1"
|
1905
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_restart" = "0"
|
1906
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_restartround" = "0"
|
1907
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_stepsize" = "18"
|
1908
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_stopspeed" = "75"
|
1909
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_uploadmax" = "0.5"
|
1910
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_voiceenable" = "1"
|
1911
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_wateraccelerate" = "10"
|
1912
|
+
L 08/14/2013 - 08:26:01: Server cvar "sv_waterfriction" = "1"
|
1913
|
+
L 08/14/2013 - 08:26:01: Server cvars end
|
1914
|
+
L 08/14/2013 - 08:26:06: Podbot mm - Visibility Table file (pvi) exists and is newer than the waypoint file (pwf).
|
1915
|
+
L 08/14/2013 - 08:26:06: Podbot mm - Loading & decompressing Visibility Table
|
1916
|
+
L 08/14/2013 - 08:26:06: Podbot mm - Visibility Table loaded from File...
|
1917
|
+
L 08/14/2013 - 08:26:17: Started map "de_dust2" (CRC "1159425449")
|
1918
|
+
L 08/14/2013 - 08:26:24: World triggered "Round_Start"
|
1919
|
+
L 08/14/2013 - 08:26:26: "Neuromancer<293><STEAM_0:0:12345><>" entered the game
|
1920
|
+
L 08/14/2013 - 08:26:26: "Neuromancer<293><STEAM_0:0:12345><>" joined team "CT"
|
1921
|
+
L 08/14/2013 - 08:26:27: "Juliet_Lewis<294><STEAM_0:0:12345><>" entered the game
|
1922
|
+
L 08/14/2013 - 08:26:27: "Juliet_Lewis<294><STEAM_0:0:12345><>" joined team "TERRORIST"
|
1923
|
+
L 08/14/2013 - 08:26:27: World triggered "Game_Commencing"
|
1924
|
+
L 08/14/2013 - 08:26:27: World triggered "Game_Commencing" (CT "0") (T "0")
|
1925
|
+
L 08/14/2013 - 08:26:27: World triggered "Round_End"
|
1926
|
+
L 08/14/2013 - 08:26:27: "Alloc<295><STEAM_0:0:12345><>" entered the game
|
1927
|
+
L 08/14/2013 - 08:26:27: "Alloc<295><STEAM_0:0:12345><>" joined team "CT"
|
1928
|
+
L 08/14/2013 - 08:26:28: "Jim_Carrey<296><STEAM_0:0:12345><>" entered the game
|
1929
|
+
L 08/14/2013 - 08:26:28: "Jim_Carrey<296><STEAM_0:0:12345><>" joined team "TERRORIST"
|
1930
|
+
L 08/14/2013 - 08:26:28: "V0id<297><STEAM_0:0:12345><>" entered the game
|
1931
|
+
L 08/14/2013 - 08:26:28: "V0id<297><STEAM_0:0:12345><>" joined team "CT"
|
1932
|
+
L 08/14/2013 - 08:26:29: "Funky Byte<298><STEAM_0:0:12345><>" entered the game
|
1933
|
+
L 08/14/2013 - 08:26:29: "Funky Byte<298><STEAM_0:0:12345><>" joined team "TERRORIST"
|
1934
|
+
L 08/14/2013 - 08:26:29: "killaruna<299><STEAM_0:0:12345><>" entered the game
|
1935
|
+
L 08/14/2013 - 08:26:29: "killaruna<299><STEAM_0:0:12345><>" joined team "TERRORIST"
|
1936
|
+
L 08/14/2013 - 08:26:30: "Make my Day<300><STEAM_0:0:12345><>" entered the game
|
1937
|
+
L 08/14/2013 - 08:26:30: "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1938
|
+
L 08/14/2013 - 08:26:30: "Make my Day<300><STEAM_0:0:12345><>" joined team "CT"
|
1939
|
+
L 08/14/2013 - 08:26:30: "Zap!<301><STEAM_0:0:12345><>" entered the game
|
1940
|
+
L 08/14/2013 - 08:26:30: "Zap!<301><STEAM_0:0:12345><>" joined team "TERRORIST"
|
1941
|
+
L 08/14/2013 - 08:26:36: World triggered "Round_Start"
|
1942
|
+
L 08/14/2013 - 08:26:58: "Alloc<295><STEAM_0:0:12345><CT>" killed "killaruna<299><STEAM_0:0:12345><TERRORIST>" with "fiveseven"
|
1943
|
+
L 08/14/2013 - 08:27:06: "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" killed "Make my Day<300><STEAM_0:0:12345><CT>" with "glock18"
|
1944
|
+
L 08/14/2013 - 08:27:06: "Funky Byte<298><STEAM_0:0:12345><TERRORIST>" killed "Neuromancer<293><STEAM_0:0:12345><CT>" with "glock18"
|
1945
|
+
L 08/14/2013 - 08:27:37: "V0id<297><STEAM_0:0:12345><CT>" killed "Jim_Carrey<296><STEAM_0:0:12345><TERRORIST>" with "usp"
|
1946
|
+
L 08/14/2013 - 08:27:56: "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" triggered "Planted_The_Bomb"
|
1947
|
+
L 08/14/2013 - 08:28:07: "V0id<297><STEAM_0:0:12345><CT>" killed "Funky Byte<298><STEAM_0:0:12345><TERRORIST>" with "usp"
|
1948
|
+
L 08/14/2013 - 08:28:09: "Zap!<301><STEAM_0:0:12345><TERRORIST>" killed "Alloc<295><STEAM_0:0:12345><CT>" with "glock18"
|
1949
|
+
L 08/14/2013 - 08:28:36: Bad Rcon: "rcon 1167108231 "lol" sv_contact "HLXBrute"" from "10.0.2.2:60829"
|
1950
|
+
L 08/14/2013 - 08:28:42: Team "TERRORIST" triggered "Target_Bombed" (CT "0") (T "1")
|
1951
|
+
L 08/14/2013 - 08:28:42: World triggered "Round_End"
|
1952
|
+
L 08/14/2013 - 08:28:42: "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" killed "V0id<297><STEAM_0:0:12345><CT>" with "fiveseven"
|
1953
|
+
L 08/14/2013 - 08:28:47: "Jim_Carrey<296><STEAM_0:0:12345><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1954
|
+
L 08/14/2013 - 08:28:53: World triggered "Round_Start"
|
1955
|
+
L 08/14/2013 - 08:29:08: "Neuromancer<293><STEAM_0:0:12345><CT>" killed "Jim_Carrey<296><STEAM_0:0:12345><TERRORIST>" with "tmp"
|
1956
|
+
L 08/14/2013 - 08:29:08: "Jim_Carrey<296><STEAM_0:0:12345><TERRORIST>" triggered "Dropped_The_Bomb"
|
1957
|
+
L 08/14/2013 - 08:29:11: "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" triggered "Got_The_Bomb"
|
1958
|
+
L 08/14/2013 - 08:29:14: "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" killed "V0id<297><STEAM_0:0:12345><CT>" with "sg552"
|
1959
|
+
L 08/14/2013 - 08:29:15: "killaruna<299><STEAM_0:0:12345><TERRORIST>" killed "Alloc<295><STEAM_0:0:12345><CT>" with "ak47"
|
1960
|
+
L 08/14/2013 - 08:29:26: "Funky Byte<298><STEAM_0:0:12345><TERRORIST>" killed "Neuromancer<293><STEAM_0:0:12345><CT>" with "ak47"
|
1961
|
+
L 08/14/2013 - 08:29:27: "Make my Day<300><STEAM_0:0:12345><CT>" killed "killaruna<299><STEAM_0:0:12345><TERRORIST>" with "deagle"
|
1962
|
+
L 08/14/2013 - 08:29:47: "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" triggered "Planted_The_Bomb"
|
1963
|
+
L 08/14/2013 - 08:29:55: "Zap!<301><STEAM_0:0:12345><TERRORIST>" killed "Make my Day<300><STEAM_0:0:12345><CT>" with "ak47"
|
1964
|
+
L 08/14/2013 - 08:29:55: Team "TERRORIST" triggered "Terrorists_Win" (CT "0") (T "2")
|
1965
|
+
L 08/14/2013 - 08:29:55: World triggered "Round_End"
|
1966
|
+
L 08/14/2013 - 08:30:00: "Funky Byte<298><STEAM_0:0:12345><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1967
|
+
L 08/14/2013 - 08:30:06: World triggered "Round_Start"
|
1968
|
+
L 08/14/2013 - 08:30:17: "V0id<297><STEAM_0:0:12345><CT>" killed "Jim_Carrey<296><STEAM_0:0:12345><TERRORIST>" with "tmp"
|
1969
|
+
L 08/14/2013 - 08:30:19: "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" killed "V0id<297><STEAM_0:0:12345><CT>" with "sg552"
|
1970
|
+
L 08/14/2013 - 08:30:22: "Zap!<301><STEAM_0:0:12345><TERRORIST>" killed "Make my Day<300><STEAM_0:0:12345><CT>" with "ak47"
|
1971
|
+
L 08/14/2013 - 08:30:28: "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" killed "Neuromancer<293><STEAM_0:0:12345><CT>" with "sg552"
|
1972
|
+
L 08/14/2013 - 08:30:38: "Alloc<295><STEAM_0:0:12345><CT>" killed "Funky Byte<298><STEAM_0:0:12345><TERRORIST>" with "m3"
|
1973
|
+
L 08/14/2013 - 08:30:38: "Funky Byte<298><STEAM_0:0:12345><TERRORIST>" triggered "Dropped_The_Bomb"
|
1974
|
+
L 08/14/2013 - 08:30:53: "Alloc<295><STEAM_0:0:12345><CT>" killed "killaruna<299><STEAM_0:0:12345><TERRORIST>" with "ak47"
|
1975
|
+
L 08/14/2013 - 08:30:55: "Alloc<295><STEAM_0:0:12345><CT>" killed "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" with "ak47"
|
1976
|
+
L 08/14/2013 - 08:30:58: "Zap!<301><STEAM_0:0:12345><TERRORIST>" killed "Alloc<295><STEAM_0:0:12345><CT>" with "grenade"
|
1977
|
+
L 08/14/2013 - 08:30:58: Team "TERRORIST" triggered "Terrorists_Win" (CT "0") (T "3")
|
1978
|
+
L 08/14/2013 - 08:30:58: World triggered "Round_End"
|
1979
|
+
L 08/14/2013 - 08:31:03: "killaruna<299><STEAM_0:0:12345><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1980
|
+
L 08/14/2013 - 08:31:09: World triggered "Round_Start"
|
1981
|
+
L 08/14/2013 - 08:31:27: "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" killed "Make my Day<300><STEAM_0:0:12345><CT>" with "ak47"
|
1982
|
+
L 08/14/2013 - 08:31:33: "Neuromancer<293><STEAM_0:0:12345><CT>" killed "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" with "p90"
|
1983
|
+
L 08/14/2013 - 08:31:46: "Alloc<295><STEAM_0:0:12345><CT>" killed "killaruna<299><STEAM_0:0:12345><TERRORIST>" with "mp5navy"
|
1984
|
+
L 08/14/2013 - 08:31:46: "killaruna<299><STEAM_0:0:12345><TERRORIST>" triggered "Dropped_The_Bomb"
|
1985
|
+
L 08/14/2013 - 08:31:47: "Alloc<295><STEAM_0:0:12345><CT>" killed "Funky Byte<298><STEAM_0:0:12345><TERRORIST>" with "mp5navy"
|
1986
|
+
L 08/14/2013 - 08:31:59: "Zap!<301><STEAM_0:0:12345><TERRORIST>" triggered "Got_The_Bomb"
|
1987
|
+
L 08/14/2013 - 08:32:37: "Neuromancer<293><STEAM_0:0:12345><CT>" killed "Jim_Carrey<296><STEAM_0:0:12345><TERRORIST>" with "ak47"
|
1988
|
+
L 08/14/2013 - 08:32:45: "Zap!<301><STEAM_0:0:12345><TERRORIST>" killed "V0id<297><STEAM_0:0:12345><CT>" with "ak47"
|
1989
|
+
L 08/14/2013 - 08:32:53: "Zap!<301><STEAM_0:0:12345><TERRORIST>" triggered "Planted_The_Bomb"
|
1990
|
+
L 08/14/2013 - 08:33:07: "Zap!<301><STEAM_0:0:12345><TERRORIST>" killed "Alloc<295><STEAM_0:0:12345><CT>" with "ak47"
|
1991
|
+
L 08/14/2013 - 08:33:10: "Zap!<301><STEAM_0:0:12345><TERRORIST>" killed "Neuromancer<293><STEAM_0:0:12345><CT>" with "ak47"
|
1992
|
+
L 08/14/2013 - 08:33:10: Team "TERRORIST" triggered "Terrorists_Win" (CT "0") (T "4")
|
1993
|
+
L 08/14/2013 - 08:33:10: World triggered "Round_End"
|
1994
|
+
L 08/14/2013 - 08:33:15: "Zap!<301><STEAM_0:0:12345><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
1995
|
+
L 08/14/2013 - 08:33:21: World triggered "Round_Start"
|
1996
|
+
L 08/14/2013 - 08:33:37: "Alloc<295><STEAM_0:0:12345><CT>" killed "Jim_Carrey<296><STEAM_0:0:12345><TERRORIST>" with "aug"
|
1997
|
+
L 08/14/2013 - 08:33:40: "Neuromancer<293><STEAM_0:0:12345><CT>" killed "Zap!<301><STEAM_0:0:12345><TERRORIST>" with "m4a1"
|
1998
|
+
L 08/14/2013 - 08:33:40: "Zap!<301><STEAM_0:0:12345><TERRORIST>" triggered "Dropped_The_Bomb"
|
1999
|
+
L 08/14/2013 - 08:33:41: "killaruna<299><STEAM_0:0:12345><TERRORIST>" killed "Neuromancer<293><STEAM_0:0:12345><CT>" with "xm1014"
|
2000
|
+
L 08/14/2013 - 08:33:44: "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" triggered "Got_The_Bomb"
|
2001
|
+
L 08/14/2013 - 08:33:46: "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" killed "Alloc<295><STEAM_0:0:12345><CT>" with "m4a1"
|
2002
|
+
L 08/14/2013 - 08:33:56: "Funky Byte<298><STEAM_0:0:12345><TERRORIST>" killed "Make my Day<300><STEAM_0:0:12345><CT>" with "sg552"
|
2003
|
+
L 08/14/2013 - 08:34:00: "V0id<297><STEAM_0:0:12345><CT>" killed "killaruna<299><STEAM_0:0:12345><TERRORIST>" with "usp"
|
2004
|
+
L 08/14/2013 - 08:34:03: "Funky Byte<298><STEAM_0:0:12345><TERRORIST>" killed "V0id<297><STEAM_0:0:12345><CT>" with "sg552"
|
2005
|
+
L 08/14/2013 - 08:34:03: Team "TERRORIST" triggered "Terrorists_Win" (CT "0") (T "5")
|
2006
|
+
L 08/14/2013 - 08:34:03: World triggered "Round_End"
|
2007
|
+
L 08/14/2013 - 08:34:08: "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
2008
|
+
L 08/14/2013 - 08:34:14: World triggered "Round_Start"
|
2009
|
+
L 08/14/2013 - 08:34:32: "killaruna<299><STEAM_0:0:12345><TERRORIST>" killed "Neuromancer<293><STEAM_0:0:12345><CT>" with "galil"
|
2010
|
+
L 08/14/2013 - 08:34:35: "V0id<297><STEAM_0:0:12345><CT>" killed "Jim_Carrey<296><STEAM_0:0:12345><TERRORIST>" with "famas"
|
2011
|
+
L 08/14/2013 - 08:35:00: "Make my Day<300><STEAM_0:0:12345><CT>" killed "Zap!<301><STEAM_0:0:12345><TERRORIST>" with "famas"
|
2012
|
+
L 08/14/2013 - 08:35:18: "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" triggered "Planted_The_Bomb"
|
2013
|
+
L 08/14/2013 - 08:35:18: "Funky Byte<298><STEAM_0:0:12345><TERRORIST>" killed "V0id<297><STEAM_0:0:12345><CT>" with "m4a1"
|
2014
|
+
L 08/14/2013 - 08:35:29: "killaruna<299><STEAM_0:0:12345><TERRORIST>" killed "Alloc<295><STEAM_0:0:12345><CT>" with "sg552"
|
2015
|
+
L 08/14/2013 - 08:35:58: "Make my Day<300><STEAM_0:0:12345><CT>" killed "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" with "famas"
|
2016
|
+
L 08/14/2013 - 08:36:03: Team "TERRORIST" triggered "Target_Bombed" (CT "0") (T "6")
|
2017
|
+
L 08/14/2013 - 08:36:03: World triggered "Round_End"
|
2018
|
+
L 08/14/2013 - 08:36:08: "Jim_Carrey<296><STEAM_0:0:12345><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
2019
|
+
L 08/14/2013 - 08:36:14: World triggered "Round_Start"
|
2020
|
+
L 08/14/2013 - 08:36:33: "V0id<297><STEAM_0:0:12345><CT>" killed "killaruna<299><STEAM_0:0:12345><TERRORIST>" with "deagle"
|
2021
|
+
L 08/14/2013 - 08:36:35: "Funky Byte<298><STEAM_0:0:12345><TERRORIST>" killed "Neuromancer<293><STEAM_0:0:12345><CT>" with "m4a1"
|
2022
|
+
L 08/14/2013 - 08:36:35: "V0id<297><STEAM_0:0:12345><CT>" killed "Funky Byte<298><STEAM_0:0:12345><TERRORIST>" with "deagle"
|
2023
|
+
L 08/14/2013 - 08:36:45: "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" killed "Make my Day<300><STEAM_0:0:12345><CT>" with "ak47"
|
2024
|
+
L 08/14/2013 - 08:36:59: "Alloc<295><STEAM_0:0:12345><CT>" killed "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" with "famas"
|
2025
|
+
L 08/14/2013 - 08:37:00: "Jim_Carrey<296><STEAM_0:0:12345><TERRORIST>" triggered "Planted_The_Bomb"
|
2026
|
+
L 08/14/2013 - 08:37:15: "V0id<297><STEAM_0:0:12345><CT>" killed "Jim_Carrey<296><STEAM_0:0:12345><TERRORIST>" with "sg552"
|
2027
|
+
L 08/14/2013 - 08:37:28: "Alloc<295><STEAM_0:0:12345><CT>" triggered "Begin_Bomb_Defuse_With_Kit"
|
2028
|
+
L 08/14/2013 - 08:37:33: "Alloc<295><STEAM_0:0:12345><CT>" triggered "Defused_The_Bomb"
|
2029
|
+
L 08/14/2013 - 08:37:33: Team "CT" triggered "Bomb_Defused" (CT "1") (T "6")
|
2030
|
+
L 08/14/2013 - 08:37:33: World triggered "Round_End"
|
2031
|
+
L 08/14/2013 - 08:37:38: "Funky Byte<298><STEAM_0:0:12345><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
2032
|
+
L 08/14/2013 - 08:37:44: World triggered "Round_Start"
|
2033
|
+
L 08/14/2013 - 08:38:01: "V0id<297><STEAM_0:0:12345><CT>" killed "Jim_Carrey<296><STEAM_0:0:12345><TERRORIST>" with "sg552"
|
2034
|
+
L 08/14/2013 - 08:38:08: "V0id<297><STEAM_0:0:12345><CT>" killed "killaruna<299><STEAM_0:0:12345><TERRORIST>" with "sg552"
|
2035
|
+
L 08/14/2013 - 08:38:12: "Neuromancer<293><STEAM_0:0:12345><CT>" killed "Funky Byte<298><STEAM_0:0:12345><TERRORIST>" with "m4a1"
|
2036
|
+
L 08/14/2013 - 08:38:12: "Funky Byte<298><STEAM_0:0:12345><TERRORIST>" triggered "Dropped_The_Bomb"
|
2037
|
+
L 08/14/2013 - 08:38:36: "Make my Day<300><STEAM_0:0:12345><CT>" killed "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" with "aug"
|
2038
|
+
L 08/14/2013 - 08:38:48: "Zap!<301><STEAM_0:0:12345><TERRORIST>" triggered "Got_The_Bomb"
|
2039
|
+
L 08/14/2013 - 08:39:27: "Zap!<301><STEAM_0:0:12345><TERRORIST>" triggered "Planted_The_Bomb"
|
2040
|
+
L 08/14/2013 - 08:39:51: "Zap!<301><STEAM_0:0:12345><TERRORIST>" killed "Make my Day<300><STEAM_0:0:12345><CT>" with "ak47"
|
2041
|
+
L 08/14/2013 - 08:39:55: "Zap!<301><STEAM_0:0:12345><TERRORIST>" killed "Alloc<295><STEAM_0:0:12345><CT>" with "ak47"
|
2042
|
+
L 08/14/2013 - 08:40:13: Team "TERRORIST" triggered "Target_Bombed" (CT "1") (T "7")
|
2043
|
+
L 08/14/2013 - 08:40:13: World triggered "Round_End"
|
2044
|
+
L 08/14/2013 - 08:40:18: "killaruna<299><STEAM_0:0:12345><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
2045
|
+
L 08/14/2013 - 08:40:24: World triggered "Round_Start"
|
2046
|
+
L 08/14/2013 - 08:40:34: "V0id<297><STEAM_0:0:12345><CT>" killed "Zap!<301><STEAM_0:0:12345><TERRORIST>" with "sg552"
|
2047
|
+
L 08/14/2013 - 08:40:41: "Funky Byte<298><STEAM_0:0:12345><TERRORIST>" killed "V0id<297><STEAM_0:0:12345><CT>" with "xm1014"
|
2048
|
+
L 08/14/2013 - 08:40:44: "Neuromancer<293><STEAM_0:0:12345><CT>" killed "Funky Byte<298><STEAM_0:0:12345><TERRORIST>" with "m4a1"
|
2049
|
+
L 08/14/2013 - 08:40:53: "Neuromancer<293><STEAM_0:0:12345><CT>" killed "Jim_Carrey<296><STEAM_0:0:12345><TERRORIST>" with "m4a1"
|
2050
|
+
L 08/14/2013 - 08:40:55: "Alloc<295><STEAM_0:0:12345><CT>" killed "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" with "aug"
|
2051
|
+
L 08/14/2013 - 08:41:04: "killaruna<299><STEAM_0:0:12345><TERRORIST>" triggered "Planted_The_Bomb"
|
2052
|
+
L 08/14/2013 - 08:41:23: "killaruna<299><STEAM_0:0:12345><TERRORIST>" killed "Alloc<295><STEAM_0:0:12345><CT>" with "sg552"
|
2053
|
+
L 08/14/2013 - 08:41:30: "Make my Day<300><STEAM_0:0:12345><CT>" killed "killaruna<299><STEAM_0:0:12345><TERRORIST>" with "ak47"
|
2054
|
+
L 08/14/2013 - 08:41:50: Team "TERRORIST" triggered "Target_Bombed" (CT "1") (T "8")
|
2055
|
+
L 08/14/2013 - 08:41:50: World triggered "Round_End"
|
2056
|
+
L 08/14/2013 - 08:41:55: "Zap!<301><STEAM_0:0:12345><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
2057
|
+
L 08/14/2013 - 08:42:01: World triggered "Round_Start"
|
2058
|
+
L 08/14/2013 - 08:42:13: "V0id<297><STEAM_0:0:12345><CT>" killed "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" with "p228"
|
2059
|
+
L 08/14/2013 - 08:42:15: "Funky Byte<298><STEAM_0:0:12345><TERRORIST>" killed "V0id<297><STEAM_0:0:12345><CT>" with "sg552"
|
2060
|
+
L 08/14/2013 - 08:42:16: "Zap!<301><STEAM_0:0:12345><TERRORIST>" killed "Alloc<295><STEAM_0:0:12345><CT>" with "sg552"
|
2061
|
+
L 08/14/2013 - 08:42:17: "killaruna<299><STEAM_0:0:12345><TERRORIST>" killed "Neuromancer<293><STEAM_0:0:12345><CT>" with "ak47"
|
2062
|
+
L 08/14/2013 - 08:42:32: "Zap!<301><STEAM_0:0:12345><TERRORIST>" killed "Make my Day<300><STEAM_0:0:12345><CT>" with "sg552"
|
2063
|
+
L 08/14/2013 - 08:42:32: Team "TERRORIST" triggered "Terrorists_Win" (CT "1") (T "9")
|
2064
|
+
L 08/14/2013 - 08:42:32: World triggered "Round_End"
|
2065
|
+
L 08/14/2013 - 08:42:37: "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
2066
|
+
L 08/14/2013 - 08:42:43: World triggered "Round_Start"
|
2067
|
+
L 08/14/2013 - 08:43:02: "Alloc<295><STEAM_0:0:12345><CT>" killed "Zap!<301><STEAM_0:0:12345><TERRORIST>" with "mp5navy"
|
2068
|
+
L 08/14/2013 - 08:43:06: "Alloc<295><STEAM_0:0:12345><CT>" killed "Funky Byte<298><STEAM_0:0:12345><TERRORIST>" with "mp5navy"
|
2069
|
+
L 08/14/2013 - 08:43:10: "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" killed "V0id<297><STEAM_0:0:12345><CT>" with "sg552"
|
2070
|
+
L 08/14/2013 - 08:43:28: "Jim_Carrey<296><STEAM_0:0:12345><TERRORIST>" killed "Neuromancer<293><STEAM_0:0:12345><CT>" with "ak47"
|
2071
|
+
L 08/14/2013 - 08:43:40: "killaruna<299><STEAM_0:0:12345><TERRORIST>" committed suicide with "grenade"
|
2072
|
+
L 08/14/2013 - 08:43:40: "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" triggered "Planted_The_Bomb"
|
2073
|
+
L 08/14/2013 - 08:43:44: "Jim_Carrey<296><STEAM_0:0:12345><TERRORIST>" killed "Alloc<295><STEAM_0:0:12345><CT>" with "ak47"
|
2074
|
+
L 08/14/2013 - 08:43:56: "Make my Day<300><STEAM_0:0:12345><CT>" killed "Jim_Carrey<296><STEAM_0:0:12345><TERRORIST>" with "mp5navy"
|
2075
|
+
L 08/14/2013 - 08:44:14: "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" killed "Make my Day<300><STEAM_0:0:12345><CT>" with "sg552"
|
2076
|
+
L 08/14/2013 - 08:44:14: Team "TERRORIST" triggered "Terrorists_Win" (CT "1") (T "10")
|
2077
|
+
L 08/14/2013 - 08:44:14: World triggered "Round_End"
|
2078
|
+
L 08/14/2013 - 08:44:19: "Jim_Carrey<296><STEAM_0:0:12345><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
2079
|
+
L 08/14/2013 - 08:44:25: World triggered "Round_Start"
|
2080
|
+
L 08/14/2013 - 08:44:48: "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" killed "Make my Day<300><STEAM_0:0:12345><CT>" with "sg552"
|
2081
|
+
L 08/14/2013 - 08:44:59: "killaruna<299><STEAM_0:0:12345><TERRORIST>" killed "Neuromancer<293><STEAM_0:0:12345><CT>" with "ak47"
|
2082
|
+
L 08/14/2013 - 08:44:59: "Alloc<295><STEAM_0:0:12345><CT>" killed "Jim_Carrey<296><STEAM_0:0:12345><TERRORIST>" with "aug"
|
2083
|
+
L 08/14/2013 - 08:44:59: "Jim_Carrey<296><STEAM_0:0:12345><TERRORIST>" triggered "Dropped_The_Bomb"
|
2084
|
+
L 08/14/2013 - 08:45:07: "killaruna<299><STEAM_0:0:12345><TERRORIST>" killed "V0id<297><STEAM_0:0:12345><CT>" with "grenade"
|
2085
|
+
L 08/14/2013 - 08:45:15: "killaruna<299><STEAM_0:0:12345><TERRORIST>" triggered "Got_The_Bomb"
|
2086
|
+
L 08/14/2013 - 08:45:16: "Alloc<295><STEAM_0:0:12345><CT>" killed "killaruna<299><STEAM_0:0:12345><TERRORIST>" with "aug"
|
2087
|
+
L 08/14/2013 - 08:45:16: "killaruna<299><STEAM_0:0:12345><TERRORIST>" triggered "Dropped_The_Bomb"
|
2088
|
+
L 08/14/2013 - 08:45:20: "Alloc<295><STEAM_0:0:12345><CT>" killed "Funky Byte<298><STEAM_0:0:12345><TERRORIST>" with "aug"
|
2089
|
+
L 08/14/2013 - 08:45:26: "Zap!<301><STEAM_0:0:12345><TERRORIST>" killed "Alloc<295><STEAM_0:0:12345><CT>" with "galil"
|
2090
|
+
L 08/14/2013 - 08:45:26: Team "TERRORIST" triggered "Terrorists_Win" (CT "1") (T "11")
|
2091
|
+
L 08/14/2013 - 08:45:26: World triggered "Round_End"
|
2092
|
+
L 08/14/2013 - 08:45:31: "Funky Byte<298><STEAM_0:0:12345><TERRORIST>" triggered "Spawned_With_The_Bomb"
|
2093
|
+
L 08/14/2013 - 08:45:37: World triggered "Round_Start"
|
2094
|
+
L 08/14/2013 - 08:45:45: "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" killed "V0id<297><STEAM_0:0:12345><CT>" with "sg552"
|
2095
|
+
L 08/14/2013 - 08:45:49: "Make my Day<300><STEAM_0:0:12345><CT>" killed "Juliet_Lewis<294><STEAM_0:0:12345><TERRORIST>" with "m4a1"
|
2096
|
+
L 08/14/2013 - 08:45:53: "Neuromancer<293><STEAM_0:0:12345><CT>" killed "killaruna<299><STEAM_0:0:12345><TERRORIST>" with "scout"
|
2097
|
+
L 08/14/2013 - 08:45:53: "Jim_Carrey<296><STEAM_0:0:12345><TERRORIST>" killed "Make my Day<300><STEAM_0:0:12345><CT>" with "scout"
|
2098
|
+
L 08/14/2013 - 08:46:03: "Neuromancer<293><STEAM_0:0:12345><CT>" killed "Zap!<301><STEAM_0:0:12345><TERRORIST>" with "scout"
|
2099
|
+
L 08/14/2013 - 08:46:05: "Funky Byte<298><STEAM_0:0:12345><TERRORIST>" killed "Neuromancer<293><STEAM_0:0:12345><CT>" with "galil"
|
2100
|
+
L 08/14/2013 - 08:46:28: Bad Rcon: "rcon 1167108231 "ololo" sv_contact "HLXBrute"" from "10.0.2.2:60829"
|
2101
|
+
L 08/14/2013 - 08:46:30: Team "CT" scored "1" with "4" players
|
2102
|
+
L 08/14/2013 - 08:46:30: Team "TERRORIST" scored "11" with "5" players
|
2103
|
+
L 08/14/2013 - 08:46:30: Podbot mm - Experience Data saved...
|
2104
|
+
L 08/14/2013 - 08:46:30: Podbot mm - Visibility Table not saved - Table doesn't need to be saved now.
|
2105
|
+
L 08/14/2013 - 08:46:30: Server cvar "mp_chattime" = "12"
|
2106
|
+
L 08/14/2013 - 08:46:40: Server cvar "mp_chattime" = "10"
|
2107
|
+
L 08/14/2013 - 08:46:40: Podbot mm - Experience Data saved...
|
2108
|
+
L 08/14/2013 - 08:46:40: Podbot mm - Visibility Table not saved - Table doesn't need to be saved now.
|
2109
|
+
L 08/14/2013 - 08:46:40: [META] ini: Begin re-reading plugins list: /vagrant/hlds/cstrike/addons/metamod/plugins.ini
|
2110
|
+
L 08/14/2013 - 08:46:40: [META] ini: Read plugin config for: AMX Mod X
|
2111
|
+
L 08/14/2013 - 08:46:40: [META] ini: Read plugin config for: POD-Bot mm
|
2112
|
+
L 08/14/2013 - 08:46:40: [META] ini: Finished reading plugins list: /vagrant/hlds/cstrike/addons/metamod/plugins.ini; Found 2 plugins
|
2113
|
+
L 08/14/2013 - 08:46:40: [META] dll: Updating plugins...
|
2114
|
+
L 08/14/2013 - 08:46:40: [META] dll: Finished updating 5 plugins; kept 2, loaded 0, unloaded 0, reloaded 0, delayed 0
|
2115
|
+
L 08/14/2013 - 08:46:40: Log file closed
|