quakelive_api 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dd07e3b24f8bd5ae655d3bab010f22eef0951f03
4
- data.tar.gz: 6d571ee6e0b6d72fbf378ce5f34bfe3e2c8c2631
3
+ metadata.gz: 2b9ab191a676a678445b1fae40ea6d3df402c423
4
+ data.tar.gz: e71912a0a4918ab4ef7f346b16371dfa80ed7be4
5
5
  SHA512:
6
- metadata.gz: 81b4452ec62024f5089e5010139e08ba581bf1fb360238fb3200b57a66bdf811a06232f47bc712cbcc0b03ae1087a272bf33f3c3e42f9d55daf93165a9be9007
7
- data.tar.gz: cedfce00fec557f10162fc1f41a9b255a9fe69d538799964ffe60a04216b20b2a95c751cf803b12f3170b94caf49c1382fe1808c0cf7bd3fb3777af4314ecd8d
6
+ metadata.gz: 1850bdef794bafc15a36c4ab36a8fe9f43a9ec3b7fcf7c0350f5797aa8411c280442f19d7dc0664818b4575ccb60d5c2deaff097786b2d74c576a936ef8e1fa4
7
+ data.tar.gz: 8fc46a74b0a530008c9c534140c273152ffa6848f433c7a6b4f2929c9c6db0b7e5ee67b0f581f1b6b0a2dda0c7651301405d4fb5217a464fe0541826ba316bdf
@@ -1,3 +1,7 @@
1
+ ## 0.1.2
2
+
3
+ - QL side updated again, fixed weapons stats
4
+
1
5
  ## 0.1.1
2
6
 
3
7
  - proper inactive accounts detection
@@ -4,14 +4,16 @@ module QuakeliveApi
4
4
 
5
5
  def weapons
6
6
  document.css(selector(:weapon)).each_with_index.map do |node, idx|
7
+ next if node.children.empty? # messed-up html by id, thanks
8
+
7
9
  attrs = {
8
- name: node.text,
9
- frags: frags(weapon_next(:frags, idx)),
10
- accuracy: accuracy(weapon_next(:accuracy, idx)),
11
- usage: usage(weapon_next(:usage, idx))
10
+ name: next_element(:name, idx).content,
11
+ frags: frags(next_element(:frags, idx)),
12
+ accuracy: accuracy(next_element(:accuracy, idx)),
13
+ usage: usage(next_element(:usage, idx))
12
14
  }
13
15
 
14
- hits, shots = hits_shots(weapon_next(:accuracy, idx))
16
+ hits, shots = hits_shots(next_element(:accuracy, idx))
15
17
  attrs.merge!(hits: hits, shots: shots)
16
18
 
17
19
  Items::Weapon.new(attrs)
@@ -42,7 +44,8 @@ module QuakeliveApi
42
44
 
43
45
  def selectors
44
46
  {
45
- weapon: ".prf_weapons .col_weapon",
47
+ weapon: ".prf_weapons p",
48
+ name: ".col_weapon",
46
49
  frags: ".col_frags",
47
50
  accuracy: ".col_accuracy",
48
51
  usage: ".col_usage",
@@ -54,17 +57,26 @@ module QuakeliveApi
54
57
  document.at(selector(:record)).nil?
55
58
  end
56
59
 
60
+ # 71,259 / 247,016 (28.85%)
57
61
  def hits_shots(node)
58
62
  return [nil, nil] unless node['title']
59
- res = node['title'].match(/Hits: ([\d,]+) Shots: ([\d,]+)/)
63
+
64
+ selector = if node['title'] =~ /hits/i
65
+ /Hits: ([\d,]+) Shots: ([\d,]+)/i
66
+ else
67
+ /([\d,]+)\s+\/\s+([\d,]+)/i
68
+ end
69
+
70
+ res = node['title'].match(selector)
71
+
60
72
  [res[1], res[2]].map { |r| to_integer r }
61
73
  end
62
74
 
63
75
  def usage(node)
64
- to_integer node.text.gsub("%", '')
76
+ to_integer node.text.gsub(/%|,/, '')
65
77
  end
66
78
 
67
- def weapon_next(css, index)
79
+ def next_element(css, index)
68
80
  document.css(".prf_weapons #{selector(css)}")[index]
69
81
  end
70
82
 
@@ -73,7 +85,7 @@ module QuakeliveApi
73
85
  end
74
86
 
75
87
  def accuracy(node)
76
- return if node.text == 'N/A'
88
+ return if node.text =~ /^n\/a$/i
77
89
  to_integer node.at('span').text.gsub("%","")
78
90
  end
79
91
  end
@@ -1,3 +1,3 @@
1
1
  module QuakeliveApi
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
@@ -23,7 +23,7 @@ http_interactions:
23
23
  Server:
24
24
  - nginx/0.7.67
25
25
  Date:
26
- - Mon, 18 Aug 2014 10:35:17 GMT
26
+ - Tue, 09 Sep 2014 17:36:56 GMT
27
27
  Content-Type:
28
28
  - text/html
29
29
  Transfer-Encoding:
@@ -40,7 +40,7 @@ http_interactions:
40
40
  encoding: UTF-8
41
41
  string: "<div id='qlv_profile_shared_container' style=\"text-align: left\">\n
42
42
  \ \t<div style=\"display: none\" id=\"prf_player_name\">Xsi</div>\n <h1
43
- class=\"profile_title\">\n <img src=\"http://cdn.quakelive.com/web/2014080602/images/flags/pl_v2014080602.0.gif\"
43
+ class=\"profile_title\">\n <img src=\"http://cdn.quakelive.com/web/2014082702/images/flags/pl_v2014082702.0.gif\"
44
44
  class=\"playerflag\" title=\"Poland\" />\n <a
45
45
  class=\"clan\" href=\"#!clans/summary/4272\">t13</a>\n Xsi\n
46
46
  \ </h1>\n\t<div class=\"prf_header\">\n \t\t<div class=\"nav\">\n\t\t\t<a
@@ -56,43 +56,43 @@ http_interactions:
56
56
  class=\"prf_section_searchbar\">\n\t\t\t\t<input type=\"text\" placeholder=\"Jump
57
57
  to profile&hellip;\" class=\"input_default\" id=\"profile_jump_input\" />\n\t\t\t\t<a
58
58
  href=\"javascript:;\" onclick=\"quakelive.mod_profile.ProfileJumpClick();
59
- return false\"><img src=\"http://cdn.quakelive.com/web/2014080602/images/sf/leaderboard/search_v2014080602.0.png\"
59
+ return false\"><img src=\"http://cdn.quakelive.com/web/2014082702/images/sf/leaderboard/search_v2014082702.0.png\"
60
60
  width=\"23\" height=\"23\" /></a>\n\t\t\t</div>\n\t\t</form>\n\t\t\n\t\t<div
61
61
  class=\"cl\"></div>\n\t</div>\n \n <div id=\"qlv_profileContainer\">\n
62
62
  \ <div id=\"qlv_profileTopLeft\" class=\"statistics premium_status_2\">\n
63
63
  \ \t\t\t<div class=\"prf_imagery\">\n\t\t\t\t<div style=\"width:
64
- 145px; height: 275px; margin-top: 5px; margin-left: 13px; background: url(http://cdn.quakelive.com/web/2014080602/images/players/body_md/keel_sport_blue_v2014080602.0.png)
64
+ 145px; height: 275px; margin-top: 5px; margin-left: 13px; background: url(http://cdn.quakelive.com/web/2014082702/images/players/body_md/keel_sport_blue_v2014082702.0.png)
65
65
  no-repeat center top\" title=\"Keel / Sport_blue\">\n \n <img
66
- src=\"http://cdn.quakelive.com/web/2014080602/images/p_badge_v2014080602.0.png\"
66
+ src=\"http://cdn.quakelive.com/web/2014082702/images/p_badge_v2014082702.0.png\"
67
67
  width=\"18\" title=\"Pro Player\"/> </div>\n\t\t\t\t<br />\n
68
68
  \ <!--\n\t\t\t\t<div style=\"margin-left: 15px; width: 140px;
69
69
  text-align: center; color: #cc3300; font-size: 17px; font-weight: bold; font-family:
70
70
  Arial\">\n\t\t\t\t\tKeel\n\t\t\t\t</div>\n -->\n\t\t\t</div>\n\n\t\t\t<div
71
- class=\"prf_vitals\">\n\t\t\t\t<img src=\"http://cdn.quakelive.com/web/2014080602/images/profile/titles/ttl_vitalstats_v2014080602.0.png\"
71
+ class=\"prf_vitals\">\n\t\t\t\t<img src=\"http://cdn.quakelive.com/web/2014082702/images/profile/titles/ttl_vitalstats_v2014082702.0.png\"
72
72
  alt=\"Vital Stats\" width=\"108\" height=\"13\" class=\"prf_title\" />\n\t\t\t\t<br
73
73
  />\n\t\t\t\t\n\t\t\t\t<p>\n <b>Member Since:</b> Jul. 09,
74
74
  2008<br />\n <b>Time Played:</b> <span
75
75
  class=\"text_tooltip\" title=\"Ranked Time: 8.07:01:37 Unranked Time: 03:26:48\">9
76
76
  days</span><br />\n \n <b>Last
77
77
  Game:</b>\n <span class=\"text_tooltip\"
78
- title=\"03/24/2014 2:56 PM\">5 months ago</span>\n <br
78
+ title=\"03/24/2014 2:56 PM\">6 months ago</span>\n <br
79
79
  />\n <b>Wins:</b> 507<br />\n <b>Losses
80
80
  / Quits:</b> 552 / 64<br />\n\t\t <b>Frags / Deaths:</b> 18,918
81
81
  / 19,503<br />\n\t\t <b>Hits / Shots:</b> 313,698 / 1,139,185<br
82
82
  />\n\t\t <b>Accuracy:</b> 27.54%<br />\n <b>Clan:</b>
83
83
  <a href=\"#!clans/summary/4272\">t13</a><br />\n \n
84
- \ \t\t\t\t</p>\n \n\t <img src=\"http://cdn.quakelive.com/web/2014080602/images/profile/titles/ttl_favorites_v2014080602.0.png\"
84
+ \ \t\t\t\t</p>\n \n\t <img src=\"http://cdn.quakelive.com/web/2014082702/images/profile/titles/ttl_favorites_v2014082702.0.png\"
85
85
  width=\"93\" height=\"13\" alt=\"Favorites\" class=\"prf_title\" />\n\t <br
86
86
  />\n\t \n\t <p class=\"prf_faves\">\n <img
87
- src=\"http://cdn.quakelive.com/web/2014080602/images/profile/none_v2014080602.0.gif\"
87
+ src=\"http://cdn.quakelive.com/web/2014082702/images/profile/none_v2014082702.0.gif\"
88
88
  width=\"17\" height=\"17\" alt=\"\" class=\"fl fivepxhr\" />\n <b>Arena:</b>
89
89
  Blood Run\n \t\t <div class=\"cl\"></div>\n\t\t
90
90
  \ </p>\n\t\t \n\t\t <p class=\"fivepxv prf_faves\">\n
91
- \ <img src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/xsm/duel_v2014080602.0.png\"
91
+ \ <img src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/xsm/duel_v2014082702.0.png\"
92
92
  width=\"16\" height=\"16\" alt=\"\" class=\"fl fivepxhr\" />\n <b>Game
93
93
  Type:</b> Duel\n \t \t\n\t\t <div
94
94
  class=\"cl\"></div>\n\t\t </p>\n\t\t \n\t\t <p class=\"fivepxv
95
- prf_faves\">\n \t\t\t <img src=\"http://cdn.quakelive.com/web/2014080602/images/profile/weapons/sm/ROCKET_v2014080602.0.gif\"
95
+ prf_faves\">\n \t\t\t <img src=\"http://cdn.quakelive.com/web/2014082702/images/profile/weapons/sm/ROCKET_v2014082702.0.gif\"
96
96
  width=\"17\" height=\"17\" alt=\"\" class=\"fl fivepxhr\" />\n <b>Weapon:</b>
97
97
  Rocket Launcher\n \t\t <div class=\"cl\"></div>\n\t\t
98
98
  \ </p>\n\t\t\t</div>\n\t\t\t\n\t\t\t<div class=\"cl\"></div>\n \n
@@ -107,97 +107,81 @@ http_interactions:
107
107
  \ </div>\n\t <div id=\"prf_friend_controls\">\n\t\t </div>\n
108
108
  \ </div>\n\n <div id=\"qlv_profileTopRight\" class=\"statistics\">\n
109
109
  \ <div class=\"prf_weapons_header\">\r\n <div
110
- class=\"col_weapon\"><img src=\"http://cdn.quakelive.com/web/2014080602/images/profile/titles/ttl_weapons_v2014080602.0.png\"
110
+ class=\"col_weapon\"><img src=\"http://cdn.quakelive.com/web/2014082702/images/profile/titles/ttl_weapons_v2014082702.0.png\"
111
111
  alt=\"Weapons\" width=\"91\" height=\"17\" class=\"prf_title\" /></div>\r\n
112
112
  \ <div class=\"col_frags\">Frags</div>\r\n <div
113
113
  class=\"col_accuracy\">Accuracy</div>\r\n <div class=\"col_usage\">Use</div>\r\n
114
114
  \ <div class=\"cl\"></div>\r\n </div>\r\n\r\n <div
115
115
  class=\"prf_weapons cl\">\r\n <p class=\"prf_row1\">\r\n
116
- \ <img class=\"fl\" src=\"http://cdn.quakelive.com/web/2014080602/images/profile/weapons/md/GAUNTLET_v2014080602.0.png\"
117
- width=\"27\" height=\"27\" alt=\"\" />\r\n <div class=\"col_weapon\">Gauntlet</div>\r\n
118
- \ <div class=\"col_frags\">216</div>\r\n <div
116
+ \ <img class=\"fl\" src=\"http://cdn.quakelive.com/web/2014082702/images/profile/weapons/md/GAUNTLET_v2014082702.0.png\"/>\r\n
117
+ \ <div class=\"col_weapon\">Gauntlet</div>\r\n <div
118
+ class=\"col_frags\">216</div>\r\n <div
119
119
  class=\"col_accuracy\">N/A</div>\r\n <div
120
120
  class=\"col_usage\">1%</div>\r\n <div class=\"cl\"></div>\r\n
121
121
  \ </p>\r\n <p class=\"prf_row2\">\r\n
122
- \ <img class=\"fl\" src=\"http://cdn.quakelive.com/web/2014080602/images/profile/weapons/md/MACHINEGUN_v2014080602.0.png\"
123
- width=\"27\" height=\"27\" alt=\"\" />\r\n <div class=\"col_weapon\">Machinegun</div>\r\n
124
- \ <div class=\"col_frags\">1,399</div>\r\n <div
125
- class=\"col_accuracy\" title=\"Hits: 71,259 Shots: 247,016\"><span class=\"text_tooltip\">29%</span></div>\r\n
122
+ \ <img class=\"fl\" src=\"http://cdn.quakelive.com/web/2014082702/images/profile/weapons/md/MACHINEGUN_v2014082702.0.png\"/>\r\n
123
+ \ <div class=\"col_weapon\">Machinegun</div>\r\n <div
124
+ class=\"col_frags\">1,399</div>\r\n <div
125
+ class=\"col_accuracy\" title=\"71,259 / 247,016 (28.85%)\"><span class=\"text_tooltip\">29%</span></div>\r\n
126
126
  \ <div class=\"col_usage\">7%</div>\r\n
127
127
  \ <div class=\"cl\"></div>\r\n </p>\r\n <p
128
- class=\"prf_row1\">\r\n <img class=\"fl\" src=\"http://cdn.quakelive.com/web/2014080602/images/profile/weapons/md/SHOTGUN_v2014080602.0.png\"
129
- width=\"27\" height=\"27\" alt=\"\" />\r\n <div class=\"col_weapon\">Shotgun</div>\r\n
130
- \ <div class=\"col_frags\">2,809</div>\r\n <div
131
- class=\"col_accuracy\" title=\"Hits: 39,168 Shots: 152,613\"><span class=\"text_tooltip\">26%</span></div>\r\n
128
+ class=\"prf_row1\">\r\n <img class=\"fl\" src=\"http://cdn.quakelive.com/web/2014082702/images/profile/weapons/md/SHOTGUN_v2014082702.0.png\"/>\r\n
129
+ \ <div class=\"col_weapon\">Shotgun</div>\r\n <div
130
+ class=\"col_frags\">2,809</div>\r\n <div
131
+ class=\"col_accuracy\" title=\"39,168 / 152,613 (25.66%)\"><span class=\"text_tooltip\">26%</span></div>\r\n
132
132
  \ <div class=\"col_usage\">8%</div>\r\n
133
133
  \ <div class=\"cl\"></div>\r\n </p>\r\n <p
134
- class=\"prf_row2\">\r\n <img class=\"fl\" src=\"http://cdn.quakelive.com/web/2014080602/images/profile/weapons/md/GRENADE_v2014080602.0.png\"
135
- width=\"27\" height=\"27\" alt=\"\" />\r\n <div class=\"col_weapon\">Grenade
136
- Launcher</div>\r\n <div class=\"col_frags\">318</div>\r\n
137
- \ <div class=\"col_accuracy\" title=\"Hits:
138
- 1,812 Shots: 18,071\"><span class=\"text_tooltip\">10%</span></div>\r\n <div
139
- class=\"col_usage\">3%</div>\r\n <div class=\"cl\"></div>\r\n
140
- \ </p>\r\n <p class=\"prf_row1\">\r\n
141
- \ <img class=\"fl\" src=\"http://cdn.quakelive.com/web/2014080602/images/profile/weapons/md/ROCKET_v2014080602.0.png\"
142
- width=\"27\" height=\"27\" alt=\"\" />\r\n <div class=\"col_weapon\">Rocket
143
- Launcher</div>\r\n <div class=\"col_frags\">6,015</div>\r\n
144
- \ <div class=\"col_accuracy\" title=\"Hits:
145
- 38,629 Shots: 108,733\"><span class=\"text_tooltip\">36%</span></div>\r\n
134
+ class=\"prf_row2\">\r\n <img class=\"fl\" src=\"http://cdn.quakelive.com/web/2014082702/images/profile/weapons/md/GRENADE_v2014082702.0.png\"/>\r\n
135
+ \ <div class=\"col_weapon\">Grenade Launcher</div>\r\n <div
136
+ class=\"col_frags\">318</div>\r\n <div
137
+ class=\"col_accuracy\" title=\"1,812 / 18,071 (10.03%)\"><span class=\"text_tooltip\">10%</span></div>\r\n
138
+ \ <div class=\"col_usage\">3%</div>\r\n
139
+ \ <div class=\"cl\"></div>\r\n </p>\r\n <p
140
+ class=\"prf_row1\">\r\n <img class=\"fl\" src=\"http://cdn.quakelive.com/web/2014082702/images/profile/weapons/md/ROCKET_v2014082702.0.png\"/>\r\n
141
+ \ <div class=\"col_weapon\">Rocket Launcher</div>\r\n <div
142
+ class=\"col_frags\">6,015</div>\r\n <div
143
+ class=\"col_accuracy\" title=\"38,629 / 108,733 (35.53%)\"><span class=\"text_tooltip\">36%</span></div>\r\n
146
144
  \ <div class=\"col_usage\">39%</div>\r\n
147
145
  \ <div class=\"cl\"></div>\r\n </p>\r\n <p
148
- class=\"prf_row2\">\r\n <img class=\"fl\" src=\"http://cdn.quakelive.com/web/2014080602/images/profile/weapons/md/LIGHTNING_v2014080602.0.png\"
149
- width=\"27\" height=\"27\" alt=\"\" />\r\n <div class=\"col_weapon\">Lightning
150
- Gun</div>\r\n <div class=\"col_frags\">3,623</div>\r\n
151
- \ <div class=\"col_accuracy\" title=\"Hits:
152
- 132,932 Shots: 463,562\"><span class=\"text_tooltip\">29%</span></div>\r\n
146
+ class=\"prf_row2\">\r\n <img class=\"fl\" src=\"http://cdn.quakelive.com/web/2014082702/images/profile/weapons/md/LIGHTNING_v2014082702.0.png\"/>\r\n
147
+ \ <div class=\"col_weapon\">Lightning Gun</div>\r\n <div
148
+ class=\"col_frags\">3,623</div>\r\n <div
149
+ class=\"col_accuracy\" title=\"132,932 / 463,562 (28.68%)\"><span class=\"text_tooltip\">29%</span></div>\r\n
153
150
  \ <div class=\"col_usage\">19%</div>\r\n
154
151
  \ <div class=\"cl\"></div>\r\n </p>\r\n <p
155
- class=\"prf_row1\">\r\n <img class=\"fl\" src=\"http://cdn.quakelive.com/web/2014080602/images/profile/weapons/md/RAILGUN_v2014080602.0.png\"
156
- width=\"27\" height=\"27\" alt=\"\" />\r\n <div class=\"col_weapon\">Railgun</div>\r\n
157
- \ <div class=\"col_frags\">3,155</div>\r\n <div
158
- class=\"col_accuracy\" title=\"Hits: 11,023 Shots: 28,279\"><span class=\"text_tooltip\">39%</span></div>\r\n
152
+ class=\"prf_row1\">\r\n <img class=\"fl\" src=\"http://cdn.quakelive.com/web/2014082702/images/profile/weapons/md/RAILGUN_v2014082702.0.png\"/>\r\n
153
+ \ <div class=\"col_weapon\">Railgun</div>\r\n <div
154
+ class=\"col_frags\">3,155</div>\r\n <div
155
+ class=\"col_accuracy\" title=\"11,023 / 28,279 (38.98%)\"><span class=\"text_tooltip\">39%</span></div>\r\n
159
156
  \ <div class=\"col_usage\">18%</div>\r\n
160
157
  \ <div class=\"cl\"></div>\r\n </p>\r\n <p
161
- class=\"prf_row2\">\r\n <img class=\"fl\" src=\"http://cdn.quakelive.com/web/2014080602/images/profile/weapons/md/PLASMA_v2014080602.0.png\"
162
- width=\"27\" height=\"27\" alt=\"\" />\r\n <div class=\"col_weapon\">Plasma
163
- Gun</div>\r\n <div class=\"col_frags\">1,117</div>\r\n
164
- \ <div class=\"col_accuracy\" title=\"Hits:
165
- 15,220 Shots: 110,780\"><span class=\"text_tooltip\">14%</span></div>\r\n
158
+ class=\"prf_row2\">\r\n <img class=\"fl\" src=\"http://cdn.quakelive.com/web/2014082702/images/profile/weapons/md/PLASMA_v2014082702.0.png\"/>\r\n
159
+ \ <div class=\"col_weapon\">Plasma Gun</div>\r\n <div
160
+ class=\"col_frags\">1,117</div>\r\n <div
161
+ class=\"col_accuracy\" title=\"15,220 / 110,780 (13.74%)\"><span class=\"text_tooltip\">14%</span></div>\r\n
166
162
  \ <div class=\"col_usage\">6%</div>\r\n
167
163
  \ <div class=\"cl\"></div>\r\n </p>\r\n <p
168
- class=\"prf_row1\">\r\n <img class=\"fl\" src=\"http://cdn.quakelive.com/web/2014080602/images/profile/weapons/md/BFG_v2014080602.0.png\"
169
- width=\"27\" height=\"27\" alt=\"\" />\r\n <div class=\"col_weapon\">BFG</div>\r\n
170
- \ <div class=\"col_frags\">7</div>\r\n <div
171
- class=\"col_accuracy\" title=\"Hits: 40 Shots: 77\"><span class=\"text_tooltip\">52%</span></div>\r\n
172
- \ <div class=\"col_usage\">0%</div>\r\n
173
- \ <div class=\"cl\"></div>\r\n </p>\r\n <p
174
- class=\"prf_row2\">\r\n <img class=\"fl\" src=\"http://cdn.quakelive.com/web/2014080602/images/profile/weapons/md/CHAINGUN_v2014080602.0.png\"
175
- width=\"27\" height=\"27\" alt=\"\" />\r\n <div class=\"col_weapon\">Chaingun</div>\r\n
176
- \ <div class=\"col_frags\">55</div>\r\n <div
177
- class=\"col_accuracy\" title=\"Hits: 1,398 Shots: 6,275\"><span class=\"text_tooltip\">22%</span></div>\r\n
178
- \ <div class=\"col_usage\">0%</div>\r\n
179
- \ <div class=\"cl\"></div>\r\n </p>\r\n <p
180
- class=\"prf_row1\">\r\n <img class=\"fl\" src=\"http://cdn.quakelive.com/web/2014080602/images/profile/weapons/md/NAILGUN_v2014080602.0.png\"
181
- width=\"27\" height=\"27\" alt=\"\" />\r\n <div class=\"col_weapon\">Nailgun</div>\r\n
182
- \ <div class=\"col_frags\">22</div>\r\n <div
183
- class=\"col_accuracy\" title=\"Hits: 499 Shots: 3,615\"><span class=\"text_tooltip\">14%</span></div>\r\n
164
+ class=\"prf_row1\">\r\n <img class=\"fl\" src=\"http://cdn.quakelive.com/web/2014082702/images/profile/weapons/md/HMG_v2014082702.0.png\"/>\r\n
165
+ \ <div class=\"col_weapon\">Heavy Machinegun</div>\r\n <div
166
+ class=\"col_frags\">0</div>\r\n <div
167
+ class=\"col_accuracy\" title=\"0 / 0 (0.00%)\"><span class=\"text_tooltip\">0%</span></div>\r\n
184
168
  \ <div class=\"col_usage\">0%</div>\r\n
185
169
  \ <div class=\"cl\"></div>\r\n </p>\r\n <p
186
- class=\"prf_row2\">\r\n <img class=\"fl\" src=\"http://cdn.quakelive.com/web/2014080602/images/profile/weapons/md/PROXMINE_v2014080602.0.png\"
187
- width=\"27\" height=\"27\" alt=\"\" />\r\n <div class=\"col_weapon\">Proximity
188
- Mine</div>\r\n <div class=\"col_frags\">7</div>\r\n <div
189
- class=\"col_accuracy\" title=\"Hits: 40 Shots: 164\"><span class=\"text_tooltip\">24%</span></div>\r\n
170
+ class=\"prf_row2\">\r\n <img class=\"fl\" src=\"http://cdn.quakelive.com/web/2014082702/images/profile/weapons/md/BFG_v2014082702.0.png\"/>\r\n
171
+ \ <div class=\"col_weapon\">BFG</div>\r\n <div
172
+ class=\"col_frags\">7</div>\r\n <div
173
+ class=\"col_accuracy\" title=\"40 / 77 (51.95%)\"><span class=\"text_tooltip\">52%</span></div>\r\n
190
174
  \ <div class=\"col_usage\">0%</div>\r\n
191
175
  \ <div class=\"cl\"></div>\r\n </p>\r\n <p
192
176
  class=\"prf_row2\"></p>\r\n </div>\r\n </div>\n\n <div
193
177
  class=\"cl\"></div>\n\n <div id=\"qlv_profileMiddle\" class=\"statistics\">\n
194
178
  \ <div id=\"qlv_profileMiddleContent\">\n <img
195
- src=\"http://cdn.quakelive.com/web/2014080602/images/profile/titles/ttl_last10matches_v2014080602.0.png\"
196
- class=\"prf_title fl\" />\r\n <!--<img src=\"http://cdn.quakelive.com/web/2014080602/images/profile/titles/ttl_viewmore_v2014080602.0.png\"
179
+ src=\"http://cdn.quakelive.com/web/2014082702/images/profile/titles/ttl_last10matches_v2014082702.0.png\"
180
+ class=\"prf_title fl\" />\r\n <!--<img src=\"http://cdn.quakelive.com/web/2014082702/images/profile/titles/ttl_viewmore_v2014082702.0.png\"
197
181
  alt=\"Recent Matches\" width=\"80\" height=\"8\" style=\"float: right; margin-top:
198
182
  4px\" />-->\r\n <br />\r\n\r\n <div class=\"prf_last10matches\">\r\n
199
183
  \ <div style=\"margin: 12px; text-align:
200
- center;\">\r\n <a href=\"#!premium\"><img src=\"http://cdn.quakelive.com/web/2014080602/images/profile/premium_graphs_v2014080602.0.jpg\"
184
+ center;\">\r\n <a href=\"#!premium\"><img src=\"http://cdn.quakelive.com/web/2014082702/images/profile/premium_graphs_v2014082702.0.jpg\"
201
185
  class=\"\" /></a>\r\n </div>\r\n <div
202
186
  class=\"cl\"></div>\r\n <div class=\"block_left\">\r\n
203
187
  \ <div class=\"header\">\r\n <div
@@ -206,39 +190,39 @@ http_interactions:
206
190
  \ <div class=\"cl\"></div>\r\n </div>\r\n\r\n
207
191
  \ <div class=\"recent_match
208
192
  interactive firstrow\" id=\"duel_6e2a070c-b38e-11e3-858f-00259031fd90_1\">\r\n
209
- \ <div class=\"col_lm_gametype\">\r\n <img src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/xsm/duel_v2014080602.0.png\"
193
+ \ <div class=\"col_lm_gametype\">\r\n <img src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/xsm/duel_v2014082702.0.png\"
210
194
  class=\"fl\" width=\"16\" height=\"16\" />\r\n Blood Run\r\n </div>\r\n
211
195
  \ <div class=\"col_lm_placed\">\r\n Loss\r\n
212
196
  \ </div>\r\n <div class=\"col_lm_date\"
213
- title=\"03/24/2014 2:56 PM\">5 months ago</div>\r\n <div class=\"cl\"></div>\r\n</div>\r\n
197
+ title=\"03/24/2014 2:56 PM\">6 months ago</div>\r\n <div class=\"cl\"></div>\r\n</div>\r\n
214
198
  \ <div class=\"recent_match
215
199
  interactive \" id=\"ca_13cee78a-b381-11e3-858f-00259031fd90_1\">\r\n <div
216
- class=\"col_lm_gametype\">\r\n <img src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/xsm/ca_v2014080602.0.png\"
200
+ class=\"col_lm_gametype\">\r\n <img src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/xsm/ca_v2014082702.0.png\"
217
201
  class=\"fl\" width=\"16\" height=\"16\" />\r\n Realm of Steel Rats\r\n
218
202
  \ </div>\r\n <div class=\"col_lm_placed\">\r\n Win\r\n
219
203
  \ </div>\r\n <div class=\"col_lm_date\"
220
- title=\"03/24/2014 1:21 PM\">5 months ago</div>\r\n <div class=\"cl\"></div>\r\n</div>\r\n
204
+ title=\"03/24/2014 1:21 PM\">6 months ago</div>\r\n <div class=\"cl\"></div>\r\n</div>\r\n
221
205
  \ <div class=\"recent_match
222
206
  interactive \" id=\"duel_58588696-b06a-11e3-a6b2-00259031fd90_1\">\r\n <div
223
- class=\"col_lm_gametype\">\r\n <img src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/xsm/duel_v2014080602.0.png\"
207
+ class=\"col_lm_gametype\">\r\n <img src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/xsm/duel_v2014082702.0.png\"
224
208
  class=\"fl\" width=\"16\" height=\"16\" />\r\n Toxicity\r\n </div>\r\n
225
209
  \ <div class=\"col_lm_placed\">\r\n Loss\r\n
226
210
  \ </div>\r\n <div class=\"col_lm_date\"
227
- title=\"03/20/2014 3:00 PM\">5 months ago</div>\r\n <div class=\"cl\"></div>\r\n</div>\r\n
211
+ title=\"03/20/2014 3:00 PM\">6 months ago</div>\r\n <div class=\"cl\"></div>\r\n</div>\r\n
228
212
  \ <div class=\"recent_match
229
213
  interactive \" id=\"duel_cc2eb5ba-b068-11e3-a6b2-00259031fd90_1\">\r\n <div
230
- class=\"col_lm_gametype\">\r\n <img src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/xsm/duel_v2014080602.0.png\"
214
+ class=\"col_lm_gametype\">\r\n <img src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/xsm/duel_v2014082702.0.png\"
231
215
  class=\"fl\" width=\"16\" height=\"16\" />\r\n Campgrounds\r\n </div>\r\n
232
216
  \ <div class=\"col_lm_placed\">\r\n Loss\r\n
233
217
  \ </div>\r\n <div class=\"col_lm_date\"
234
- title=\"03/20/2014 2:49 PM\">5 months ago</div>\r\n <div class=\"cl\"></div>\r\n</div>\r\n
218
+ title=\"03/20/2014 2:49 PM\">6 months ago</div>\r\n <div class=\"cl\"></div>\r\n</div>\r\n
235
219
  \ <div class=\"recent_match
236
220
  interactive \" id=\"duel_1a41cc80-b067-11e3-a6b2-00259031fd90_1\">\r\n <div
237
- class=\"col_lm_gametype\">\r\n <img src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/xsm/duel_v2014080602.0.png\"
221
+ class=\"col_lm_gametype\">\r\n <img src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/xsm/duel_v2014082702.0.png\"
238
222
  class=\"fl\" width=\"16\" height=\"16\" />\r\n Cure\r\n </div>\r\n
239
223
  \ <div class=\"col_lm_placed\">\r\n Loss\r\n
240
224
  \ </div>\r\n <div class=\"col_lm_date\"
241
- title=\"03/20/2014 2:37 PM\">5 months ago</div>\r\n <div class=\"cl\"></div>\r\n</div>\r\n
225
+ title=\"03/20/2014 2:37 PM\">6 months ago</div>\r\n <div class=\"cl\"></div>\r\n</div>\r\n
242
226
  \ </div>\r\n\r\n <div
243
227
  class=\"block_right\">\r\n <div class=\"header\">\r\n
244
228
  \ <div class=\"col_lm_gametype\">Game Type / Arena</div>\r\n
@@ -246,46 +230,46 @@ http_interactions:
246
230
  \ <div class=\"col_lm_date\">Played</div>\r\n <div
247
231
  class=\"cl\"></div>\r\n </div>\r\n\r\n <div
248
232
  class=\"recent_match interactive firstrow\" id=\"duel_524a64ca-b062-11e3-a6b2-00259031fd90_1\">\r\n
249
- \ <div class=\"col_lm_gametype\">\r\n <img src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/xsm/duel_v2014080602.0.png\"
233
+ \ <div class=\"col_lm_gametype\">\r\n <img src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/xsm/duel_v2014082702.0.png\"
250
234
  class=\"fl\" width=\"16\" height=\"16\" />\r\n Blood Run\r\n </div>\r\n
251
235
  \ <div class=\"col_lm_placed\">\r\n Loss\r\n
252
236
  \ </div>\r\n <div class=\"col_lm_date\"
253
- title=\"03/20/2014 2:03 PM\">5 months ago</div>\r\n <div class=\"cl\"></div>\r\n</div>\r\n
237
+ title=\"03/20/2014 2:03 PM\">6 months ago</div>\r\n <div class=\"cl\"></div>\r\n</div>\r\n
254
238
  \ <div class=\"recent_match
255
239
  interactive \" id=\"duel_c4893388-b060-11e3-a6b2-00259031fd90_1\">\r\n <div
256
- class=\"col_lm_gametype\">\r\n <img src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/xsm/duel_v2014080602.0.png\"
240
+ class=\"col_lm_gametype\">\r\n <img src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/xsm/duel_v2014082702.0.png\"
257
241
  class=\"fl\" width=\"16\" height=\"16\" />\r\n Aerowalk\r\n </div>\r\n
258
242
  \ <div class=\"col_lm_placed\">\r\n Loss\r\n
259
243
  \ </div>\r\n <div class=\"col_lm_date\"
260
- title=\"03/20/2014 1:52 PM\">5 months ago</div>\r\n <div class=\"cl\"></div>\r\n</div>\r\n
244
+ title=\"03/20/2014 1:52 PM\">6 months ago</div>\r\n <div class=\"cl\"></div>\r\n</div>\r\n
261
245
  \ <div class=\"recent_match
262
246
  interactive \" id=\"tdm_6b913c42-b05d-11e3-a6b2-00259031fd90_1\">\r\n <div
263
- class=\"col_lm_gametype\">\r\n <img src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/xsm/tdm_v2014080602.0.png\"
247
+ class=\"col_lm_gametype\">\r\n <img src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/xsm/tdm_v2014082702.0.png\"
264
248
  class=\"fl\" width=\"16\" height=\"16\" />\r\n Campgrounds\r\n </div>\r\n
265
249
  \ <div class=\"col_lm_placed\">\r\n Win\r\n
266
250
  \ </div>\r\n <div class=\"col_lm_date\"
267
- title=\"03/20/2014 1:28 PM\">5 months ago</div>\r\n <div class=\"cl\"></div>\r\n</div>\r\n
251
+ title=\"03/20/2014 1:28 PM\">6 months ago</div>\r\n <div class=\"cl\"></div>\r\n</div>\r\n
268
252
  \ <div class=\"recent_match
269
253
  interactive \" id=\"tdm_e829106e-afa8-11e3-94a3-00259031fd90_1\">\r\n <div
270
- class=\"col_lm_gametype\">\r\n <img src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/xsm/tdm_v2014080602.0.png\"
254
+ class=\"col_lm_gametype\">\r\n <img src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/xsm/tdm_v2014082702.0.png\"
271
255
  class=\"fl\" width=\"16\" height=\"16\" />\r\n Grim Dungeons\r\n </div>\r\n
272
256
  \ <div class=\"col_lm_placed\">\r\n Loss\r\n
273
257
  \ </div>\r\n <div class=\"col_lm_date\"
274
- title=\"03/19/2014 3:56 PM\">5 months ago</div>\r\n <div class=\"cl\"></div>\r\n</div>\r\n
258
+ title=\"03/19/2014 3:56 PM\">6 months ago</div>\r\n <div class=\"cl\"></div>\r\n</div>\r\n
275
259
  \ <div class=\"recent_match
276
260
  interactive \" id=\"ft_8fa50e02-afa3-11e3-94a3-00259031fd90_1\">\r\n <div
277
- class=\"col_lm_gametype\">\r\n <img src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/xsm/ft_v2014080602.0.png\"
261
+ class=\"col_lm_gametype\">\r\n <img src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/xsm/ft_v2014082702.0.png\"
278
262
  class=\"fl\" width=\"16\" height=\"16\" />\r\n Almost Lost\r\n </div>\r\n
279
263
  \ <div class=\"col_lm_placed\">\r\n Win\r\n
280
264
  \ </div>\r\n <div class=\"col_lm_date\"
281
- title=\"03/19/2014 3:17 PM\">5 months ago</div>\r\n <div class=\"cl\"></div>\r\n</div>\r\n
265
+ title=\"03/19/2014 3:17 PM\">6 months ago</div>\r\n <div class=\"cl\"></div>\r\n</div>\r\n
282
266
  \ </div>\r\n\r\n <div
283
267
  class=\"cl\"></div>\r\n </div>\r\n \n </div>\n
284
- \ </div>\n </div>\n\n <img src=\"http://cdn.quakelive.com/web/2014080602/images/profile/profile_bot_divider_v2014080602.0.gif\"
268
+ \ </div>\n </div>\n\n <img src=\"http://cdn.quakelive.com/web/2014082702/images/profile/profile_bot_divider_v2014082702.0.gif\"
285
269
  width=\"670\" height=\"17\" />\n\n <div id=\"qlv_profileBottom\" class=\"qlv_profile_section_statistics\">\n
286
270
  \ <div id=\"qlv_profileBottomContent\">\n <div
287
271
  class=\"prf_record_header\">\n <div class=\"col_st_gametype\"><img
288
- src=\"http://cdn.quakelive.com/web/2014080602/images/profile/titles/ttl_record_v2014080602.0.png\"
272
+ src=\"http://cdn.quakelive.com/web/2014082702/images/profile/titles/ttl_record_v2014082702.0.png\"
289
273
  alt=\"Record\" width=\"66\" height=\"13\" class=\"prf_title\" /></div>\n <div
290
274
  class=\"col_st_played\">Played</div>\n <div class=\"col_st_finished\">Finished</div>\n
291
275
  \ <div class=\"col_st_wins\">Wins</div>\n <div
@@ -295,7 +279,7 @@ http_interactions:
295
279
  \ </div>\n \n <div class=\"prf_record\">\n
296
280
  \ <div >\n <div
297
281
  class=\"col_st_gametype\">\n <img
298
- src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/xsm/ca_v2014080602.0.png\"
282
+ src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/xsm/ca_v2014082702.0.png\"
299
283
  width=\"16\" height=\"16\" />\n Clan Arena\n
300
284
  \ <div class=\"cl\"></div>\n
301
285
  \ </div>\n <div class=\"col_st_played\">47</div>\n
@@ -306,7 +290,7 @@ http_interactions:
306
290
  href=\"javascript:;\">View</a></div>\n <div class=\"cl\"></div>\n
307
291
  \ </div>\n <div >\n <div
308
292
  class=\"col_st_gametype\">\n <img
309
- src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/xsm/ctf_v2014080602.0.png\"
293
+ src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/xsm/ctf_v2014082702.0.png\"
310
294
  width=\"16\" height=\"16\" />\n Capture The
311
295
  Flag\n <div class=\"cl\"></div>\n
312
296
  \ </div>\n <div class=\"col_st_played\">79</div>\n
@@ -317,7 +301,7 @@ http_interactions:
317
301
  href=\"javascript:;\">View</a></div>\n <div class=\"cl\"></div>\n
318
302
  \ </div>\n <div >\n <div
319
303
  class=\"col_st_gametype\">\n <img
320
- src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/xsm/ffa_v2014080602.0.png\"
304
+ src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/xsm/ffa_v2014082702.0.png\"
321
305
  width=\"16\" height=\"16\" />\n Free For All\n
322
306
  \ <div class=\"cl\"></div>\n
323
307
  \ </div>\n <div class=\"col_st_played\">53</div>\n
@@ -328,7 +312,7 @@ http_interactions:
328
312
  href=\"javascript:;\">View</a></div>\n <div class=\"cl\"></div>\n
329
313
  \ </div>\n <div >\n <div
330
314
  class=\"col_st_gametype\">\n <img
331
- src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/xsm/dom_v2014080602.0.png\"
315
+ src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/xsm/dom_v2014082702.0.png\"
332
316
  width=\"16\" height=\"16\" />\n Domination\n
333
317
  \ <div class=\"cl\"></div>\n
334
318
  \ </div>\n <div class=\"col_st_played\">92</div>\n
@@ -339,7 +323,7 @@ http_interactions:
339
323
  href=\"javascript:;\">View</a></div>\n <div class=\"cl\"></div>\n
340
324
  \ </div>\n <div >\n <div
341
325
  class=\"col_st_gametype\">\n <img
342
- src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/xsm/ft_v2014080602.0.png\"
326
+ src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/xsm/ft_v2014082702.0.png\"
343
327
  width=\"16\" height=\"16\" />\n Freeze Tag\n
344
328
  \ <div class=\"cl\"></div>\n
345
329
  \ </div>\n <div class=\"col_st_played\">77</div>\n
@@ -350,7 +334,7 @@ http_interactions:
350
334
  href=\"javascript:;\">View</a></div>\n <div class=\"cl\"></div>\n
351
335
  \ </div>\n <div >\n <div
352
336
  class=\"col_st_gametype\">\n <img
353
- src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/xsm/harvester_v2014080602.0.png\"
337
+ src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/xsm/harvester_v2014082702.0.png\"
354
338
  width=\"16\" height=\"16\" />\n Harvester\n
355
339
  \ <div class=\"cl\"></div>\n
356
340
  \ </div>\n <div class=\"col_st_played\">3</div>\n
@@ -361,7 +345,7 @@ http_interactions:
361
345
  href=\"javascript:;\">View</a></div>\n <div class=\"cl\"></div>\n
362
346
  \ </div>\n <div >\n <div
363
347
  class=\"col_st_gametype\">\n <img
364
- src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/xsm/tdm_v2014080602.0.png\"
348
+ src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/xsm/tdm_v2014082702.0.png\"
365
349
  width=\"16\" height=\"16\" />\n Team Deathmatch\n
366
350
  \ <div class=\"cl\"></div>\n
367
351
  \ </div>\n <div class=\"col_st_played\">162</div>\n
@@ -372,7 +356,7 @@ http_interactions:
372
356
  href=\"javascript:;\">View</a></div>\n <div class=\"cl\"></div>\n
373
357
  \ </div>\n <div >\n <div
374
358
  class=\"col_st_gametype\">\n <img
375
- src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/xsm/duel_v2014080602.0.png\"
359
+ src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/xsm/duel_v2014082702.0.png\"
376
360
  width=\"16\" height=\"16\" />\n Duel\n <div
377
361
  class=\"cl\"></div>\n </div>\n <div
378
362
  class=\"col_st_played\">593</div>\n <div class=\"col_st_finished\">560</div>\n
@@ -392,7 +376,7 @@ http_interactions:
392
376
  class=\"col_st_view\"><a href=\"javascript:;\">View</a></div>\n <div
393
377
  class=\"cl\"></div>\n </div>\n </div>\n
394
378
  \ </div>\n </div>\n\n <div id=\"qlv_profileTiers\" class=\"qlv_profile_section_tiers\">\n
395
- \ <div id=\"qlv_profileBottomContent\">\n <img src=\"http://cdn.quakelive.com/web/2014080602/images/profile/titles/ttl_skill_v2014080602.0.png\"
379
+ \ <div id=\"qlv_profileBottomContent\">\n <img src=\"http://cdn.quakelive.com/web/2014082702/images/profile/titles/ttl_skill_v2014082702.0.png\"
396
380
  alt=\"Skill Level\" class=\"prf_title\" />\r\n<div class=\"tier_container\">\r\n
397
381
  \ <div class=\"tier_graph\">\r\n <div class=\"bars\">\r\n <div
398
382
  class=\"bar gray\" style=\"height: 100%; left:0px;\"></div>\r\n <div
@@ -405,25 +389,25 @@ http_interactions:
405
389
  class=\"bar gray\" style=\"height: 100%; left:259px;\"></div>\r\n <div
406
390
  class=\"bar gray\" style=\"height: 100%; left:296px;\"></div>\r\n <div
407
391
  class=\"bar \" style=\"height: 100%; left:333px;\"></div>\r\n </div>\r\n
408
- \ <div class=\"keys\">\r\n <img src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/sm/fctf_v2014080602.0.png\"
392
+ \ <div class=\"keys\">\r\n <img src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/sm/fctf_v2014082702.0.png\"
409
393
  width=\"28\" height=\"28\" style=\"left:0px;\" title=\"1 Flag CTF\" class=\"tier_gt_fctf\"/>\r\n
410
- \ <img src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/sm/ctf_v2014080602.0.png\"
394
+ \ <img src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/sm/ctf_v2014082702.0.png\"
411
395
  width=\"28\" height=\"28\" style=\"left:37px;\" title=\"Capture The Flag\"
412
- class=\"tier_gt_ctf\"/>\r\n <img src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/sm/ca_v2014080602.0.png\"
396
+ class=\"tier_gt_ctf\"/>\r\n <img src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/sm/ca_v2014082702.0.png\"
413
397
  width=\"28\" height=\"28\" style=\"left:74px;\" title=\"Clan Arena\" class=\"tier_gt_ca\"/>\r\n
414
- \ <img src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/sm/dom_v2014080602.0.png\"
398
+ \ <img src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/sm/dom_v2014082702.0.png\"
415
399
  width=\"28\" height=\"28\" style=\"left:111px;\" title=\"Domination\" class=\"tier_gt_dom\"/>\r\n
416
- \ <img src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/sm/duel_v2014080602.0.png\"
400
+ \ <img src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/sm/duel_v2014082702.0.png\"
417
401
  width=\"28\" height=\"28\" style=\"left:148px;\" title=\"Duel\" class=\"tier_gt_duel\"/>\r\n
418
- \ <img src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/sm/ffa_v2014080602.0.png\"
402
+ \ <img src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/sm/ffa_v2014082702.0.png\"
419
403
  width=\"28\" height=\"28\" style=\"left:185px;\" title=\"Free For All\" class=\"tier_gt_ffa\"/>\r\n
420
- \ <img src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/sm/ft_v2014080602.0.png\"
404
+ \ <img src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/sm/ft_v2014082702.0.png\"
421
405
  width=\"28\" height=\"28\" style=\"left:222px;\" title=\"Freeze Tag\" class=\"tier_gt_ft\"/>\r\n
422
- \ <img src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/sm/harvester_v2014080602.0.png\"
406
+ \ <img src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/sm/harvester_v2014082702.0.png\"
423
407
  width=\"28\" height=\"28\" style=\"left:259px;\" title=\"Harvester\" class=\"tier_gt_harvester\"/>\r\n
424
- \ <img src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/sm/race_v2014080602.0.png\"
408
+ \ <img src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/sm/race_v2014082702.0.png\"
425
409
  width=\"28\" height=\"28\" style=\"left:296px;\" title=\"Race\" class=\"tier_gt_race\"/>\r\n
426
- \ <img src=\"http://cdn.quakelive.com/web/2014080602/images/gametypes/sm/tdm_v2014080602.0.png\"
410
+ \ <img src=\"http://cdn.quakelive.com/web/2014082702/images/gametypes/sm/tdm_v2014082702.0.png\"
427
411
  width=\"28\" height=\"28\" style=\"left:333px;\" title=\"Team Death Match\"
428
412
  class=\"tier_gt_tdm\"/>\r\n </div>\r\n </div>\r\n <div
429
413
  class=\"tier_desc\">\r\n <p><b>Tier 4: Veteran</b></p>\r\n <p><b>Tier
@@ -434,5 +418,5 @@ http_interactions:
434
418
  games played for skill matching.</p></div>\n </div>\n </div>\n
435
419
  \ </div>"
436
420
  http_version:
437
- recorded_at: Mon, 18 Aug 2014 10:35:17 GMT
438
- recorded_with: VCR 2.8.0
421
+ recorded_at: Tue, 09 Sep 2014 17:36:56 GMT
422
+ recorded_with: VCR 2.9.2
@@ -23,10 +23,8 @@ describe "QuakeliveApi::Profile::Statistics" do
23
23
  ['Lightning Gun', 2048, 28, 84326, 304674, 15],
24
24
  ['Railgun', 2368, 38, 8339, 21946, 19],
25
25
  ['Plasma Gun', 708, 13, 10253, 77655, 5],
26
- ['BFG', 4, 49, 26, 53, 0],
27
- ['Chaingun', 37, 21, 1111, 5358, 0],
28
- ['Nailgun', 18, 13, 466, 3495, 0],
29
- ['Proximity Mine', 7, 24, 40, 164, 0]
26
+ ['Heavy Machinegun', 0, 0, 0, 0, 0],
27
+ ['BFG', 4, 49, 26, 53, 0]
30
28
  ].each_with_index do |weapon, index|
31
29
  expected_weapon = QuakeliveApi::Items::Weapon.new(*weapon)
32
30
  current_weapon = subject.weapons[index]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quakelive_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rafal Wojsznis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-21 00:00:00.000000000 Z
11
+ date: 2014-09-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri