onebox 1.5.65 → 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/onebox/engine.rb +1 -1
- data/lib/onebox/engine/standard_embed.rb +6 -1
- data/lib/onebox/engine/vimeo_onebox.rb +20 -0
- data/lib/onebox/engine/xkcd_onebox.rb +11 -11
- data/lib/onebox/version.rb +1 -1
- data/templates/xkcd.mustache +5 -8
- metadata +3 -7
- data/lib/onebox/engine/steam_store_widget_onebox.rb +0 -29
- data/spec/fixtures/steamstorewidget.response +0 -1993
- data/spec/lib/onebox/engine/steam_store_widget_onebox_spec.rb +0 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0a56361faf38f5ef5c257e8deacb24b55918efa1
|
4
|
+
data.tar.gz: b5a00d0b2b942a074e480cb20e314a5b9db31772
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a50be5b46fcfc5025c58660b0dd6f319d5159fc873687b1854c4ac6cd8be2ff859d3b6161c94df1a816be8989258a81ae458866fc96db7c56f8930b2d227a75
|
7
|
+
data.tar.gz: f0c1d152ba8896ad2d08beb261d114084222e99568c5a51fda330172e2fb740d85fa60a10be9760bec279980e28c156e6807ebe5b116a9df0bbaa74380ff494c
|
data/lib/onebox/engine.rb
CHANGED
@@ -161,9 +161,9 @@ require_relative "engine/whitelisted_generic_onebox"
|
|
161
161
|
require_relative "engine/pubmed_onebox"
|
162
162
|
require_relative "engine/soundcloud_onebox"
|
163
163
|
require_relative "engine/imgur_onebox"
|
164
|
-
require_relative "engine/steam_store_widget_onebox"
|
165
164
|
require_relative "engine/pastebin_onebox"
|
166
165
|
require_relative "engine/slides_onebox"
|
167
166
|
require_relative "engine/xkcd_onebox"
|
168
167
|
require_relative "engine/giphy_onebox"
|
169
168
|
require_relative "engine/gfycat_onebox"
|
169
|
+
require_relative "engine/vimeo_onebox"
|
@@ -67,7 +67,12 @@ module Onebox
|
|
67
67
|
|
68
68
|
return {} if Onebox::Helpers.blank?(oembed_url)
|
69
69
|
|
70
|
-
Onebox::Helpers.symbolize_keys(::MultiJson.load(Onebox::Helpers.fetch_response(oembed_url).body))
|
70
|
+
oe = Onebox::Helpers.symbolize_keys(::MultiJson.load(Onebox::Helpers.fetch_response(oembed_url).body))
|
71
|
+
|
72
|
+
# never use oembed from WordPress 4.4 (it's broken)
|
73
|
+
oe.delete(:html) if oe[:html] && oe[:html]["wp-embedded-content"]
|
74
|
+
|
75
|
+
oe
|
71
76
|
rescue Errno::ECONNREFUSED, Net::HTTPError, MultiJson::LoadError
|
72
77
|
{}
|
73
78
|
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
module Onebox
|
2
|
+
module Engine
|
3
|
+
class VimeoOnebox
|
4
|
+
include Engine
|
5
|
+
include StandardEmbed
|
6
|
+
|
7
|
+
matches_regexp(/^https?:\/\/(www\.)?vimeo\.com\/\d+$/)
|
8
|
+
always_https
|
9
|
+
|
10
|
+
def placeholder_html
|
11
|
+
oembed = get_oembed
|
12
|
+
"<img src='#{oembed[:thumbnail_url]}' width='#{oembed[:thumbnail_width]}' height='#{oembed[:thumbnail_height]}'>"
|
13
|
+
end
|
14
|
+
|
15
|
+
def to_html
|
16
|
+
get_oembed[:html]
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -13,18 +13,18 @@ module Onebox
|
|
13
13
|
|
14
14
|
private
|
15
15
|
|
16
|
-
|
17
|
-
|
18
|
-
|
16
|
+
def match
|
17
|
+
@match ||= @url.match(%{xkcd\.com/(?<comic_id>\\d+)})
|
18
|
+
end
|
19
19
|
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
20
|
+
def data
|
21
|
+
{
|
22
|
+
link: @url,
|
23
|
+
title: raw['safe_title'],
|
24
|
+
image: raw['img'],
|
25
|
+
description: raw['alt']
|
26
|
+
}
|
27
|
+
end
|
28
28
|
end
|
29
29
|
end
|
30
30
|
end
|
data/lib/onebox/version.rb
CHANGED
data/templates/xkcd.mustache
CHANGED
@@ -1,8 +1,5 @@
|
|
1
|
-
<
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
<p>{{description}}</p>
|
7
|
-
</a>
|
8
|
-
</div>
|
1
|
+
<h3><a href='{{{link}}}' target='_blank'>{{title}}</a></h3>
|
2
|
+
|
3
|
+
<img src="{{image}}" />
|
4
|
+
|
5
|
+
<p>{{description}}</p>
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: onebox
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joanna Zeta
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2016-11-
|
13
|
+
date: 2016-11-28 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: multi_json
|
@@ -324,9 +324,9 @@ files:
|
|
324
324
|
- lib/onebox/engine/soundcloud_onebox.rb
|
325
325
|
- lib/onebox/engine/stack_exchange_onebox.rb
|
326
326
|
- lib/onebox/engine/standard_embed.rb
|
327
|
-
- lib/onebox/engine/steam_store_widget_onebox.rb
|
328
327
|
- lib/onebox/engine/twitter_status_onebox.rb
|
329
328
|
- lib/onebox/engine/video_onebox.rb
|
329
|
+
- lib/onebox/engine/vimeo_onebox.rb
|
330
330
|
- lib/onebox/engine/whitelisted_generic_onebox.rb
|
331
331
|
- lib/onebox/engine/wikipedia_onebox.rb
|
332
332
|
- lib/onebox/engine/xkcd_onebox.rb
|
@@ -361,7 +361,6 @@ files:
|
|
361
361
|
- spec/fixtures/slides.response
|
362
362
|
- spec/fixtures/stackexchange-answer.response
|
363
363
|
- spec/fixtures/stackexchange-question.response
|
364
|
-
- spec/fixtures/steamstorewidget.response
|
365
364
|
- spec/fixtures/twitterstatus.response
|
366
365
|
- spec/fixtures/video.response
|
367
366
|
- spec/fixtures/wikipedia.response
|
@@ -387,7 +386,6 @@ files:
|
|
387
386
|
- spec/lib/onebox/engine/pubmed_onebox_spec.rb
|
388
387
|
- spec/lib/onebox/engine/slides_onebox_spec.rb
|
389
388
|
- spec/lib/onebox/engine/stack_exchange_onebox_spec.rb
|
390
|
-
- spec/lib/onebox/engine/steam_store_widget_onebox_spec.rb
|
391
389
|
- spec/lib/onebox/engine/twitter_status_onebox_spec.rb
|
392
390
|
- spec/lib/onebox/engine/video_onebox_spec.rb
|
393
391
|
- spec/lib/onebox/engine/whitelisted_generic_onebox_spec.rb
|
@@ -467,7 +465,6 @@ test_files:
|
|
467
465
|
- spec/fixtures/slides.response
|
468
466
|
- spec/fixtures/stackexchange-answer.response
|
469
467
|
- spec/fixtures/stackexchange-question.response
|
470
|
-
- spec/fixtures/steamstorewidget.response
|
471
468
|
- spec/fixtures/twitterstatus.response
|
472
469
|
- spec/fixtures/video.response
|
473
470
|
- spec/fixtures/wikipedia.response
|
@@ -493,7 +490,6 @@ test_files:
|
|
493
490
|
- spec/lib/onebox/engine/pubmed_onebox_spec.rb
|
494
491
|
- spec/lib/onebox/engine/slides_onebox_spec.rb
|
495
492
|
- spec/lib/onebox/engine/stack_exchange_onebox_spec.rb
|
496
|
-
- spec/lib/onebox/engine/steam_store_widget_onebox_spec.rb
|
497
493
|
- spec/lib/onebox/engine/twitter_status_onebox_spec.rb
|
498
494
|
- spec/lib/onebox/engine/video_onebox_spec.rb
|
499
495
|
- spec/lib/onebox/engine/whitelisted_generic_onebox_spec.rb
|
@@ -1,29 +0,0 @@
|
|
1
|
-
module Onebox
|
2
|
-
module Engine
|
3
|
-
class SteamStoreWidgetOnebox
|
4
|
-
include Engine
|
5
|
-
|
6
|
-
matches_regexp(/^(https?:\/\/)?([\da-z\.-]+)(steampowered.com\/)(.)+\/?$/)
|
7
|
-
|
8
|
-
# DoTheSimplestThingThatCouldPossiblyWork
|
9
|
-
def to_html
|
10
|
-
# Use the Steam support iframe widget over https
|
11
|
-
widget_url = @url.gsub('/app/','/widget/')
|
12
|
-
widget_url = widget_url.gsub('http:','https:')
|
13
|
-
"<iframe class='steamstorewidget' src='#{widget_url}' frameborder='0' width='100%' height='190'></iframe>"
|
14
|
-
rescue
|
15
|
-
@url
|
16
|
-
end
|
17
|
-
|
18
|
-
# Placeholder is called at each interaction with editor, so do something less iframey
|
19
|
-
def placeholder_html
|
20
|
-
widget_url = @url.gsub('/app/','/widget/')
|
21
|
-
widget_url = widget_url.gsub('http:','https:')
|
22
|
-
"<div style='width:100%; height:190px; display:block; background-color:black; color:white;'><div style='padding:10px;'><h2>Steam Store Widget onebox preview for: #{widget_url}</h2><p>Will be replaced with the real listing when posted.</p></div></div>"
|
23
|
-
rescue
|
24
|
-
@url
|
25
|
-
end
|
26
|
-
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
@@ -1,1993 +0,0 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<html class=" responsive">
|
3
|
-
<head>
|
4
|
-
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
-
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
-
<meta name="theme-color" content="#171a21">
|
7
|
-
<title>Counter-Strike on Steam</title>
|
8
|
-
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
9
|
-
|
10
|
-
<link href="http://store.akamai.steamstatic.com/public/shared/css/motiva_sans.css?v=ful_LJT3NQYl" rel="stylesheet" type="text/css" >
|
11
|
-
<link href="http://store.akamai.steamstatic.com/public/shared/css/shared_global.css?v=XwLMvvR6Hpnl" rel="stylesheet" type="text/css" >
|
12
|
-
<link href="http://store.akamai.steamstatic.com/public/shared/css/buttons.css?v=ZQhT8EbnYTgW" rel="stylesheet" type="text/css" >
|
13
|
-
<link href="http://store.akamai.steamstatic.com/public/css/v6/store.css?v=MT0GwmrbPrhr" rel="stylesheet" type="text/css" >
|
14
|
-
<link href="http://store.akamai.steamstatic.com/public/shared/css/user_reviews.css?v=eK35SdE11BqT" rel="stylesheet" type="text/css" >
|
15
|
-
<link href="http://store.akamai.steamstatic.com/public/shared/css/store_game_shared.css?v=nP6_Ej917_PN" rel="stylesheet" type="text/css" >
|
16
|
-
<link href="http://store.akamai.steamstatic.com/public/css/v6/game.css?v=MKzWOukgyJ0L" rel="stylesheet" type="text/css" >
|
17
|
-
<link href="http://store.akamai.steamstatic.com/public/css/v6/recommended.css?v=n1NdgwXfCZ2v" rel="stylesheet" type="text/css" >
|
18
|
-
<link href="http://store.akamai.steamstatic.com/public/shared/css/apphub.css?v=pCG6EHTy9byu" rel="stylesheet" type="text/css" >
|
19
|
-
<link href="http://store.akamai.steamstatic.com/public/shared/css/shared_responsive.css?v=iSK--wZgU4aG" rel="stylesheet" type="text/css" >
|
20
|
-
<script type="text/javascript" src="http://store.akamai.steamstatic.com/public/shared/javascript/jquery-1.8.3.min.js?v=.TZ2NKhB-nliU"></script>
|
21
|
-
<script type="text/javascript">$J = jQuery.noConflict();</script><script type="text/javascript" src="http://store.akamai.steamstatic.com/public/shared/javascript/tooltip.js?v=.Oo26AiO9mMmw"></script>
|
22
|
-
|
23
|
-
<script type="text/javascript" src="http://store.akamai.steamstatic.com/public/shared/javascript/shared_global.js?v=b4cjEfbZq5lz&l=english"></script>
|
24
|
-
|
25
|
-
<script type="text/javascript" src="http://store.akamai.steamstatic.com/public/javascript/main.js?v=5moExUmr3uHw&l=english"></script>
|
26
|
-
|
27
|
-
<script type="text/javascript" src="http://store.akamai.steamstatic.com/public/javascript/dynamicstore.js?v=vfZ56HAz5ZHl&l=english"></script>
|
28
|
-
|
29
|
-
<script type="text/javascript" src="http://store.akamai.steamstatic.com/public/shared/javascript/jquery.appear.js?v=.rB2Jqew4q0oc"></script>
|
30
|
-
|
31
|
-
<script type="text/javascript">
|
32
|
-
jQuery(document).ready(function($) { $J.data( document, 'x_readytime', new Date().getTime() );
|
33
|
-
$J.data( document, 'x_oldref', GetNavCookie() );
|
34
|
-
$('.tooltip').v_tooltip();
|
35
|
-
window.BindStoreTooltip = function( $Selector ) { $Selector.v_tooltip( {'tooltipClass': 'store_tooltip', 'dataName': 'storeTooltip' } ); };
|
36
|
-
BindStoreTooltip( $('[data-store-tooltip]') );
|
37
|
-
});</script><script type="text/javascript">
|
38
|
-
var _gaq = _gaq || [];
|
39
|
-
_gaq.push(['_setAccount', 'UA-33786258-1']);
|
40
|
-
_gaq.push(['_setSampleRate', '0.4']);
|
41
|
-
_gaq.push(['_setCustomVar', 1, 'Logged In', 'false', 2]);
|
42
|
-
_gaq.push(['_setCustomVar', 2, 'Client Type', 'External', 2]);
|
43
|
-
_gaq.push(['_setCustomVar', 3, 'Cntrlr', 'application', 3]);
|
44
|
-
_gaq.push(['_setCustomVar', 4, 'Method', "application\/app", 3]);
|
45
|
-
_gaq.push(['_trackPageview']);
|
46
|
-
_gaq.push(['_setSessionCookieTimeout', 900000]);
|
47
|
-
(function() {
|
48
|
-
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
49
|
-
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
50
|
-
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
51
|
-
})();
|
52
|
-
</script>
|
53
|
-
<script type="text/javascript" src="http://store.akamai.steamstatic.com/public/javascript/gamehighlightplayer.js?v=tccSFOOLjEFb&l=english"></script>
|
54
|
-
<script type="text/javascript" src="http://store.akamai.steamstatic.com/public/shared/javascript/user_reviews.js?v=wElGfRd1klp0&l=english"></script>
|
55
|
-
<script type="text/javascript" src="http://store.akamai.steamstatic.com/public/shared/javascript/dselect.js?v=q0wkdRkQ1Ufj&l=english"></script>
|
56
|
-
<script type="text/javascript" src="http://store.akamai.steamstatic.com/public/javascript/app_tagging.js?v=4vf_qmcYxcYh&l=english"></script>
|
57
|
-
<script type="text/javascript" src="http://store.akamai.steamstatic.com/public/javascript/game.js?v=n3XSmAlBl_p2&l=english"></script>
|
58
|
-
<script type="text/javascript" src="http://store.akamai.steamstatic.com/public/javascript/swfobject.js?v=.IJPsm1EB98JP"></script>
|
59
|
-
<script type="text/javascript" src="http://store.akamai.steamstatic.com/public/shared/javascript/shared_responsive_adapter.js?v=0XUGZsS0zy0X&l=english"></script>
|
60
|
-
|
61
|
-
<meta name="Description" content="Play the world's number 1 online action game. Engage in an incredibly realistic brand of terrorist warfare in this wildly popular team-based game. Ally with teammates to complete strategic missions. Take out enemy sites. Rescue hostages. Your role affects your team's success. Your team's success affects your role.">
|
62
|
-
|
63
|
-
<link rel="canonical" href="http://store.steampowered.com/app/10/">
|
64
|
-
|
65
|
-
<link rel="image_src" href="http://cdn.akamai.steamstatic.com/steam/apps/10/header.jpg?t=1436833478">
|
66
|
-
|
67
|
-
|
68
|
-
</head>
|
69
|
-
<body class="v6 app game_bg responsive_page">
|
70
|
-
|
71
|
-
<div class="responsive_page_frame with_header">
|
72
|
-
|
73
|
-
<div class="responsive_page_menu_ctn mainmenu">
|
74
|
-
<div class="responsive_page_menu" id="responsive_page_menu">
|
75
|
-
<div class="mainmenu_contents">
|
76
|
-
<div class="mainmenu_contents_items">
|
77
|
-
<a class="menuitem" href="https://store.steampowered.com//login/?redir=app%2F10%2F">
|
78
|
-
Login </a>
|
79
|
-
|
80
|
-
<a class="menuitem supernav" href="http://store.steampowered.com/" data-tooltip-type="selector" data-tooltip-content=".submenu_store">
|
81
|
-
Store </a>
|
82
|
-
<div class="submenu_store" style="display: none;" data-submenuid="store">
|
83
|
-
<a class="submenuitem" href="http://store.steampowered.com/">Featured</a>
|
84
|
-
<a class="submenuitem" href="http://store.steampowered.com/explore/">Explore</a>
|
85
|
-
<a class="submenuitem" href="http://store.steampowered.com/curators/">Curators</a>
|
86
|
-
<a class="submenuitem" href="http://steamcommunity.com/my/wishlist/">Wishlist</a>
|
87
|
-
<a class="submenuitem" href="http://store.steampowered.com/news/">News</a>
|
88
|
-
<a class="submenuitem" href="http://store.steampowered.com/stats/">Stats</a>
|
89
|
-
</div>
|
90
|
-
|
91
|
-
|
92
|
-
<a class="menuitem supernav" style="display: block" href="http://steamcommunity.com/" data-tooltip-type="selector" data-tooltip-content=".submenu_community">
|
93
|
-
Community </a>
|
94
|
-
<div class="submenu_community" style="display: none;" data-submenuid="community">
|
95
|
-
<a class="submenuitem" href="http://steamcommunity.com/">Home</a>
|
96
|
-
<a class="submenuitem" href="http://steamcommunity.com/discussions/">Discussions</a>
|
97
|
-
<a class="submenuitem" href="http://steamcommunity.com/workshop/">Workshop</a>
|
98
|
-
<a class="submenuitem" href="http://steamcommunity.com/greenlight/">Greenlight</a>
|
99
|
-
<a class="submenuitem" href="http://steamcommunity.com/market/">Market</a>
|
100
|
-
<a class="submenuitem" href="http://steamcommunity.com/?subsection=broadcasts">Broadcasts</a>
|
101
|
-
</div>
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
<a class="menuitem" href="https://help.steampowered.com/">
|
108
|
-
Support </a>
|
109
|
-
|
110
|
-
<div class="minor_menu_items">
|
111
|
-
<div class="menuitem change_language_action">
|
112
|
-
Change language </div>
|
113
|
-
<div class="menuitem" onclick="Responsive_RequestDesktopView();">
|
114
|
-
View desktop website </div>
|
115
|
-
</div>
|
116
|
-
</div>
|
117
|
-
<div class="mainmenu_footer_spacer"></div>
|
118
|
-
<div class="mainmenu_footer">
|
119
|
-
<div class="mainmenu_footer_logo"><img src="http://store.akamai.steamstatic.com/public/shared/images/responsive/logo_valve_footer.png"></div>
|
120
|
-
© Valve Corporation. All rights reserved. All trademarks are property of their respective owners in the US and other countries. <span class="mainmenu_valve_links">
|
121
|
-
<a href="http://store.steampowered.com/privacy_agreement/" target="_blank">Privacy Policy</a>
|
122
|
-
| <a href="http://www.valvesoftware.com/legal.htm" target="_blank">Legal</a>
|
123
|
-
| <a href="http://store.steampowered.com/subscriber_agreement/" target="_blank">Steam Subscriber Agreement</a>
|
124
|
-
| <a href="http://store.steampowered.com/steam_refunds/" target="_blank">Refunds</a>
|
125
|
-
</span>
|
126
|
-
</div>
|
127
|
-
</div>
|
128
|
-
</div>
|
129
|
-
</div>
|
130
|
-
|
131
|
-
<div class="responsive_local_menu_tab" style="display: none;">
|
132
|
-
|
133
|
-
</div>
|
134
|
-
|
135
|
-
<div class="responsive_page_menu_ctn localmenu">
|
136
|
-
<div class="responsive_page_menu" id="responsive_page_local_menu">
|
137
|
-
<div class="localmenu_content">
|
138
|
-
</div>
|
139
|
-
</div>
|
140
|
-
</div>
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
<div class="responsive_header">
|
145
|
-
<div class="responsive_header_content">
|
146
|
-
<div id="responsive_menu_logo">
|
147
|
-
<img src="http://store.akamai.steamstatic.com/public/shared/images/responsive/header_menu_hamburger.png" height="100%">
|
148
|
-
</div>
|
149
|
-
<div id="responsive_beta_logo">
|
150
|
-
<img src="http://store.akamai.steamstatic.com/public/shared/images/responsive/header_menu_beta.png" height="100%">
|
151
|
-
</div>
|
152
|
-
<div class="responsive_header_logo">
|
153
|
-
<img src="http://store.akamai.steamstatic.com/public/shared/images/responsive/header_logo.png" height="36" border="0" alt="STEAM">
|
154
|
-
</div>
|
155
|
-
</div>
|
156
|
-
</div>
|
157
|
-
|
158
|
-
<div class="responsive_page_content_overlay">
|
159
|
-
|
160
|
-
</div>
|
161
|
-
|
162
|
-
<div class="responsive_fixonscroll_ctn nonresponsive_hidden ">
|
163
|
-
</div>
|
164
|
-
|
165
|
-
<div class="responsive_page_content">
|
166
|
-
|
167
|
-
<div id="global_header">
|
168
|
-
<div class="content">
|
169
|
-
|
170
|
-
<div class="logo">
|
171
|
-
<span id="logo_holder">
|
172
|
-
<a href="http://store.steampowered.com/">
|
173
|
-
<img src="http://store.akamai.steamstatic.com/public/shared/images/header/globalheader_logo.png" width="176" height="44">
|
174
|
-
</a>
|
175
|
-
</span>
|
176
|
-
<!--[if lt IE 7]>
|
177
|
-
<style type="text/css">
|
178
|
-
#logo_holder img { filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0); }
|
179
|
-
#logo_holder { display: inline-block; width: 176px; height: 44px; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://store.akamai.steamstatic.com/public/images/v5/globalheader_logo.png'); }
|
180
|
-
</style>
|
181
|
-
<![endif]-->
|
182
|
-
</div>
|
183
|
-
|
184
|
-
<div class="supernav_container">
|
185
|
-
<a class="menuitem supernav" href="http://store.steampowered.com/" data-tooltip-type="selector" data-tooltip-content=".submenu_store">
|
186
|
-
STORE </a>
|
187
|
-
<div class="submenu_store" style="display: none;" data-submenuid="store">
|
188
|
-
<a class="submenuitem" href="http://store.steampowered.com/">Featured</a>
|
189
|
-
<a class="submenuitem" href="http://store.steampowered.com/explore/">Explore</a>
|
190
|
-
<a class="submenuitem" href="http://store.steampowered.com/curators/">Curators</a>
|
191
|
-
<a class="submenuitem" href="http://steamcommunity.com/my/wishlist/">Wishlist</a>
|
192
|
-
<a class="submenuitem" href="http://store.steampowered.com/news/">News</a>
|
193
|
-
<a class="submenuitem" href="http://store.steampowered.com/stats/">Stats</a>
|
194
|
-
</div>
|
195
|
-
|
196
|
-
|
197
|
-
<a class="menuitem supernav" style="display: block" href="http://steamcommunity.com/" data-tooltip-type="selector" data-tooltip-content=".submenu_community">
|
198
|
-
COMMUNITY </a>
|
199
|
-
<div class="submenu_community" style="display: none;" data-submenuid="community">
|
200
|
-
<a class="submenuitem" href="http://steamcommunity.com/">Home</a>
|
201
|
-
<a class="submenuitem" href="http://steamcommunity.com/discussions/">Discussions</a>
|
202
|
-
<a class="submenuitem" href="http://steamcommunity.com/workshop/">Workshop</a>
|
203
|
-
<a class="submenuitem" href="http://steamcommunity.com/greenlight/">Greenlight</a>
|
204
|
-
<a class="submenuitem" href="http://steamcommunity.com/market/">Market</a>
|
205
|
-
<a class="submenuitem" href="http://steamcommunity.com/?subsection=broadcasts">Broadcasts</a>
|
206
|
-
</div>
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
<a class="menuitem" href="http://store.steampowered.com/about/">
|
212
|
-
ABOUT </a>
|
213
|
-
|
214
|
-
<a class="menuitem" href="https://help.steampowered.com/">
|
215
|
-
SUPPORT </a>
|
216
|
-
</div>
|
217
|
-
<script type="text/javascript">
|
218
|
-
jQuery(function($) {
|
219
|
-
$('.tooltip').v_tooltip();
|
220
|
-
$('#global_header .supernav').v_tooltip({'location':'bottom', 'tooltipClass': 'supernav_content', 'offsetY':-4, 'offsetX': 1, 'horizontalSnap': 4, 'tooltipParent': '#global_header .supernav_container', 'correctForScreenSize': false});
|
221
|
-
});
|
222
|
-
</script>
|
223
|
-
|
224
|
-
<div id="global_actions">
|
225
|
-
<div id="global_action_menu">
|
226
|
-
<div class="header_installsteam_btn header_installsteam_btn_green">
|
227
|
-
<div class="header_installsteam_btn_leftcap"></div>
|
228
|
-
<div class="header_installsteam_btn_rightcap"></div>
|
229
|
-
<a class="header_installsteam_btn_content" href="http://store.steampowered.com/about/">
|
230
|
-
Install Steam </a>
|
231
|
-
</div>
|
232
|
-
|
233
|
-
|
234
|
-
<a class="global_action_link" href="https://store.steampowered.com//login/?redir=app%2F10%2F">login</a>
|
235
|
-
|
|
236
|
-
<span class="pulldown global_action_link" id="language_pulldown" onclick="ShowMenu( this, 'language_dropdown', 'right' );">language</span>
|
237
|
-
<div class="popup_block_new" id="language_dropdown" style="display: none;">
|
238
|
-
<div class="popup_body popup_menu">
|
239
|
-
<a class="popup_menu_item tight" href="?l=bulgarian" onclick="ChangeLanguage( 'bulgarian' ); return false;">Български (Bulgarian)</a>
|
240
|
-
<a class="popup_menu_item tight" href="?l=czech" onclick="ChangeLanguage( 'czech' ); return false;">čeština (Czech)</a>
|
241
|
-
<a class="popup_menu_item tight" href="?l=danish" onclick="ChangeLanguage( 'danish' ); return false;">Dansk (Danish)</a>
|
242
|
-
<a class="popup_menu_item tight" href="?l=dutch" onclick="ChangeLanguage( 'dutch' ); return false;">Nederlands (Dutch)</a>
|
243
|
-
<a class="popup_menu_item tight" href="?l=finnish" onclick="ChangeLanguage( 'finnish' ); return false;">Suomi (Finnish)</a>
|
244
|
-
<a class="popup_menu_item tight" href="?l=french" onclick="ChangeLanguage( 'french' ); return false;">Français (French)</a>
|
245
|
-
<a class="popup_menu_item tight" href="?l=greek" onclick="ChangeLanguage( 'greek' ); return false;">Ελληνικά (Greek)</a>
|
246
|
-
<a class="popup_menu_item tight" href="?l=german" onclick="ChangeLanguage( 'german' ); return false;">Deutsch (German)</a>
|
247
|
-
<a class="popup_menu_item tight" href="?l=hungarian" onclick="ChangeLanguage( 'hungarian' ); return false;">Magyar (Hungarian)</a>
|
248
|
-
<a class="popup_menu_item tight" href="?l=italian" onclick="ChangeLanguage( 'italian' ); return false;">Italiano (Italian)</a>
|
249
|
-
<a class="popup_menu_item tight" href="?l=japanese" onclick="ChangeLanguage( 'japanese' ); return false;">日本語 (Japanese)</a>
|
250
|
-
<a class="popup_menu_item tight" href="?l=koreana" onclick="ChangeLanguage( 'koreana' ); return false;">한국어 (Korean)</a>
|
251
|
-
<a class="popup_menu_item tight" href="?l=norwegian" onclick="ChangeLanguage( 'norwegian' ); return false;">Norsk (Norwegian)</a>
|
252
|
-
<a class="popup_menu_item tight" href="?l=polish" onclick="ChangeLanguage( 'polish' ); return false;">Polski (Polish)</a>
|
253
|
-
<a class="popup_menu_item tight" href="?l=portuguese" onclick="ChangeLanguage( 'portuguese' ); return false;">Português (Portuguese)</a>
|
254
|
-
<a class="popup_menu_item tight" href="?l=brazilian" onclick="ChangeLanguage( 'brazilian' ); return false;">Português-Brasil (Portuguese-Brazil)</a>
|
255
|
-
<a class="popup_menu_item tight" href="?l=russian" onclick="ChangeLanguage( 'russian' ); return false;">Русский (Russian)</a>
|
256
|
-
<a class="popup_menu_item tight" href="?l=romanian" onclick="ChangeLanguage( 'romanian' ); return false;">Română (Romanian)</a>
|
257
|
-
<a class="popup_menu_item tight" href="?l=schinese" onclick="ChangeLanguage( 'schinese' ); return false;">简体中文 (Simplified Chinese)</a>
|
258
|
-
<a class="popup_menu_item tight" href="?l=spanish" onclick="ChangeLanguage( 'spanish' ); return false;">Español (Spanish)</a>
|
259
|
-
<a class="popup_menu_item tight" href="?l=swedish" onclick="ChangeLanguage( 'swedish' ); return false;">Svenska (Swedish)</a>
|
260
|
-
<a class="popup_menu_item tight" href="?l=tchinese" onclick="ChangeLanguage( 'tchinese' ); return false;">繁體中文 (Traditional Chinese)</a>
|
261
|
-
<a class="popup_menu_item tight" href="?l=thai" onclick="ChangeLanguage( 'thai' ); return false;">ไทย (Thai)</a>
|
262
|
-
<a class="popup_menu_item tight" href="?l=turkish" onclick="ChangeLanguage( 'turkish' ); return false;">Türkçe (Turkish)</a>
|
263
|
-
<a class="popup_menu_item tight" href="?l=ukrainian" onclick="ChangeLanguage( 'ukrainian' ); return false;">Українська (Ukrainian)</a>
|
264
|
-
<a class="popup_menu_item tight" href="http://translation.steampowered.com" target="_blank">Help us translate Steam</a>
|
265
|
-
</div>
|
266
|
-
</div>
|
267
|
-
</div>
|
268
|
-
</div>
|
269
|
-
</div>
|
270
|
-
</div>
|
271
|
-
<div id="responsive_store_nav_ctn"></div>
|
272
|
-
<div class="responsive_page_template_content">
|
273
|
-
|
274
|
-
<script type="text/javascript">
|
275
|
-
|
276
|
-
GStoreItemData.AddStoreItemData(
|
277
|
-
{"730":{"name":"Counter-Strike: Global Offensive","discount_block":"<div class=\"discount_block no_discount\"><div class=\"discount_prices no_discount\"><div class=\"discount_final_price\">CDN$ 16.99<\/div><\/div><\/div>","small_capsulev5":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/730\/capsule_184x69.jpg?t=1447694262","os_windows":true,"os_macos":true,"os_linux":true},"240":{"name":"Counter-Strike: Source","discount_block":"<div class=\"discount_block no_discount\"><div class=\"discount_prices no_discount\"><div class=\"discount_final_price\">CDN$ 21.99<\/div><\/div><\/div>","small_capsulev5":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/240\/capsule_184x69.jpg?t=1432755269","os_windows":true,"os_macos":true,"os_linux":true},"80":{"name":"Counter-Strike: Condition Zero","discount_block":"<div class=\"discount_block no_discount\"><div class=\"discount_prices no_discount\"><div class=\"discount_final_price\">CDN$ 10.99<\/div><\/div><\/div>","small_capsulev5":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/80\/capsule_184x69.jpg?t=1421369859","os_windows":true,"os_macos":true,"os_linux":true},"570":{"name":"Dota 2","discount_block":"<div class=\"discount_block no_discount\"><div class=\"discount_prices no_discount\"><div class=\"discount_final_price\">Free To Play<\/div><\/div><\/div>","small_capsulev5":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/570\/capsule_184x69.jpg?t=1446595222","os_windows":true,"os_macos":true,"os_linux":true},"20":{"name":"Team Fortress Classic","discount_block":"<div class=\"discount_block no_discount\"><div class=\"discount_prices no_discount\"><div class=\"discount_final_price\">CDN$ 5.49<\/div><\/div><\/div>","small_capsulev5":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/20\/capsule_184x69.jpg?t=1421369864","os_windows":true,"os_macos":true,"os_linux":true},"222880":{"name":"Insurgency","discount_block":"<div class=\"discount_block no_discount\"><div class=\"discount_prices no_discount\"><div class=\"discount_final_price\">CDN$ 16.99<\/div><\/div><\/div>","small_capsulev5":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/222880\/capsule_184x69.jpg?t=1447201409","os_windows":true,"os_macos":true,"os_linux":true},"24860":{"name":"Battlefield 2: Complete Collection","discount_block":"","small_capsulev5":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/24860\/capsule_184x69.jpg?t=1427136447","os_windows":true},"24960":{"name":"Battlefield: Bad Company\u2122 2","discount_block":"<div class=\"discount_block no_discount\"><div class=\"discount_prices no_discount\"><div class=\"discount_final_price\">CDN$ 19.99<\/div><\/div><\/div>","small_capsulev5":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/24960\/capsule_184x69.jpg?t=1406056953","os_windows":true},"282440":{"name":"Quake Live\u2122","discount_block":"<div class=\"discount_block no_discount\"><div class=\"discount_prices no_discount\"><div class=\"discount_final_price\">CDN$ 10.99<\/div><\/div><\/div>","small_capsulev5":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/282440\/capsule_184x69.jpg?t=1446085336","os_windows":true},"300":{"name":"Day of Defeat: Source","discount_block":"<div class=\"discount_block no_discount\"><div class=\"discount_prices no_discount\"><div class=\"discount_final_price\">CDN$ 10.99<\/div><\/div><\/div>","small_capsulev5":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/300\/capsule_184x69.jpg?t=1421369793","os_windows":true,"os_macos":true,"os_linux":true},"15120":{"name":"Tom Clancy's Rainbow Six\u00ae Vegas 2","discount_block":"<div class=\"discount_block no_discount\"><div class=\"discount_prices no_discount\"><div class=\"discount_final_price\">CDN$ 9.99<\/div><\/div><\/div>","small_capsulev5":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/15120\/capsule_184x69.jpg?t=1424795817","os_windows":true},"440":{"name":"Team Fortress 2","discount_block":"<div class=\"discount_block no_discount\"><div class=\"discount_prices no_discount\"><div class=\"discount_final_price\">Free to Play<\/div><\/div><\/div>","small_capsulev5":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/440\/capsule_184x69.jpg?t=1447797107","os_windows":true,"os_macos":true,"os_linux":true}},
|
278
|
-
{} );
|
279
|
-
GStoreItemData.AddNavParams( {
|
280
|
-
recommended: "1_5_9__300",
|
281
|
-
} );
|
282
|
-
|
283
|
-
$J( function() {
|
284
|
-
var $Expander = $J('#devnotes_expander');
|
285
|
-
if( $Expander.length && $Expander.height() < parseInt( $Expander.css('max-height') ) ) {
|
286
|
-
$J('#devnotes_more').hide();
|
287
|
-
}
|
288
|
-
|
289
|
-
|
290
|
-
InitAutocollapse();
|
291
|
-
InitHorizontalAutoSliders();
|
292
|
-
|
293
|
-
Responsive_ReparentItemsInResponsiveMode( '.responsive_apppage_details_right', $J('#responsive_apppage_details_right_ctn') );
|
294
|
-
Responsive_ReparentItemsInResponsiveMode( '.responsive_apppage_details_left', $J('#responsive_apppage_details_left_ctn') );
|
295
|
-
Responsive_ReparentItemsInResponsiveMode( '.responsive_apppage_reviewblock', $J('#responsive_apppage_reviewblock_ctn') );
|
296
|
-
|
297
|
-
//hack to workaround chrome bug
|
298
|
-
$J('#responsive_apppage_reviewblock_ctn' ).css('width', '100%' );
|
299
|
-
window.setTimeout( function() { $J('#responsive_apppage_reviewblock_ctn').css('width', '' ); }, 1 );
|
300
|
-
} );
|
301
|
-
GDynamicStore.OnReady( function() {
|
302
|
-
RenderMoreLikeThisBlock( ["730","240","80","570","20","222880","24860","24960","282440","300","15120","440"] );
|
303
|
-
});
|
304
|
-
|
305
|
-
|
306
|
-
</script>
|
307
|
-
|
308
|
-
<div class="game_page_background game" style="background-image: url('http://cdn.akamai.steamstatic.com/steam/apps/10/page_bg_generated_v6b.jpg?t=1436833478');">
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
<div id="store_header" class="">
|
313
|
-
<div class="content">
|
314
|
-
<div id="store_controls">
|
315
|
-
<div id="cart_status_data">
|
316
|
-
<div class="store_header_btn_green store_header_btn" id="store_header_cart_btn" style="display: none;">
|
317
|
-
<div class="store_header_btn_caps store_header_btn_leftcap"></div>
|
318
|
-
<div class="store_header_btn_caps store_header_btn_rightcap"></div>
|
319
|
-
<a id="cart_link" class="store_header_btn_content" href="http://store.steampowered.com/cart/?snr=1_5_9__12">
|
320
|
-
Cart (<span id="cart_item_count_value">0</span>)
|
321
|
-
</a>
|
322
|
-
</div>
|
323
|
-
</div>
|
324
|
-
</div>
|
325
|
-
<div id="store_nav_area">
|
326
|
-
<div class="store_nav_leftcap"></div>
|
327
|
-
<div class="store_nav_bg">
|
328
|
-
<div class="store_nav">
|
329
|
-
<a class="tab " href="http://store.steampowered.com/?snr=1_5_9__12">
|
330
|
-
<span>Featured Items</span>
|
331
|
-
</a>
|
332
|
-
<div class="tab flyout_tab " id="genre_tab" data-flyout="genre_flyout" data-flyout-align="left" data-flyout-valign="bottom">
|
333
|
-
<span class="pulldown">
|
334
|
-
<a class="pulldown_desktop" href="http://store.steampowered.com/search/?snr=1_5_9__12#sort_by=_ASC&category1=998&page=1&tags=-1">Games</a>
|
335
|
-
<a class="pulldown_mobile" href="#">Games</a>
|
336
|
-
<span></span>
|
337
|
-
</span>
|
338
|
-
</div>
|
339
|
-
<div class="popup_block_new flyout_tab_flyout responsive_slidedown" id="genre_flyout" style="display: none;">
|
340
|
-
<div class="popup_body popup_menu">
|
341
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/genre/Free%20to%20Play/?snr=1_5_9__12">
|
342
|
-
Free to Play </a>
|
343
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/genre/Early%20Access/?snr=1_5_9__12">
|
344
|
-
Early Access </a>
|
345
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/freestuff/demos/?snr=1_5_9__12">
|
346
|
-
<span>Demos</span>
|
347
|
-
</a>
|
348
|
-
<div class="hr"></div>
|
349
|
-
<div class="popup_menu_subheader">Browse by genre:</div>
|
350
|
-
|
351
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/tag/en/Action/?snr=1_5_9__12">
|
352
|
-
Action </a>
|
353
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/tag/en/Adventure/?snr=1_5_9__12">
|
354
|
-
Adventure </a>
|
355
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/tag/en/Casual/?snr=1_5_9__12">
|
356
|
-
Casual </a>
|
357
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/tag/en/Indie/?snr=1_5_9__12">
|
358
|
-
Indie </a>
|
359
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/tag/en/Massively%20Multiplayer/?snr=1_5_9__12">
|
360
|
-
Massively Multiplayer </a>
|
361
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/tag/en/Racing/?snr=1_5_9__12">
|
362
|
-
Racing </a>
|
363
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/tag/en/RPG/?snr=1_5_9__12">
|
364
|
-
RPG </a>
|
365
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/tag/en/Simulation/?snr=1_5_9__12">
|
366
|
-
Simulation </a>
|
367
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/tag/en/Sports/?snr=1_5_9__12">
|
368
|
-
Sports </a>
|
369
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/tag/en/Strategy/?snr=1_5_9__12">
|
370
|
-
Strategy </a>
|
371
|
-
|
372
|
-
<div class="hr"></div>
|
373
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/tag/browse/?snr=1_5_9__12">
|
374
|
-
See popular tags </a>
|
375
|
-
<div class="hr"></div>
|
376
|
-
<div class="popup_menu_subheader">Browse by platform:</div>
|
377
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/search/?term=&sort_by=_ASC&os=mac&page=1&snr=1_5_9__12">
|
378
|
-
Mac OS X </a>
|
379
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/search/?term=&sort_by=_ASC&os=linux&page=1&snr=1_5_9__12">
|
380
|
-
SteamOS + Linux </a>
|
381
|
-
</div>
|
382
|
-
</div>
|
383
|
-
|
384
|
-
<div class="tab flyout_tab " id="software_tab" data-flyout="software_flyout" data-flyout-align="left" data-flyout-valign="bottom">
|
385
|
-
<span class="pulldown">
|
386
|
-
<a class="pulldown_desktop" href="http://store.steampowered.com/search/?snr=1_5_9__12#sort_by=_ASC&category1=994&page=1">Software</a>
|
387
|
-
<a class="pulldown_mobile" href="#">Software</a>
|
388
|
-
<span></span>
|
389
|
-
</span>
|
390
|
-
|
391
|
-
</div>
|
392
|
-
<div class="popup_block_new flyout_tab_flyout responsive_slidedown" id="software_flyout" style="display: none;">
|
393
|
-
<div class="popup_body popup_menu">
|
394
|
-
|
395
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/tag/en/Animation%20%26%20Modeling/?snr=1_5_9__12">
|
396
|
-
Animation & Modeling </a>
|
397
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/tag/en/Audio%20Production/?snr=1_5_9__12">
|
398
|
-
Audio Production </a>
|
399
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/tag/en/Design%20%26%20Illustration/?snr=1_5_9__12">
|
400
|
-
Design & Illustration </a>
|
401
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/tag/en/Education/?snr=1_5_9__12">
|
402
|
-
Education </a>
|
403
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/tag/en/Game%20Development/?snr=1_5_9__12">
|
404
|
-
Game Development </a>
|
405
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/tag/en/Photo%20Editing/?snr=1_5_9__12">
|
406
|
-
Photo Editing </a>
|
407
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/tag/en/Utilities/?snr=1_5_9__12">
|
408
|
-
Utilities </a>
|
409
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/tag/en/Video%20Production/?snr=1_5_9__12">
|
410
|
-
Video Production </a>
|
411
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/tag/en/Web%20Publishing/?snr=1_5_9__12">
|
412
|
-
Web Publishing </a>
|
413
|
-
|
414
|
-
</div>
|
415
|
-
</div>
|
416
|
-
|
417
|
-
<div class="tab flyout_tab " id="hardware_tab" data-flyout="hardware_flyout" data-flyout-align="left" data-flyout-valign="bottom">
|
418
|
-
<span class="pulldown">
|
419
|
-
<a class="pulldown_desktop" href="http://store.steampowered.com/hardware?snr=1_5_9__12">Hardware</a>
|
420
|
-
<a class="pulldown_mobile" href="#">Hardware</a>
|
421
|
-
<span></span>
|
422
|
-
</span>
|
423
|
-
|
424
|
-
</div>
|
425
|
-
<div class="popup_block_new flyout_tab_flyout responsive_slidedown" id="hardware_flyout" style="display: none;">
|
426
|
-
<div class="popup_body popup_menu">
|
427
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/app/353370?snr=1_5_9__12">
|
428
|
-
Steam Controller </a>
|
429
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/app/353380?snr=1_5_9__12">
|
430
|
-
Steam Link </a>
|
431
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/hardware/?snr=1_5_9__12#Machines">
|
432
|
-
Steam Machines </a>
|
433
|
-
<a class="popup_menu_item" target="_blank" href="http://steamcommunity.com/steamvr?snr=1_5_9__12">
|
434
|
-
SteamVR </a>
|
435
|
-
</div>
|
436
|
-
</div>
|
437
|
-
|
438
|
-
<div class="tab flyout_tab " id="videos_tab" data-flyout="videos_flyout" data-flyout-align="left" data-flyout-valign="bottom">
|
439
|
-
<span class="pulldown">
|
440
|
-
<a class="pulldown_desktop" href="http://store.steampowered.com/search/?snr=1_5_9__12#sort_by=_ASC&category1=992&page=1&tags=-1">Videos</a>
|
441
|
-
<a class="pulldown_mobile" href="#">Videos</a>
|
442
|
-
<span></span>
|
443
|
-
</span>
|
444
|
-
</div>
|
445
|
-
<div class="popup_block_new flyout_tab_flyout responsive_slidedown" id="videos_flyout" style="display: none;">
|
446
|
-
<div class="popup_body popup_menu">
|
447
|
-
<div class="popup_menu_subheader">Browse by type:</div>
|
448
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/search/?snr=1_5_9__12#category1=992&sort_by=Released_DESC&page=1&tags=15339">
|
449
|
-
Documentary </a>
|
450
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/search/?snr=1_5_9__12#category1=992&sort_by=Released_DESC&page=1&tags=4242">
|
451
|
-
Episodic </a>
|
452
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/search/?snr=1_5_9__12#category1=992&sort_by=Released_DESC&page=1&tags=4700">
|
453
|
-
Movie </a>
|
454
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/search/?snr=1_5_9__12#category1=992&sort_by=Released_DESC&page=1&tags=4234">
|
455
|
-
Short </a>
|
456
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/search/?snr=1_5_9__12#category1=992&sort_by=Released_DESC&page=1&tags=12057">
|
457
|
-
Tutorial </a>
|
458
|
-
|
459
|
-
<div class="hr"></div>
|
460
|
-
<div class="popup_menu_subheader">Browse by genre:</div>
|
461
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/search/?snr=1_5_9__12#category1=992&sort_by=Released_DESC&page=1&tags=19">
|
462
|
-
Action </a>
|
463
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/search/?snr=1_5_9__12#category1=992&sort_by=Released_DESC&page=1&tags=4085">
|
464
|
-
Anime </a>
|
465
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/search/?snr=1_5_9__12#category1=992&sort_by=Released_DESC&page=1&tags=1719">
|
466
|
-
Comedy </a>
|
467
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/search/?snr=1_5_9__12#category1=992&sort_by=Released_DESC&page=1&tags=5984">
|
468
|
-
Drama </a>
|
469
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/search/?snr=1_5_9__12#category1=992&sort_by=Released_DESC&page=1&tags=150626">
|
470
|
-
Gaming </a>
|
471
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/search/?snr=1_5_9__12#category1=992&sort_by=Released_DESC&page=1&tags=1667">
|
472
|
-
Horror </a>
|
473
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/search/?snr=1_5_9__12#category1=992&sort_by=Released_DESC&page=1&tags=3942">
|
474
|
-
Sci-fi </a>
|
475
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/search/?snr=1_5_9__12#category1=992&sort_by=Released_DESC&page=1&tags=4064">
|
476
|
-
Thriller </a>
|
477
|
-
|
478
|
-
</div>
|
479
|
-
</div>
|
480
|
-
|
481
|
-
<a class="tab " href="http://store.steampowered.com/news/?snr=1_5_9__12">
|
482
|
-
<span>News</span>
|
483
|
-
</a>
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
<div class="tab flyout_tab " id="foryou_tab" data-flyout="foryou_flyout" data-flyout-align="left" data-flyout-valign="bottom" onmouseover="EnsureStoreMenuTagsLoaded( '#foryou_yourtags' );">
|
488
|
-
<span class="pulldown">
|
489
|
-
For You <span></span>
|
490
|
-
</span>
|
491
|
-
</div>
|
492
|
-
<div class="popup_block_new flyout_tab_flyout responsive_slidedown" id="foryou_flyout" style="display: none;">
|
493
|
-
<div class="popup_body popup_menu">
|
494
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/recommended/?snr=1_5_9__12">
|
495
|
-
Recently viewed </a>
|
496
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/curators/?snr=1_5_9__12">
|
497
|
-
Steam Curators </a>
|
498
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/updated/all/?snr=1_5_9__12">
|
499
|
-
Recently updated </a>
|
500
|
-
</div>
|
501
|
-
</div>
|
502
|
-
|
503
|
-
|
504
|
-
<div class="search_area">
|
505
|
-
<div id="store_search">
|
506
|
-
<form id="searchform" name="searchform" method="get" action="http://store.steampowered.com/search/" onsubmit="return SearchSuggestCheckTerm(this);">
|
507
|
-
<input type="hidden" name="snr" value="1_5_9__12" >
|
508
|
-
<div class="searchbox">
|
509
|
-
<input id="store_nav_search_term" name="term" type="text" class="default" value="search the store" size="22" autocomplete="off">
|
510
|
-
<a href="#" id="store_search_link" onclick="var $Form = $J(this).parents('form'); $Form.submit(); return false;"><img src="http://store.akamai.steamstatic.com/public/images/blank.gif"></a>
|
511
|
-
</div>
|
512
|
-
</form>
|
513
|
-
</div>
|
514
|
-
<div id="searchterm_options" class="search_suggest popup_block_new" style="display: none;">
|
515
|
-
<div class="popup_body" style="border-top: none;">
|
516
|
-
<div id="search_suggestion_contents">
|
517
|
-
</div>
|
518
|
-
</div>
|
519
|
-
</div>
|
520
|
-
</div>
|
521
|
-
|
522
|
-
</div>
|
523
|
-
</div>
|
524
|
-
<div class="store_nav_rightcap"></div>
|
525
|
-
</div>
|
526
|
-
</div>
|
527
|
-
</div>
|
528
|
-
<script type="text/javascript">
|
529
|
-
$J( function() {
|
530
|
-
BindAutoFlyoutEvents();
|
531
|
-
|
532
|
-
var $Window = $J(window);
|
533
|
-
var $Header = $J('#store_header');
|
534
|
-
var $ResponsiveNavCtn = $J('#responsive_store_nav_ctn');
|
535
|
-
var $HeaderWrapper;
|
536
|
-
$Window.on('Responsive_SmallScreenModeToggled.StoreMenu', function() {
|
537
|
-
var bUseSmallScreenMode =window.UseSmallScreenMode && window.UseSmallScreenMode();
|
538
|
-
|
539
|
-
if ( !$HeaderWrapper )
|
540
|
-
$HeaderWrapper = $Header.wrap( $J('<div/>', {'class': 'responsive_store_nav_ctn_spacer'} ) ).parent();
|
541
|
-
|
542
|
-
if ( bUseSmallScreenMode )
|
543
|
-
$ResponsiveNavCtn.append( $Header );
|
544
|
-
else
|
545
|
-
$HeaderWrapper.append( $Header );
|
546
|
-
|
547
|
-
|
548
|
-
if ( bUseSmallScreenMode )
|
549
|
-
{
|
550
|
-
$Header.css( 'visibility', 'hidden' );
|
551
|
-
$Header.show();
|
552
|
-
var nMenuHeight = $J('#store_header' ).height() + $J('#store_header' ).offset().top;
|
553
|
-
if ( $Window.scrollTop() < nMenuHeight )
|
554
|
-
$Window.scrollTop( nMenuHeight - GetResponsiveHeaderFixedOffsetAdjustment() );
|
555
|
-
|
556
|
-
$Header.css('visibility', 'visible');
|
557
|
-
}
|
558
|
-
} ).trigger('Responsive_SmallScreenModeToggled.StoreMenu');
|
559
|
-
|
560
|
-
EnableSearchSuggestions( $J('#searchform')[0].elements['term'], '1_5_9_', 'CA', 'english', '1542697' );
|
561
|
-
} );
|
562
|
-
</script>
|
563
|
-
<script type="text/javascript">
|
564
|
-
var g_AccountID = 0;
|
565
|
-
var g_sessionID = "2a7336c4facecac0ee38f8a6";
|
566
|
-
var g_ServerTime = 1447874712;
|
567
|
-
|
568
|
-
$J( InitMiniprofileHovers );
|
569
|
-
|
570
|
-
GDynamicStore.Init( 0, false, "win" );
|
571
|
-
</script>
|
572
|
-
<div class="page_content_ctn" itemscope itemtype="http://schema.org/Product">
|
573
|
-
|
574
|
-
<meta itemprop="image" content="http://cdn.akamai.steamstatic.com/steam/apps/10/capsule_231x87.jpg?t=1436833478">
|
575
|
-
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer" style="display: none;">
|
576
|
-
<meta itemprop="priceCurrency" content="CAD">
|
577
|
-
<meta itemprop="price" content="10.99">
|
578
|
-
</div>
|
579
|
-
<div class="page_title_area game_title_area page_content">
|
580
|
-
<div class="breadcrumbs">
|
581
|
-
<div class="blockbg">
|
582
|
-
<a href="http://store.steampowered.com/search/?term=&snr=1_5_9__205">All Games</a>
|
583
|
-
> <a href="http://store.steampowered.com/genre/Action/?snr=1_5_9__205">Action Games</a>
|
584
|
-
> <a href="http://store.steampowered.com/app/10/?snr=1_5_9__205"><span itemprop="name">Counter-Strike</span></a>
|
585
|
-
|
586
|
-
</div>
|
587
|
-
<div style="clear: left;"></div>
|
588
|
-
</div>
|
589
|
-
<div class="apphub_HomeHeaderContent">
|
590
|
-
|
591
|
-
<div class="apphub_HeaderStandardTop">
|
592
|
-
<div class="apphub_OtherSiteInfo">
|
593
|
-
<a class="btnv6_blue_hoverfade btn_medium" href="http://steamcommunity.com/app/10" onclick="if ( typeof _gaq != 'undefined' && _gaq ) { _gaq.push(['app._link', 'http://steamcommunity.com/app/10']); }">
|
594
|
-
<span>Community Hub</span>
|
595
|
-
</a>
|
596
|
-
</div>
|
597
|
-
<div class="apphub_AppIcon"><img src="http://cdn.akamai.steamstatic.com/steamcommunity/public/images/apps/10/6b0312cda02f5f777efa2f3318c307ff9acafbb5.jpg"><div class="overlay"></div></div>
|
598
|
-
<div class="apphub_AppName">Counter-Strike</div>
|
599
|
-
<div style="clear: both"></div>
|
600
|
-
</div>
|
601
|
-
|
602
|
-
</div>
|
603
|
-
|
604
|
-
</div>
|
605
|
-
<div style="clear: left;"></div>
|
606
|
-
|
607
|
-
<div class="block">
|
608
|
-
<script type="text/javascript">
|
609
|
-
var strRequiredVersion = "9";
|
610
|
-
if ( typeof( g_bIsOnMac ) != 'undefined' && g_bIsOnMac )
|
611
|
-
strRequiredVersion = "10.1.0";
|
612
|
-
|
613
|
-
|
614
|
-
var bShouldUseHTML5 = BCanPlayWebm() || BDoesUserPreferHTML5() || !swfobject.hasFlashPlayerVersion(strRequiredVersion);
|
615
|
-
</script>
|
616
|
-
<div class="game_background_glow">
|
617
|
-
<div class="block_content page_content" id="game_highlights">
|
618
|
-
|
619
|
-
<div class="rightcol">
|
620
|
-
<div class="glance_ctn">
|
621
|
-
<div class="game_header_image_ctn">
|
622
|
-
<img class="game_header_image_full" src="http://cdn.akamai.steamstatic.com/steam/apps/10/header.jpg?t=1436833478">
|
623
|
-
</div>
|
624
|
-
<div class="game_description_snippet">
|
625
|
-
Play the world's number 1 online action game. Engage in an incredibly realistic brand of terrorist warfare in this wildly popular team-based game. Ally with teammates to complete strategic missions. Take out enemy sites. Rescue hostages. Your role affects your team's success. Your team's success affects your role. </div>
|
626
|
-
|
627
|
-
<div class="glance_ctn_responsive_left">
|
628
|
-
|
629
|
-
<div onclick="window.location='#app_reviews_hash'" style="cursor: pointer;" data-store-tooltip="98% of the 52,042 user reviews for this game are positive." itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
|
630
|
-
<div class="release_date">
|
631
|
-
User reviews: <span class="game_review_summary positive" itemprop="description">Overwhelmingly Positive</span>
|
632
|
-
<span class="responsive_hidden">
|
633
|
-
(52,042 reviews)
|
634
|
-
</span>
|
635
|
-
<span class="nonresponsive_hidden responsive_reviewdesc">
|
636
|
-
- 98% of the 52,042 user reviews for this game are positive. </span>
|
637
|
-
|
638
|
-
<!-- microdata -->
|
639
|
-
<meta itemprop="reviewCount" content="52042">
|
640
|
-
<meta itemprop="ratingValue" content="10">
|
641
|
-
<meta itemprop="bestRating" content="10">
|
642
|
-
<meta itemprop="worstRating" content="1">
|
643
|
-
</div>
|
644
|
-
</div>
|
645
|
-
|
646
|
-
<div class="release_date">
|
647
|
-
Release Date: <span class="date">1 Nov, 2000</span>
|
648
|
-
</div>
|
649
|
-
</div>
|
650
|
-
|
651
|
-
<div class="glance_ctn_responsive_right">
|
652
|
-
<!-- when the javascript runs, it will set these visible or not depending on what fits in the area -->
|
653
|
-
<div class="glance_tags_ctn popular_tags_ctn">
|
654
|
-
<div class="glance_tags_label">Popular user-defined tags for this product:</div>
|
655
|
-
<div class="glance_tags popular_tags" data-appid="10">
|
656
|
-
<a href="http://store.steampowered.com/tag/en/Action/?snr=1_5_9__409" class="app_tag" style="display: none;">
|
657
|
-
Action </a><a href="http://store.steampowered.com/tag/en/FPS/?snr=1_5_9__409" class="app_tag" style="display: none;">
|
658
|
-
FPS </a><a href="http://store.steampowered.com/tag/en/Multiplayer/?snr=1_5_9__409" class="app_tag" style="display: none;">
|
659
|
-
Multiplayer </a><a href="http://store.steampowered.com/tag/en/Classic/?snr=1_5_9__409" class="app_tag" style="display: none;">
|
660
|
-
Classic </a><a href="http://store.steampowered.com/tag/en/Shooter/?snr=1_5_9__409" class="app_tag" style="display: none;">
|
661
|
-
Shooter </a><a href="http://store.steampowered.com/tag/en/Team-Based/?snr=1_5_9__409" class="app_tag" style="display: none;">
|
662
|
-
Team-Based </a><a href="http://store.steampowered.com/tag/en/Competitive/?snr=1_5_9__409" class="app_tag" style="display: none;">
|
663
|
-
Competitive </a><a href="http://store.steampowered.com/tag/en/First-Person/?snr=1_5_9__409" class="app_tag" style="display: none;">
|
664
|
-
First-Person </a><a href="http://store.steampowered.com/tag/en/Tactical/?snr=1_5_9__409" class="app_tag" style="display: none;">
|
665
|
-
Tactical </a><a href="http://store.steampowered.com/tag/en/1990%27s/?snr=1_5_9__409" class="app_tag" style="display: none;">
|
666
|
-
1990's </a><a href="http://store.steampowered.com/tag/en/e-sports/?snr=1_5_9__409" class="app_tag" style="display: none;">
|
667
|
-
e-sports </a><a href="http://store.steampowered.com/tag/en/PvP/?snr=1_5_9__409" class="app_tag" style="display: none;">
|
668
|
-
PvP </a><a href="http://store.steampowered.com/tag/en/Strategy/?snr=1_5_9__409" class="app_tag" style="display: none;">
|
669
|
-
Strategy </a><a href="http://store.steampowered.com/tag/en/Military/?snr=1_5_9__409" class="app_tag" style="display: none;">
|
670
|
-
Military </a><a href="http://store.steampowered.com/tag/en/1980s/?snr=1_5_9__409" class="app_tag" style="display: none;">
|
671
|
-
1980s </a><a href="http://store.steampowered.com/tag/en/Score%20Attack/?snr=1_5_9__409" class="app_tag" style="display: none;">
|
672
|
-
Score Attack </a><a href="http://store.steampowered.com/tag/en/Assassin/?snr=1_5_9__409" class="app_tag" style="display: none;">
|
673
|
-
Assassin </a><a href="http://store.steampowered.com/tag/en/Survival/?snr=1_5_9__409" class="app_tag" style="display: none;">
|
674
|
-
Survival </a><a href="http://store.steampowered.com/tag/en/Ninja/?snr=1_5_9__409" class="app_tag" style="display: none;">
|
675
|
-
Ninja </a><a href="http://store.steampowered.com/tag/en/Tower%20Defense/?snr=1_5_9__409" class="app_tag" style="display: none;">
|
676
|
-
Tower Defense </a><div class="app_tag add_button" onclick="ShowAppTagModal( 10 )">+</div>
|
677
|
-
</div>
|
678
|
-
</div>
|
679
|
-
</div>
|
680
|
-
<div style="clear: both;"></div>
|
681
|
-
</div>
|
682
|
-
</div>
|
683
|
-
|
684
|
-
<div class="leftcol">
|
685
|
-
<div class="highlight_ctn">
|
686
|
-
<div class="highlight_overflow">
|
687
|
-
<div id="highlight_player_area" >
|
688
|
-
<div class="highlight_player_area_spacer">
|
689
|
-
<img src="http://store.akamai.steamstatic.com/public/images/game/game_highlight_image_spacer.gif">
|
690
|
-
</div>
|
691
|
-
|
692
|
-
<div class="highlight_player_item highlight_screenshot" id="highlight_screenshot_0000000132.jpg" style="display: none;">
|
693
|
-
<div class="screenshot_holder">
|
694
|
-
<a class="highlight_screenshot_link" data-screenshotid="0000000132.jpg" target="_blank" href="https://steamcommunity.com/linkfilter/?url=http://cdn.akamai.steamstatic.com/steam/apps/10/0000000132.1920x1080.jpg?t=1436833478">
|
695
|
-
<img src="http://store.akamai.steamstatic.com/public/images/blank.gif">
|
696
|
-
</a>
|
697
|
-
</div>
|
698
|
-
</div>
|
699
|
-
<div class="highlight_player_item highlight_screenshot" id="highlight_screenshot_0000000133.jpg" style="display: none;">
|
700
|
-
<div class="screenshot_holder">
|
701
|
-
<a class="highlight_screenshot_link" data-screenshotid="0000000133.jpg" target="_blank" href="https://steamcommunity.com/linkfilter/?url=http://cdn.akamai.steamstatic.com/steam/apps/10/0000000133.1920x1080.jpg?t=1436833478">
|
702
|
-
<img src="http://store.akamai.steamstatic.com/public/images/blank.gif">
|
703
|
-
</a>
|
704
|
-
</div>
|
705
|
-
</div>
|
706
|
-
<div class="highlight_player_item highlight_screenshot" id="highlight_screenshot_0000000134.jpg" style="display: none;">
|
707
|
-
<div class="screenshot_holder">
|
708
|
-
<a class="highlight_screenshot_link" data-screenshotid="0000000134.jpg" target="_blank" href="https://steamcommunity.com/linkfilter/?url=http://cdn.akamai.steamstatic.com/steam/apps/10/0000000134.1920x1080.jpg?t=1436833478">
|
709
|
-
<img src="http://store.akamai.steamstatic.com/public/images/blank.gif">
|
710
|
-
</a>
|
711
|
-
</div>
|
712
|
-
</div>
|
713
|
-
<div class="highlight_player_item highlight_screenshot" id="highlight_screenshot_0000000135.jpg" style="display: none;">
|
714
|
-
<div class="screenshot_holder">
|
715
|
-
<a class="highlight_screenshot_link" data-screenshotid="0000000135.jpg" target="_blank" href="https://steamcommunity.com/linkfilter/?url=http://cdn.akamai.steamstatic.com/steam/apps/10/0000000135.1920x1080.jpg?t=1436833478">
|
716
|
-
<img src="http://store.akamai.steamstatic.com/public/images/blank.gif">
|
717
|
-
</a>
|
718
|
-
</div>
|
719
|
-
</div>
|
720
|
-
<div class="highlight_player_item highlight_screenshot" id="highlight_screenshot_0000000136.jpg" style="display: none;">
|
721
|
-
<div class="screenshot_holder">
|
722
|
-
<a class="highlight_screenshot_link" data-screenshotid="0000000136.jpg" target="_blank" href="https://steamcommunity.com/linkfilter/?url=http://cdn.akamai.steamstatic.com/steam/apps/10/0000000136.1920x1080.jpg?t=1436833478">
|
723
|
-
<img src="http://store.akamai.steamstatic.com/public/images/blank.gif">
|
724
|
-
</a>
|
725
|
-
</div>
|
726
|
-
</div>
|
727
|
-
<div class="highlight_player_item highlight_screenshot" id="highlight_screenshot_0000002540.jpg" style="display: none;">
|
728
|
-
<div class="screenshot_holder">
|
729
|
-
<a class="highlight_screenshot_link" data-screenshotid="0000002540.jpg" target="_blank" href="https://steamcommunity.com/linkfilter/?url=http://cdn.akamai.steamstatic.com/steam/apps/10/0000002540.1920x1080.jpg?t=1436833478">
|
730
|
-
<img src="http://store.akamai.steamstatic.com/public/images/blank.gif">
|
731
|
-
</a>
|
732
|
-
</div>
|
733
|
-
</div>
|
734
|
-
<div class="highlight_player_item highlight_screenshot" id="highlight_screenshot_0000002539.jpg" style="display: none;">
|
735
|
-
<div class="screenshot_holder">
|
736
|
-
<a class="highlight_screenshot_link" data-screenshotid="0000002539.jpg" target="_blank" href="https://steamcommunity.com/linkfilter/?url=http://cdn.akamai.steamstatic.com/steam/apps/10/0000002539.1920x1080.jpg?t=1436833478">
|
737
|
-
<img src="http://store.akamai.steamstatic.com/public/images/blank.gif">
|
738
|
-
</a>
|
739
|
-
</div>
|
740
|
-
</div>
|
741
|
-
<div class="highlight_player_item highlight_screenshot" id="highlight_screenshot_0000002538.jpg" style="display: none;">
|
742
|
-
<div class="screenshot_holder">
|
743
|
-
<a class="highlight_screenshot_link" data-screenshotid="0000002538.jpg" target="_blank" href="https://steamcommunity.com/linkfilter/?url=http://cdn.akamai.steamstatic.com/steam/apps/10/0000002538.1920x1080.jpg?t=1436833478">
|
744
|
-
<img src="http://store.akamai.steamstatic.com/public/images/blank.gif">
|
745
|
-
</a>
|
746
|
-
</div>
|
747
|
-
</div>
|
748
|
-
<div class="highlight_player_item highlight_screenshot" id="highlight_screenshot_0000002537.jpg" style="display: none;">
|
749
|
-
<div class="screenshot_holder">
|
750
|
-
<a class="highlight_screenshot_link" data-screenshotid="0000002537.jpg" target="_blank" href="https://steamcommunity.com/linkfilter/?url=http://cdn.akamai.steamstatic.com/steam/apps/10/0000002537.1920x1080.jpg?t=1436833478">
|
751
|
-
<img src="http://store.akamai.steamstatic.com/public/images/blank.gif">
|
752
|
-
</a>
|
753
|
-
</div>
|
754
|
-
</div>
|
755
|
-
<div class="highlight_player_item highlight_screenshot" id="highlight_screenshot_0000002536.jpg" style="display: none;">
|
756
|
-
<div class="screenshot_holder">
|
757
|
-
<a class="highlight_screenshot_link" data-screenshotid="0000002536.jpg" target="_blank" href="https://steamcommunity.com/linkfilter/?url=http://cdn.akamai.steamstatic.com/steam/apps/10/0000002536.1920x1080.jpg?t=1436833478">
|
758
|
-
<img src="http://store.akamai.steamstatic.com/public/images/blank.gif">
|
759
|
-
</a>
|
760
|
-
</div>
|
761
|
-
</div>
|
762
|
-
<div class="highlight_player_item highlight_screenshot" id="highlight_screenshot_0000002541.jpg" style="display: none;">
|
763
|
-
<div class="screenshot_holder">
|
764
|
-
<a class="highlight_screenshot_link" data-screenshotid="0000002541.jpg" target="_blank" href="https://steamcommunity.com/linkfilter/?url=http://cdn.akamai.steamstatic.com/steam/apps/10/0000002541.1920x1080.jpg?t=1436833478">
|
765
|
-
<img src="http://store.akamai.steamstatic.com/public/images/blank.gif">
|
766
|
-
</a>
|
767
|
-
</div>
|
768
|
-
</div>
|
769
|
-
<div class="highlight_player_item highlight_screenshot" id="highlight_screenshot_0000002542.jpg" style="display: none;">
|
770
|
-
<div class="screenshot_holder">
|
771
|
-
<a class="highlight_screenshot_link" data-screenshotid="0000002542.jpg" target="_blank" href="https://steamcommunity.com/linkfilter/?url=http://cdn.akamai.steamstatic.com/steam/apps/10/0000002542.1920x1080.jpg?t=1436833478">
|
772
|
-
<img src="http://store.akamai.steamstatic.com/public/images/blank.gif">
|
773
|
-
</a>
|
774
|
-
</div>
|
775
|
-
</div>
|
776
|
-
<div class="highlight_player_item highlight_screenshot" id="highlight_screenshot_0000002543.jpg" style="display: none;">
|
777
|
-
<div class="screenshot_holder">
|
778
|
-
<a class="highlight_screenshot_link" data-screenshotid="0000002543.jpg" target="_blank" href="https://steamcommunity.com/linkfilter/?url=http://cdn.akamai.steamstatic.com/steam/apps/10/0000002543.1920x1080.jpg?t=1436833478">
|
779
|
-
<img src="http://store.akamai.steamstatic.com/public/images/blank.gif">
|
780
|
-
</a>
|
781
|
-
</div>
|
782
|
-
</div>
|
783
|
-
|
784
|
-
<script type="text/javascript">
|
785
|
-
var rgMovieFlashvars = {
|
786
|
-
'' : ''
|
787
|
-
};
|
788
|
-
var rgCommonFlashVars = {
|
789
|
-
clientLanguage: "english",
|
790
|
-
capsuleSize: "huge",
|
791
|
-
STAGE_WIDTH: 600,
|
792
|
-
STAGE_HEIGHT: 338,
|
793
|
-
AUTO_PLAY: "true",
|
794
|
-
ALLOW_JSPAUSE: "true",
|
795
|
-
TRACK_MUTE: "true",
|
796
|
-
CHECKBOX_AUTOPLAY_SHOW: "true",
|
797
|
-
CHECKBOX_AUTOPLAY_TEXT: "Autoplay+videos"
|
798
|
-
};
|
799
|
-
var rgScreenshotURLs = {"0000000132.jpg":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/10\/0000000132_SIZE_.jpg?t=1436833478","0000000133.jpg":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/10\/0000000133_SIZE_.jpg?t=1436833478","0000000134.jpg":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/10\/0000000134_SIZE_.jpg?t=1436833478","0000000135.jpg":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/10\/0000000135_SIZE_.jpg?t=1436833478","0000000136.jpg":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/10\/0000000136_SIZE_.jpg?t=1436833478","0000002540.jpg":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/10\/0000002540_SIZE_.jpg?t=1436833478","0000002539.jpg":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/10\/0000002539_SIZE_.jpg?t=1436833478","0000002538.jpg":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/10\/0000002538_SIZE_.jpg?t=1436833478","0000002537.jpg":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/10\/0000002537_SIZE_.jpg?t=1436833478","0000002536.jpg":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/10\/0000002536_SIZE_.jpg?t=1436833478","0000002541.jpg":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/10\/0000002541_SIZE_.jpg?t=1436833478","0000002542.jpg":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/10\/0000002542_SIZE_.jpg?t=1436833478","0000002543.jpg":"http:\/\/cdn.akamai.steamstatic.com\/steam\/apps\/10\/0000002543_SIZE_.jpg?t=1436833478"};
|
800
|
-
</script>
|
801
|
-
</div>
|
802
|
-
<div id="highlight_strip">
|
803
|
-
<div id="highlight_strip_scroll" style="width: 1562px;">
|
804
|
-
<div class="highlight_selector"></div>
|
805
|
-
|
806
|
-
|
807
|
-
<div class="highlight_strip_item highlight_strip_screenshot" id="thumb_screenshot_0000000132.jpg" >
|
808
|
-
<img src="http://cdn.akamai.steamstatic.com/steam/apps/10/0000000132.116x65.jpg?t=1436833478">
|
809
|
-
</div>
|
810
|
-
<div class="highlight_strip_item highlight_strip_screenshot" id="thumb_screenshot_0000000133.jpg" >
|
811
|
-
<img src="http://cdn.akamai.steamstatic.com/steam/apps/10/0000000133.116x65.jpg?t=1436833478">
|
812
|
-
</div>
|
813
|
-
<div class="highlight_strip_item highlight_strip_screenshot" id="thumb_screenshot_0000000134.jpg" >
|
814
|
-
<img src="http://cdn.akamai.steamstatic.com/steam/apps/10/0000000134.116x65.jpg?t=1436833478">
|
815
|
-
</div>
|
816
|
-
<div class="highlight_strip_item highlight_strip_screenshot" id="thumb_screenshot_0000000135.jpg" >
|
817
|
-
<img src="http://cdn.akamai.steamstatic.com/steam/apps/10/0000000135.116x65.jpg?t=1436833478">
|
818
|
-
</div>
|
819
|
-
<div class="highlight_strip_item highlight_strip_screenshot" id="thumb_screenshot_0000000136.jpg" >
|
820
|
-
<img src="http://cdn.akamai.steamstatic.com/steam/apps/10/0000000136.116x65.jpg?t=1436833478">
|
821
|
-
</div>
|
822
|
-
<div class="highlight_strip_item highlight_strip_screenshot" id="thumb_screenshot_0000002540.jpg" >
|
823
|
-
<img src="http://cdn.akamai.steamstatic.com/steam/apps/10/0000002540.116x65.jpg?t=1436833478">
|
824
|
-
</div>
|
825
|
-
<div class="highlight_strip_item highlight_strip_screenshot" id="thumb_screenshot_0000002539.jpg" >
|
826
|
-
<img src="http://cdn.akamai.steamstatic.com/steam/apps/10/0000002539.116x65.jpg?t=1436833478">
|
827
|
-
</div>
|
828
|
-
<div class="highlight_strip_item highlight_strip_screenshot" id="thumb_screenshot_0000002538.jpg" >
|
829
|
-
<img src="http://cdn.akamai.steamstatic.com/steam/apps/10/0000002538.116x65.jpg?t=1436833478">
|
830
|
-
</div>
|
831
|
-
<div class="highlight_strip_item highlight_strip_screenshot" id="thumb_screenshot_0000002537.jpg" >
|
832
|
-
<img src="http://cdn.akamai.steamstatic.com/steam/apps/10/0000002537.116x65.jpg?t=1436833478">
|
833
|
-
</div>
|
834
|
-
<div class="highlight_strip_item highlight_strip_screenshot" id="thumb_screenshot_0000002536.jpg" >
|
835
|
-
<img src="http://cdn.akamai.steamstatic.com/steam/apps/10/0000002536.116x65.jpg?t=1436833478">
|
836
|
-
</div>
|
837
|
-
<div class="highlight_strip_item highlight_strip_screenshot" id="thumb_screenshot_0000002541.jpg" >
|
838
|
-
<img src="http://cdn.akamai.steamstatic.com/steam/apps/10/0000002541.116x65.jpg?t=1436833478">
|
839
|
-
</div>
|
840
|
-
<div class="highlight_strip_item highlight_strip_screenshot" id="thumb_screenshot_0000002542.jpg" >
|
841
|
-
<img src="http://cdn.akamai.steamstatic.com/steam/apps/10/0000002542.116x65.jpg?t=1436833478">
|
842
|
-
</div>
|
843
|
-
<div class="highlight_strip_item highlight_strip_screenshot" id="thumb_screenshot_0000002543.jpg" >
|
844
|
-
<img src="http://cdn.akamai.steamstatic.com/steam/apps/10/0000002543.116x65.jpg?t=1436833478">
|
845
|
-
</div>
|
846
|
-
|
847
|
-
</div>
|
848
|
-
</div>
|
849
|
-
<div class="slider_ctn">
|
850
|
-
<div id="highlight_slider_left" class="slider_left"><span></span></div>
|
851
|
-
<div class="slider" id="highlight_slider" >
|
852
|
-
<div class="slider_bg">
|
853
|
-
</div>
|
854
|
-
<div class="handle">
|
855
|
-
</div>
|
856
|
-
</div>
|
857
|
-
<div id="highlight_slider_right" class="slider_right"><span></span></div>
|
858
|
-
</div>
|
859
|
-
<script type="text/javascript">
|
860
|
-
$J( function() {
|
861
|
-
var player = new HighlightPlayer( {
|
862
|
-
elemPlayerArea: 'highlight_player_area',
|
863
|
-
elemStrip: 'highlight_strip',
|
864
|
-
elemStripScroll: 'highlight_strip_scroll',
|
865
|
-
elemSlider: 'highlight_slider',
|
866
|
-
rgMovieFlashvars: rgMovieFlashvars,
|
867
|
-
rgScreenshotURLs: rgScreenshotURLs,
|
868
|
-
rgDefaultMovieFlashvars: rgCommonFlashVars,
|
869
|
-
bUseHTMLPlayer: bShouldUseHTML5
|
870
|
-
} );
|
871
|
-
$J('#highlight_slider_right').click( function() {
|
872
|
-
player.Transition( true );
|
873
|
-
});
|
874
|
-
$J('#highlight_slider_left').click( function() {
|
875
|
-
player.TransitionBack( true );
|
876
|
-
});
|
877
|
-
|
878
|
-
if( window.location.hash )
|
879
|
-
{
|
880
|
-
var ssid = window.location.hash.substr(1);
|
881
|
-
player.HighlightScreenshot(ssid);
|
882
|
-
}
|
883
|
-
} );
|
884
|
-
</script>
|
885
|
-
</div>
|
886
|
-
</div>
|
887
|
-
</div>
|
888
|
-
<div style="clear: both;"></div>
|
889
|
-
</div>
|
890
|
-
</div>
|
891
|
-
|
892
|
-
|
893
|
-
<div class="queue_overflow_ctn">
|
894
|
-
<div class="queue_ctn">
|
895
|
-
<div class="queue_actions_ctn">
|
896
|
-
<p><a href="http://store.steampowered.com/login/?redir=app%2F10">Sign in</a> to add this item to your wishlist, follow it, or mark it as not interested</p>
|
897
|
-
</div>
|
898
|
-
</div>
|
899
|
-
</div>
|
900
|
-
|
901
|
-
|
902
|
-
|
903
|
-
</div>
|
904
|
-
|
905
|
-
|
906
|
-
<div class="page_content">
|
907
|
-
|
908
|
-
<!-- Right Column -->
|
909
|
-
<div class="rightcol game_meta_data">
|
910
|
-
<div id="responsive_apppage_details_left_ctn"></div>
|
911
|
-
<div id="responsive_apppage_details_right_ctn"></div>
|
912
|
-
<div style="clear: both;"></div>
|
913
|
-
|
914
|
-
|
915
|
-
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
|
920
|
-
|
921
|
-
<div class="block responsive_apppage_details_left" id="category_block">
|
922
|
-
|
923
|
-
<div class="game_area_details_specs"><div class="icon"><a href="http://store.steampowered.com/search/?category2=1&snr=1_5_9__423"><img class="category_icon" src="http://store.akamai.steamstatic.com/public/images/v6/ico/ico_multiPlayer.png"></a></div><a class="name" href="http://store.steampowered.com/search/?category2=1&snr=1_5_9__423">Multi-player</a></div><div class="game_area_details_specs"><div class="icon"><a href="http://store.steampowered.com/search/?category2=8&snr=1_5_9__423"><img class="category_icon" src="http://store.akamai.steamstatic.com/public/images/v6/ico/ico_vac.png"></a></div><a class="name" href="http://store.steampowered.com/search/?category2=8&snr=1_5_9__423">Valve Anti-Cheat enabled</a></div>
|
924
|
-
|
925
|
-
</div>
|
926
|
-
|
927
|
-
<div class="block responsive_apppage_details_right">
|
928
|
-
<div class="block_title">
|
929
|
-
Languages:
|
930
|
-
</div>
|
931
|
-
|
932
|
-
|
933
|
-
<table class="game_language_options" cellpadding="0" cellspacing="0">
|
934
|
-
<tr>
|
935
|
-
<th style="width: 94px;"></th>
|
936
|
-
<th class="checkcol">Interface</th>
|
937
|
-
<th class="checkcol">Full Audio</th>
|
938
|
-
<th class="checkcol">Subtitles</th>
|
939
|
-
</tr>
|
940
|
-
|
941
|
-
<tr style="" class="">
|
942
|
-
<td style="width: 94px; text-align: left" class="ellipsis">
|
943
|
-
English </td>
|
944
|
-
<td class="checkcol">
|
945
|
-
<img src="http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png"/> </td>
|
946
|
-
<td class="checkcol">
|
947
|
-
</td>
|
948
|
-
<td class="checkcol">
|
949
|
-
</td>
|
950
|
-
</tr>
|
951
|
-
<tr style="" class="">
|
952
|
-
<td style="width: 94px; text-align: left" class="ellipsis">
|
953
|
-
French </td>
|
954
|
-
<td class="checkcol">
|
955
|
-
<img src="http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png"/> </td>
|
956
|
-
<td class="checkcol">
|
957
|
-
</td>
|
958
|
-
<td class="checkcol">
|
959
|
-
</td>
|
960
|
-
</tr>
|
961
|
-
<tr style="" class="">
|
962
|
-
<td style="width: 94px; text-align: left" class="ellipsis">
|
963
|
-
German </td>
|
964
|
-
<td class="checkcol">
|
965
|
-
<img src="http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png"/> </td>
|
966
|
-
<td class="checkcol">
|
967
|
-
</td>
|
968
|
-
<td class="checkcol">
|
969
|
-
</td>
|
970
|
-
</tr>
|
971
|
-
<tr style="" class="">
|
972
|
-
<td style="width: 94px; text-align: left" class="ellipsis">
|
973
|
-
Italian </td>
|
974
|
-
<td class="checkcol">
|
975
|
-
<img src="http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png"/> </td>
|
976
|
-
<td class="checkcol">
|
977
|
-
</td>
|
978
|
-
<td class="checkcol">
|
979
|
-
</td>
|
980
|
-
</tr>
|
981
|
-
<tr style="" class="">
|
982
|
-
<td style="width: 94px; text-align: left" class="ellipsis">
|
983
|
-
Spanish </td>
|
984
|
-
<td class="checkcol">
|
985
|
-
<img src="http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png"/> </td>
|
986
|
-
<td class="checkcol">
|
987
|
-
</td>
|
988
|
-
<td class="checkcol">
|
989
|
-
</td>
|
990
|
-
</tr>
|
991
|
-
<tr style="display: none;" class="">
|
992
|
-
<td style="width: 94px; text-align: left" class="ellipsis">
|
993
|
-
Simplified Chinese </td>
|
994
|
-
<td class="checkcol">
|
995
|
-
<img src="http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png"/> </td>
|
996
|
-
<td class="checkcol">
|
997
|
-
</td>
|
998
|
-
<td class="checkcol">
|
999
|
-
</td>
|
1000
|
-
</tr>
|
1001
|
-
<tr style="display: none;" class="">
|
1002
|
-
<td style="width: 94px; text-align: left" class="ellipsis">
|
1003
|
-
Traditional Chinese </td>
|
1004
|
-
<td class="checkcol">
|
1005
|
-
<img src="http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png"/> </td>
|
1006
|
-
<td class="checkcol">
|
1007
|
-
</td>
|
1008
|
-
<td class="checkcol">
|
1009
|
-
</td>
|
1010
|
-
</tr>
|
1011
|
-
<tr style="display: none;" class="">
|
1012
|
-
<td style="width: 94px; text-align: left" class="ellipsis">
|
1013
|
-
Korean </td>
|
1014
|
-
<td class="checkcol">
|
1015
|
-
<img src="http://store.akamai.steamstatic.com/public/images/v6/ico/ico_bluecheck.png"/> </td>
|
1016
|
-
<td class="checkcol">
|
1017
|
-
</td>
|
1018
|
-
<td class="checkcol">
|
1019
|
-
</td>
|
1020
|
-
</tr>
|
1021
|
-
</table>
|
1022
|
-
<a class="all_languages" onclick="$J('table.game_language_options tr').show(); $J(this).hide(); return false">See all 8 supported languages</a>
|
1023
|
-
|
1024
|
-
</div>
|
1025
|
-
|
1026
|
-
|
1027
|
-
|
1028
|
-
|
1029
|
-
<div class="block responsive_apppage_details_left game_details underlined_links">
|
1030
|
-
<div class="block_content">
|
1031
|
-
<div class="block_content_inner">
|
1032
|
-
<div class="details_block">
|
1033
|
-
<b>Title:</b> Counter-Strike<br>
|
1034
|
-
|
1035
|
-
<b>Genre:</b> <a href="http://store.steampowered.com/genre/Action/?snr=1_5_9__408">Action</a><br>
|
1036
|
-
|
1037
|
-
<b>Developer:</b>
|
1038
|
-
<a href="http://store.steampowered.com/search/?developer=Valve&snr=1_5_9__408">Valve</a>
|
1039
|
-
<br>
|
1040
|
-
|
1041
|
-
<b>Publisher:</b>
|
1042
|
-
<a href="http://store.steampowered.com/search/?publisher=Valve">Valve</a> <br>
|
1043
|
-
|
1044
|
-
|
1045
|
-
<b>Release Date:</b> 1 Nov, 2000<br>
|
1046
|
-
|
1047
|
-
</div>
|
1048
|
-
|
1049
|
-
|
1050
|
-
<div class="details_block">
|
1051
|
-
<br>
|
1052
|
-
|
1053
|
-
|
1054
|
-
|
1055
|
-
|
1056
|
-
|
1057
|
-
|
1058
|
-
<a class="linkbar" href="http://store.steampowered.com/news/?appids=10">
|
1059
|
-
View update history </a>
|
1060
|
-
<a class="linkbar" href="http://store.steampowered.com/news/?appids=10">
|
1061
|
-
Read related news </a>
|
1062
|
-
|
1063
|
-
<a class="linkbar" href="http://steamcommunity.com/app/10/discussions/">
|
1064
|
-
View discussions </a>
|
1065
|
-
|
1066
|
-
<a class="linkbar" href="http://steamcommunity.com/actions/Search?T=ClanAccount&K=Counter-Strike">
|
1067
|
-
Find Community Groups </a>
|
1068
|
-
</div> </div>
|
1069
|
-
</div>
|
1070
|
-
</div>
|
1071
|
-
|
1072
|
-
<div class="block responsive_apppage_details_left">
|
1073
|
-
<a class="btnv6_blue_hoverfade btn_medium" href="#" onclick="ShowShareDialog(); return false;"><span>Share</span></a>
|
1074
|
-
<a class="btnv6_blue_hoverfade btn_medium" href="#" onclick="ShowEmbedWidget(10); return false;"><span>Embed</span></a>
|
1075
|
-
<a id="ReportAppBtn" class="btnv6_blue_hoverfade btn_medium" href="javascript:void(0)" onclick="ShowReportDialog(10)"><span data-store-tooltip="Report this Product"><i class="ico16 reportv6"></i> </span></a>
|
1076
|
-
</div>
|
1077
|
-
|
1078
|
-
<div class="block responsive_apppage_reviewblock">
|
1079
|
-
<div id="game_area_metascore">
|
1080
|
-
<span>88</span><span class="ms_slash">/</span><span class="ms_base">100</span>
|
1081
|
-
</div>
|
1082
|
-
<div id="game_area_metalink"><a href="http://www.metacritic.com/game/pc/counter-strike" target="_blank">Read Critic Reviews</a> <img src="http://store.akamai.steamstatic.com/public/images/ico/iconExternalLink.gif" border="0" align="bottom"></div>
|
1083
|
-
</div>
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1087
|
-
</div>
|
1088
|
-
<!-- End Right Column -->
|
1089
|
-
|
1090
|
-
|
1091
|
-
<div class="leftcol game_description_column">
|
1092
|
-
|
1093
|
-
|
1094
|
-
<div id="game_area_purchase">
|
1095
|
-
|
1096
|
-
|
1097
|
-
|
1098
|
-
|
1099
|
-
|
1100
|
-
|
1101
|
-
|
1102
|
-
|
1103
|
-
|
1104
|
-
|
1105
|
-
<!--[if lte IE 7]>
|
1106
|
-
<style type="text/css">
|
1107
|
-
.game_area_purchase_game_dropdown_right_panel .btn_addtocart { float: none; }
|
1108
|
-
</style>
|
1109
|
-
<![endif]-->
|
1110
|
-
<h2 class="gradientbg">Packages that include this game</h2><div class="game_area_purchase_game_wrapper">
|
1111
|
-
<div class="game_area_purchase_game">
|
1112
|
-
<form name="add_to_cart_7" action="http://store.steampowered.com/cart/" method="POST">
|
1113
|
-
<input type="hidden" name="snr" value="1_5_9__403">
|
1114
|
-
<input type="hidden" name="action" value="add_to_cart">
|
1115
|
-
<input type="hidden" name="sessionid" value="2a7336c4facecac0ee38f8a6">
|
1116
|
-
<input type="hidden" name="subid" value="7">
|
1117
|
-
</form>
|
1118
|
-
<div class="game_area_purchase_platform"><span class="platform_img win"></span><span class="platform_img mac"></span><span class="platform_img linux"></span><span class="platform_img steamplay"></span></div>
|
1119
|
-
<h1>Buy Counter-Strike: Condition Zero</h1>
|
1120
|
-
<p class="package_contents">
|
1121
|
-
<b>Includes 2 items:</b>
|
1122
|
-
Counter-Strike, Counter-Strike: Condition Zero </p>
|
1123
|
-
|
1124
|
-
<div class="game_purchase_action">
|
1125
|
-
<div class="game_purchase_action_bg">
|
1126
|
-
<div class="btn_addtocart btn_packageinfo">
|
1127
|
-
<a class="btnv6_blue_blue_innerfade btn_medium" href="http://store.steampowered.com/app/10/?snr=1_5_9__403">
|
1128
|
-
<span>Package info</span>
|
1129
|
-
</a>
|
1130
|
-
</div>
|
1131
|
-
</div>
|
1132
|
-
<div class="game_purchase_action_bg">
|
1133
|
-
<div class="game_purchase_price price">
|
1134
|
-
CDN$ 10.99 </div>
|
1135
|
-
<div class="btn_addtocart">
|
1136
|
-
|
1137
|
-
|
1138
|
-
<a class="btnv6_green_white_innerfade btn_medium" href="javascript:addToCart(7);">
|
1139
|
-
<span>Add to Cart</span>
|
1140
|
-
</a>
|
1141
|
-
|
1142
|
-
</div>
|
1143
|
-
</div>
|
1144
|
-
</div>
|
1145
|
-
</div>
|
1146
|
-
|
1147
|
-
|
1148
|
-
</div>
|
1149
|
-
<div class="game_area_purchase_game_wrapper">
|
1150
|
-
<div class="game_area_purchase_game">
|
1151
|
-
<form name="add_to_cart_41" action="http://store.steampowered.com/cart/" method="POST">
|
1152
|
-
<input type="hidden" name="snr" value="1_5_9__403">
|
1153
|
-
<input type="hidden" name="action" value="add_to_cart">
|
1154
|
-
<input type="hidden" name="sessionid" value="2a7336c4facecac0ee38f8a6">
|
1155
|
-
<input type="hidden" name="subid" value="41">
|
1156
|
-
</form>
|
1157
|
-
<div class="game_area_purchase_platform"><span class="platform_img win"></span><span class="platform_img mac"></span><span class="platform_img linux"></span><span class="platform_img steamplay"></span></div>
|
1158
|
-
<h1>Buy Counter-Strike 1 Anthology</h1>
|
1159
|
-
<p class="package_contents">
|
1160
|
-
<b>Includes 5 items:</b>
|
1161
|
-
Counter-Strike, Counter-Strike: Condition Zero, Day of Defeat, Deathmatch Classic, Ricochet </p>
|
1162
|
-
|
1163
|
-
<div class="game_purchase_action">
|
1164
|
-
<div class="game_purchase_action_bg">
|
1165
|
-
<div class="btn_addtocart btn_packageinfo">
|
1166
|
-
<a class="btnv6_blue_blue_innerfade btn_medium" href="http://store.steampowered.com/sub/41/?snr=1_5_9__403">
|
1167
|
-
<span>Package info</span>
|
1168
|
-
</a>
|
1169
|
-
</div>
|
1170
|
-
</div>
|
1171
|
-
<div class="game_purchase_action_bg">
|
1172
|
-
<div class="game_purchase_price price">
|
1173
|
-
CDN$ 16.99 </div>
|
1174
|
-
<div class="btn_addtocart">
|
1175
|
-
|
1176
|
-
|
1177
|
-
<a class="btnv6_green_white_innerfade btn_medium" href="javascript:addToCart(41);">
|
1178
|
-
<span>Add to Cart</span>
|
1179
|
-
</a>
|
1180
|
-
|
1181
|
-
</div>
|
1182
|
-
</div>
|
1183
|
-
</div>
|
1184
|
-
</div>
|
1185
|
-
|
1186
|
-
|
1187
|
-
</div>
|
1188
|
-
<div class="game_area_purchase_game_wrapper">
|
1189
|
-
<div class="game_area_purchase_game">
|
1190
|
-
<form name="add_to_cart_54030" action="http://store.steampowered.com/cart/" method="POST">
|
1191
|
-
<input type="hidden" name="snr" value="1_5_9__403">
|
1192
|
-
<input type="hidden" name="action" value="add_to_cart">
|
1193
|
-
<input type="hidden" name="sessionid" value="2a7336c4facecac0ee38f8a6">
|
1194
|
-
<input type="hidden" name="subid" value="54030">
|
1195
|
-
</form>
|
1196
|
-
<div class="game_area_purchase_platform"><span class="platform_img win"></span><span class="platform_img mac"></span><span class="platform_img linux"></span><span class="platform_img steamplay"></span></div>
|
1197
|
-
<h1>Buy Counter-Strike Complete</h1>
|
1198
|
-
<p class="package_contents">
|
1199
|
-
<b>Includes 4 items:</b>
|
1200
|
-
Counter-Strike: Global Offensive, Counter-Strike: Source, Counter-Strike, Counter-Strike: Condition Zero </p>
|
1201
|
-
|
1202
|
-
<div class="game_purchase_action">
|
1203
|
-
<div class="game_purchase_action_bg">
|
1204
|
-
<div class="btn_addtocart btn_packageinfo">
|
1205
|
-
<a class="btnv6_blue_blue_innerfade btn_medium" href="http://store.steampowered.com/sub/54030/?snr=1_5_9__403">
|
1206
|
-
<span>Package info</span>
|
1207
|
-
</a>
|
1208
|
-
</div>
|
1209
|
-
</div>
|
1210
|
-
<div class="game_purchase_action_bg">
|
1211
|
-
<div class="game_purchase_price price">
|
1212
|
-
CDN$ 32.99 </div>
|
1213
|
-
<div class="btn_addtocart">
|
1214
|
-
|
1215
|
-
|
1216
|
-
<a class="btnv6_green_white_innerfade btn_medium" href="javascript:addToCart(54030);">
|
1217
|
-
<span>Add to Cart</span>
|
1218
|
-
</a>
|
1219
|
-
|
1220
|
-
</div>
|
1221
|
-
</div>
|
1222
|
-
</div>
|
1223
|
-
</div>
|
1224
|
-
|
1225
|
-
|
1226
|
-
</div>
|
1227
|
-
<div class="game_area_purchase_game_wrapper">
|
1228
|
-
<div class="game_area_purchase_game">
|
1229
|
-
<form name="add_to_cart_29197" action="http://store.steampowered.com/cart/" method="POST">
|
1230
|
-
<input type="hidden" name="snr" value="1_5_9__403">
|
1231
|
-
<input type="hidden" name="action" value="add_to_cart">
|
1232
|
-
<input type="hidden" name="sessionid" value="2a7336c4facecac0ee38f8a6">
|
1233
|
-
<input type="hidden" name="subid" value="29197">
|
1234
|
-
</form>
|
1235
|
-
<div class="game_area_purchase_platform"><span class="platform_img win"></span><span class="platform_img mac"></span><span class="platform_img steamplay"></span></div>
|
1236
|
-
<h1>Buy Valve Complete Pack</h1>
|
1237
|
-
<p class="package_contents">
|
1238
|
-
<b>Includes 24 items:</b>
|
1239
|
-
Counter-Strike: Global Offensive, Portal 2, Left 4 Dead 2, Left 4 Dead, Portal, Team Fortress 2, Team Fortress Classic, Counter-Strike: Source, Counter-Strike, Counter-Strike: Condition Zero, Day of Defeat, Day of Defeat: Source, Half-Life 2, Half-Life 2: Deathmatch, Half-Life 2: Lost Coast, Half-Life 2: Episode One, Half-Life 2: Episode Two, Half-Life, Half-Life: Blue Shift, Half-Life: Opposing Force, Half-Life Deathmatch: Source, Half-Life: Source, Ricochet, Deathmatch Classic </p>
|
1240
|
-
|
1241
|
-
<div class="game_purchase_action">
|
1242
|
-
<div class="game_purchase_action_bg">
|
1243
|
-
<div class="btn_addtocart btn_packageinfo">
|
1244
|
-
<a class="btnv6_blue_blue_innerfade btn_medium" href="http://store.steampowered.com/sub/29197/?snr=1_5_9__403">
|
1245
|
-
<span>Package info</span>
|
1246
|
-
</a>
|
1247
|
-
</div>
|
1248
|
-
</div>
|
1249
|
-
<div class="game_purchase_action_bg">
|
1250
|
-
<div class="game_purchase_price price">
|
1251
|
-
CDN$ 109.99 </div>
|
1252
|
-
<div class="btn_addtocart">
|
1253
|
-
|
1254
|
-
|
1255
|
-
<a class="btnv6_green_white_innerfade btn_medium" href="javascript:addToCart(29197);">
|
1256
|
-
<span>Add to Cart</span>
|
1257
|
-
</a>
|
1258
|
-
|
1259
|
-
</div>
|
1260
|
-
</div>
|
1261
|
-
</div>
|
1262
|
-
</div>
|
1263
|
-
|
1264
|
-
|
1265
|
-
</div>
|
1266
|
-
|
1267
|
-
</div>
|
1268
|
-
<!-- game_area_purchase -->
|
1269
|
-
|
1270
|
-
|
1271
|
-
<div class="purchase_area_spacer"> </div>
|
1272
|
-
|
1273
|
-
<div class="steam_curators_block block responsive_apppage_reviewblock">
|
1274
|
-
<div class="block_header">
|
1275
|
-
<h2>Recommended By Curators</h2>
|
1276
|
-
</div>
|
1277
|
-
|
1278
|
-
<div class="steam_curators_grid two_wide">
|
1279
|
-
<div class="steam_curator_icon small" data-store-tooltip="Anime 1.0">
|
1280
|
-
<a href="http://store.steampowered.com/curator/3213146-Anime-1.0/?appid=10" >
|
1281
|
-
<div class="steam_curator_border"></div>
|
1282
|
-
<img src="http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/f4/f44c64df11ab192966929c859d29d8db781e1e64.jpg">
|
1283
|
-
</a>
|
1284
|
-
</div>
|
1285
|
-
<div class="steam_curator_icon small" data-store-tooltip="www.gamersbook.com">
|
1286
|
-
<a href="http://store.steampowered.com/curator/489958-www.gamersbook.com/?appid=10" >
|
1287
|
-
<div class="steam_curator_border"></div>
|
1288
|
-
<img src="http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/53/53f89400a96611bd13884432f2cbbdc43dab719a.jpg">
|
1289
|
-
</a>
|
1290
|
-
</div>
|
1291
|
-
<div class="steam_curator_icon small" data-store-tooltip="Original Traders Group">
|
1292
|
-
<a href="http://store.steampowered.com/curator/6993153-Original-Traders-Group/?appid=10" >
|
1293
|
-
<div class="steam_curator_border"></div>
|
1294
|
-
<img src="http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/56/568f4a84bd1dddb905225d08f7925017af5c8a18.jpg">
|
1295
|
-
</a>
|
1296
|
-
</div>
|
1297
|
-
<div style="clear: left;"></div>
|
1298
|
-
</div>
|
1299
|
-
|
1300
|
-
<div class="steam_curator_selected">
|
1301
|
-
<div class="steam_curator_icon medium "><a href="http://store.steampowered.com/curator/4771848-r-pcmasterrace-Group/?appid=10"><img src="http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/84/84aab2b8f255d148608158b550e4f7877d53f773_medium.jpg" data-store-tooltip="/r/pcmasterrace Group"></a></div>
|
1302
|
-
<div class="steam_curator_recommendation">
|
1303
|
-
|
1304
|
-
"Still fantastic after all these years. The game that molded a generation."
|
1305
|
-
|
1306
|
-
|
1307
|
-
</div>
|
1308
|
-
</div>
|
1309
|
-
|
1310
|
-
<div style="clear: both"></div>
|
1311
|
-
</div>
|
1312
|
-
|
1313
|
-
|
1314
|
-
|
1315
|
-
<div class="game_page_autocollapse" style="max-height: 450px;">
|
1316
|
-
<div id="game_area_description" class="game_area_description">
|
1317
|
-
<h2>About This Game</h2>
|
1318
|
-
Play the world's number 1 online action game. Engage in an incredibly realistic brand of terrorist warfare in this wildly popular team-based game. Ally with teammates to complete strategic missions. Take out enemy sites. Rescue hostages. Your role affects your team's success. Your team's success affects your role. </div>
|
1319
|
-
</div>
|
1320
|
-
|
1321
|
-
|
1322
|
-
<div class="game_page_autocollapse sys_req" style="max-height: 220px;">
|
1323
|
-
<h2>System Requirements</h2>
|
1324
|
-
<div class="sysreq_tabs">
|
1325
|
-
<div class="sysreq_tab active" data-os="win">
|
1326
|
-
Windows </div>
|
1327
|
-
<div class="sysreq_tab " data-os="mac">
|
1328
|
-
Mac OS X </div>
|
1329
|
-
<div class="sysreq_tab " data-os="linux">
|
1330
|
-
SteamOS + Linux </div>
|
1331
|
-
<div style="clear: left;"></div>
|
1332
|
-
</div>
|
1333
|
-
<div class="sysreq_contents">
|
1334
|
-
<div class="game_area_sys_req sysreq_content active" data-os="win">
|
1335
|
-
<div class="game_area_sys_req_full">
|
1336
|
-
<ul>
|
1337
|
-
|
1338
|
-
<p><strong>Minimum:</strong> 500 mhz processor, 96mb ram, 16mb video card, Windows XP, Mouse, Keyboard, Internet Connection<br /></p>
|
1339
|
-
<p><strong>Recommended:</strong> 800 mhz processor, 128mb ram, 32mb+ video card, Windows XP, Mouse, Keyboard, Internet Connection<br /></p>
|
1340
|
-
</ul>
|
1341
|
-
</div>
|
1342
|
-
<div style="clear: both;"></div>
|
1343
|
-
</div>
|
1344
|
-
<div class="game_area_sys_req sysreq_content " data-os="mac">
|
1345
|
-
<div class="game_area_sys_req_full">
|
1346
|
-
<ul>
|
1347
|
-
Minimum: OS X Snow Leopard 10.6.3, 1GB RAM, 4GB Hard Drive Space,NVIDIA GeForce 8 or higher, ATI X1600 or higher, or Intel HD 3000 or higher Mouse, Keyboard, Internet Connection </ul>
|
1348
|
-
</div>
|
1349
|
-
<div style="clear: both;"></div>
|
1350
|
-
</div>
|
1351
|
-
<div class="game_area_sys_req sysreq_content " data-os="linux">
|
1352
|
-
<div class="game_area_sys_req_full">
|
1353
|
-
<ul>
|
1354
|
-
Minimum: Linux Ubuntu 12.04, Dual-core from Intel or AMD at 2.8 GHz, 1GB Memory, nVidia GeForce 8600/9600GT, ATI/AMD Radeaon HD2600/3600 (Graphic Drivers: nVidia 310, AMD 12.11), OpenGL 2.1, 4GB Hard Drive Space, OpenAL Compatible Sound Card </ul>
|
1355
|
-
</div>
|
1356
|
-
<div style="clear: both;"></div>
|
1357
|
-
</div>
|
1358
|
-
</div>
|
1359
|
-
</div>
|
1360
|
-
<script type="text/javascript">
|
1361
|
-
$J( function() {
|
1362
|
-
var $Tabs = $J('.sysreq_tab');
|
1363
|
-
var $Content = $J('.sysreq_content');
|
1364
|
-
|
1365
|
-
$Tabs.click( function() {
|
1366
|
-
var $Tab = $J(this);
|
1367
|
-
$Tabs.removeClass('active');
|
1368
|
-
$Tab.addClass('active');
|
1369
|
-
|
1370
|
-
$Content.removeClass('active');
|
1371
|
-
$Content.filter('[data-os=' + $Tab.data('os') + ']').addClass('active');
|
1372
|
-
|
1373
|
-
$Content.trigger('gamepage_autocollapse_expand');
|
1374
|
-
});
|
1375
|
-
} );
|
1376
|
-
</script>
|
1377
|
-
|
1378
|
-
|
1379
|
-
<div class="block">
|
1380
|
-
<div class="block_header">
|
1381
|
-
<div class="right"><a href="http://store.steampowered.com/mods/10/">See All</a></div>
|
1382
|
-
<h4>Community-Made Mods <span class="subh4">For this game</span></h4>
|
1383
|
-
</div>
|
1384
|
-
<div class="block_responsive_horizontal_scroll store_horizontal_autoslider">
|
1385
|
-
<div class="block_content nopad">
|
1386
|
-
<a class="small_cap" id="recommendation_cap_0" href="http://store.steampowered.com/app/354900/" data-ds-appid="354900" onmouseover="GameHover( this, event, 'global_hover', {"type":"app","id":354900,"public":1,"v6":1} );" onmouseout="HideGameHover( this, event, 'global_hover' )">
|
1387
|
-
<img class="small_cap_img" src="http://cdn.akamai.steamstatic.com/steam/apps/354900/capsule_184x69.jpg?t=1440447670" border="0" width="171" height="64"/>
|
1388
|
-
<h4>Headcrab Frenzy!</h4>
|
1389
|
-
|
1390
|
-
</a>
|
1391
|
-
<a class="small_cap" id="recommendation_cap_1" href="http://store.steampowered.com/app/261980/" data-ds-appid="261980" onmouseover="GameHover( this, event, 'global_hover', {"type":"app","id":261980,"public":1,"v6":1} );" onmouseout="HideGameHover( this, event, 'global_hover' )">
|
1392
|
-
<img class="small_cap_img" src="http://cdn.akamai.steamstatic.com/steam/apps/261980/capsule_184x69.jpg?t=1438399306" border="0" width="171" height="64"/>
|
1393
|
-
<h4>Half-Life: Before</h4>
|
1394
|
-
|
1395
|
-
</a>
|
1396
|
-
<a class="small_cap" id="recommendation_cap_2" href="http://store.steampowered.com/app/90044/" data-ds-appid="90044" onmouseover="GameHover( this, event, 'global_hover', {"type":"app","id":90044,"public":1,"v6":1} );" onmouseout="HideGameHover( this, event, 'global_hover' )">
|
1397
|
-
<img class="small_cap_img" src="http://cdn.akamai.steamstatic.com/steam/apps/90044/capsule_184x69.jpg?t=1270770953" border="0" width="171" height="64"/>
|
1398
|
-
<h4>Zombie Panic</h4>
|
1399
|
-
|
1400
|
-
</a>
|
1401
|
-
<div style="clear: left;"></div>
|
1402
|
-
</div>
|
1403
|
-
</div>
|
1404
|
-
</div>
|
1405
|
-
|
1406
|
-
<div class="block" id="recommended_block">
|
1407
|
-
<div class="block_header">
|
1408
|
-
<div class="right">
|
1409
|
-
<a href="http://store.steampowered.com/recommended/morelike/app/10/?snr=1_5_9__300">See all</a>
|
1410
|
-
</div>
|
1411
|
-
<h4>More like this</h4>
|
1412
|
-
</div>
|
1413
|
-
<div class="block_responsive_horizontal_scroll store_horizontal_autoslider block_content nopad" id="recommended_block_content">
|
1414
|
-
</div>
|
1415
|
-
</div>
|
1416
|
-
|
1417
|
-
<div id="responsive_apppage_reviewblock_ctn" class="rightcol game_meta_data"></div>
|
1418
|
-
|
1419
|
-
<div id="app_reviews_hash" class="app_reviews_area">
|
1420
|
-
<script>
|
1421
|
-
jQuery( document ).ready(function( $ ) {
|
1422
|
-
CollapseLongReviews();
|
1423
|
-
});
|
1424
|
-
</script>
|
1425
|
-
<div class="user_reviews_header no_bottom_margin">
|
1426
|
-
Helpful customer reviews <div class="user_reviews_see_all">
|
1427
|
-
<a href="http://store.steampowered.com/reviews/?snr=1_5_9_">About Reviews</a>
|
1428
|
-
</div>
|
1429
|
-
</div>
|
1430
|
-
<div class="user_reviews_filter_bar">
|
1431
|
-
<span class="user_reviews_filter_text">Filter:</span>
|
1432
|
-
<div class="user_reviews_tab active" id="ReviewsTab_all">
|
1433
|
-
<a href="javascript:void(0)" onclick="SelectReviews( 10, 'all', 180, 'english' );">
|
1434
|
-
<span>Helpful</span>
|
1435
|
-
</a>
|
1436
|
-
</div>
|
1437
|
-
<div class="user_reviews_tab" id="ReviewsTab_recent">
|
1438
|
-
<a href="javascript:void(0)" onclick="SelectReviews( 10, 'recent', 180, 'english' );">
|
1439
|
-
<span>Recent</span>
|
1440
|
-
</a>
|
1441
|
-
</div>
|
1442
|
-
<div class="user_reviews_tab" id="ReviewsTab_positive">
|
1443
|
-
<a href="javascript:void(0)" onclick="SelectReviews( 10, 'positive', 180, 'english' );">
|
1444
|
-
<span>Positive </span> <span class="user_reviews_count">(51,029)</span>
|
1445
|
-
</a>
|
1446
|
-
</div>
|
1447
|
-
<div class="user_reviews_tab" id="ReviewsTab_negative">
|
1448
|
-
<a href="javascript:void(0)" onclick="SelectReviews( 10, 'negative', 180, 'english' );">
|
1449
|
-
<span>Negative </span> <span class="user_reviews_count">(1,013)</span>
|
1450
|
-
</a>
|
1451
|
-
</div>
|
1452
|
-
<div class="user_reviews_tab" id="ReviewsTab_funny">
|
1453
|
-
<a href="javascript:void(0)" onclick="SelectReviews( 10, 'funny', 180, 'english' );">
|
1454
|
-
<span>Funny</span>
|
1455
|
-
</a>
|
1456
|
-
</div>
|
1457
|
-
<div style="clear: left;"></div>
|
1458
|
-
</div>
|
1459
|
-
|
1460
|
-
<div id="LoadingMoreReviewsrecent" style="display: none" class="loading_more_reviews">
|
1461
|
-
<img src="http://store.akamai.steamstatic.com/public/shared/images/throbber.gif" class="loading_more_reviews_throbber">
|
1462
|
-
Loading reviews... </div>
|
1463
|
-
<div id="LoadingMoreReviewspositive" style="display: none" class="loading_more_reviews">
|
1464
|
-
<img src="http://store.akamai.steamstatic.com/public/shared/images/throbber.gif" class="loading_more_reviews_throbber">
|
1465
|
-
Loading reviews... </div>
|
1466
|
-
<div id="LoadingMoreReviewsnegative" style="display: none" class="loading_more_reviews">
|
1467
|
-
<img src="http://store.akamai.steamstatic.com/public/shared/images/throbber.gif" class="loading_more_reviews_throbber">
|
1468
|
-
Loading reviews... </div>
|
1469
|
-
<div id="LoadingMoreReviewsfunny" style="display: none" class="loading_more_reviews">
|
1470
|
-
<img src="http://store.akamai.steamstatic.com/public/shared/images/throbber.gif" class="loading_more_reviews_throbber">
|
1471
|
-
Loading reviews... </div>
|
1472
|
-
|
1473
|
-
<div id="Reviews_positive" style="display: none" class="user_reviews_container"></div>
|
1474
|
-
<div id="Reviews_negative" style="display: none" class="user_reviews_container"></div>
|
1475
|
-
<div id="Reviews_recent" style="display: none" class="user_reviews_container"></div>
|
1476
|
-
<div id="Reviews_funny" style="display: none" class="user_reviews_container"></div>
|
1477
|
-
<div id="Reviews_all" class="user_reviews_container">
|
1478
|
-
<div id="Reviewsall0">
|
1479
|
-
<div class="review_box">
|
1480
|
-
<div class="header">
|
1481
|
-
524 of 555 people (94%) found this review helpful <div class="commentCount"><a href="http://steamcommunity.com/id/SolosisGaming/recommended/10/">9 <img src="http://store.akamai.steamstatic.com/public/shared/images/comment_quoteicon.png" align="center"></a></div>
|
1482
|
-
<br>72 people found this review funny </div>
|
1483
|
-
<div style="clear: left;"></div>
|
1484
|
-
|
1485
|
-
<div id="ReviewContentall17254058">
|
1486
|
-
<div class="leftcol">
|
1487
|
-
<div class="avatar">
|
1488
|
-
<a href="http://steamcommunity.com/id/SolosisGaming/">
|
1489
|
-
<div class="playerAvatar offline" data-miniprofile="134349512">
|
1490
|
-
<img src="http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/78/787c1160e51b54d5fc2cf50d875601b071883992.jpg" srcset="http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/78/787c1160e51b54d5fc2cf50d875601b071883992.jpg 1x, http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/78/787c1160e51b54d5fc2cf50d875601b071883992_medium.jpg 2x"> </div>
|
1491
|
-
</a>
|
1492
|
-
</div>
|
1493
|
-
<div class="persona_name"><a href="http://steamcommunity.com/id/SolosisGaming/" data-miniprofile="134349512">Solosis❤</a></div>
|
1494
|
-
<div class="num_owned_games"><a href="http://steamcommunity.com/id/SolosisGaming/games/?tab=all">52 products in account</a></div>
|
1495
|
-
<div class="num_reviews"><a href="http://steamcommunity.com/id/SolosisGaming/recommended/">4 reviews</a></div>
|
1496
|
-
</div>
|
1497
|
-
|
1498
|
-
<div class="rightcol">
|
1499
|
-
<div class="vote_header">
|
1500
|
-
<div class="thumb">
|
1501
|
-
<a href="http://steamcommunity.com/id/SolosisGaming/recommended/10/"><img src="http://store.akamai.steamstatic.com/public/shared/images/userreviews/icon_thumbsUp_v6.png" width="40" height="40"></a>
|
1502
|
-
</div>
|
1503
|
-
|
1504
|
-
<div class="title ellipsis"><a href="http://steamcommunity.com/id/SolosisGaming/recommended/10/">Recommended</a></div>
|
1505
|
-
<div class="hours ellipsis">3.7 hrs on record</div>
|
1506
|
-
</div>
|
1507
|
-
|
1508
|
-
<div class="postedDate">Posted: 27 July </div>
|
1509
|
-
|
1510
|
-
|
1511
|
-
<div class="content">
|
1512
|
-
• Do you like original games?<br>• Do you like games that don't lag?<br>• Do you like games you can run on low end PC's?<br>• Do you like games where you don't meet children who have slept with your mother?<br><br>Then this is for you! <div class="gradient"></div>
|
1513
|
-
</div>
|
1514
|
-
|
1515
|
-
<div class="posted">
|
1516
|
-
<div class="view_more"><a href="#" onclick="UserReviewShowMore('17254058', 'all' ); return false;">Read More</a></div>
|
1517
|
-
|
1518
|
-
</div>
|
1519
|
-
|
1520
|
-
<div class="hr"></div>
|
1521
|
-
<div class="control_block">
|
1522
|
-
|
1523
|
-
<span class="text">Was this review helpful?</span>
|
1524
|
-
|
1525
|
-
<a href="javascript:void(0)" onclick="UserReviewVoteUp( '17254058' )" class="btnv6_grey_black btn_small_thin ico_hover " id="RecommendationVoteUpBtnall17254058"><span><i class="ico16 thumb_upv6"></i> Yes</span></a>
|
1526
|
-
<a href="javascript:void(0)" onclick="UserReviewVoteDown( '17254058' )" class="btnv6_grey_black btn_small_thin ico_hover " id="RecommendationVoteDownBtnall17254058"><span><i class="ico16 thumb_downv6"></i> No</span></a>
|
1527
|
-
<a href="javascript:void(0)" onclick="UserReviewVoteTag( '17254058', 1, 'RecommendationVoteTagBtnall17254058_1' )" class="btnv6_grey_black btn_small_thin ico_hover " id="RecommendationVoteTagBtnall17254058_1"><span><i class="ico16 funny"></i> Funny</span></a>
|
1528
|
-
|
1529
|
-
</div>
|
1530
|
-
</div>
|
1531
|
-
<div style="clear: left;"></div>
|
1532
|
-
</div>
|
1533
|
-
</div>
|
1534
|
-
|
1535
|
-
<div class="review_box">
|
1536
|
-
<div class="header">
|
1537
|
-
332 of 350 people (95%) found this review helpful <div class="commentCount"><a href="http://steamcommunity.com/profiles/76561197977710601/recommended/10/">4 <img src="http://store.akamai.steamstatic.com/public/shared/images/comment_quoteicon.png" align="center"></a></div>
|
1538
|
-
<br>8 people found this review funny </div>
|
1539
|
-
<div style="clear: left;"></div>
|
1540
|
-
|
1541
|
-
<div id="ReviewContentall16426484">
|
1542
|
-
<div class="leftcol">
|
1543
|
-
<div class="avatar">
|
1544
|
-
<a href="http://steamcommunity.com/profiles/76561197977710601/">
|
1545
|
-
<div class="playerAvatar in-game" data-miniprofile="17444873">
|
1546
|
-
<img src="http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/3e/3e5385ad8fea263fc41784cd274c7564ec81059f.jpg" srcset="http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/3e/3e5385ad8fea263fc41784cd274c7564ec81059f.jpg 1x, http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/3e/3e5385ad8fea263fc41784cd274c7564ec81059f_medium.jpg 2x"> </div>
|
1547
|
-
</a>
|
1548
|
-
</div>
|
1549
|
-
<div class="persona_name"><a href="http://steamcommunity.com/profiles/76561197977710601/" data-miniprofile="17444873">Commandeer #3sixty</a></div>
|
1550
|
-
<div class="num_owned_games"><a href="http://steamcommunity.com/profiles/76561197977710601/games/?tab=all">17 products in account</a></div>
|
1551
|
-
<div class="num_reviews"><a href="http://steamcommunity.com/profiles/76561197977710601/recommended/">1 review</a></div>
|
1552
|
-
</div>
|
1553
|
-
|
1554
|
-
<div class="rightcol">
|
1555
|
-
<div class="vote_header">
|
1556
|
-
<div class="thumb">
|
1557
|
-
<a href="http://steamcommunity.com/profiles/76561197977710601/recommended/10/"><img src="http://store.akamai.steamstatic.com/public/shared/images/userreviews/icon_thumbsUp_v6.png" width="40" height="40"></a>
|
1558
|
-
</div>
|
1559
|
-
|
1560
|
-
<div class="title ellipsis"><a href="http://steamcommunity.com/profiles/76561197977710601/recommended/10/">Recommended</a></div>
|
1561
|
-
<div class="hours ellipsis">4,040.7 hrs on record</div>
|
1562
|
-
</div>
|
1563
|
-
|
1564
|
-
<div class="postedDate">Posted: 15 June </div>
|
1565
|
-
|
1566
|
-
|
1567
|
-
<div class="content">
|
1568
|
-
3800+ hours speak for themselves I believe. <div class="gradient"></div>
|
1569
|
-
</div>
|
1570
|
-
|
1571
|
-
<div class="posted">
|
1572
|
-
<div class="view_more"><a href="#" onclick="UserReviewShowMore('16426484', 'all' ); return false;">Read More</a></div>
|
1573
|
-
|
1574
|
-
</div>
|
1575
|
-
|
1576
|
-
<div class="hr"></div>
|
1577
|
-
<div class="control_block">
|
1578
|
-
|
1579
|
-
<span class="text">Was this review helpful?</span>
|
1580
|
-
|
1581
|
-
<a href="javascript:void(0)" onclick="UserReviewVoteUp( '16426484' )" class="btnv6_grey_black btn_small_thin ico_hover " id="RecommendationVoteUpBtnall16426484"><span><i class="ico16 thumb_upv6"></i> Yes</span></a>
|
1582
|
-
<a href="javascript:void(0)" onclick="UserReviewVoteDown( '16426484' )" class="btnv6_grey_black btn_small_thin ico_hover " id="RecommendationVoteDownBtnall16426484"><span><i class="ico16 thumb_downv6"></i> No</span></a>
|
1583
|
-
<a href="javascript:void(0)" onclick="UserReviewVoteTag( '16426484', 1, 'RecommendationVoteTagBtnall16426484_1' )" class="btnv6_grey_black btn_small_thin ico_hover " id="RecommendationVoteTagBtnall16426484_1"><span><i class="ico16 funny"></i> Funny</span></a>
|
1584
|
-
|
1585
|
-
</div>
|
1586
|
-
</div>
|
1587
|
-
<div style="clear: left;"></div>
|
1588
|
-
</div>
|
1589
|
-
</div>
|
1590
|
-
|
1591
|
-
<div class="review_box">
|
1592
|
-
<div class="header">
|
1593
|
-
160 of 175 people (91%) found this review helpful <div class="commentCount"><a href="http://steamcommunity.com/id/RoPenguin/recommended/10/">4 <img src="http://store.akamai.steamstatic.com/public/shared/images/comment_quoteicon.png" align="center"></a></div>
|
1594
|
-
<br>16 people found this review funny </div>
|
1595
|
-
<div style="clear: left;"></div>
|
1596
|
-
|
1597
|
-
<div id="ReviewContentall16128389">
|
1598
|
-
<div class="leftcol">
|
1599
|
-
<div class="avatar">
|
1600
|
-
<a href="http://steamcommunity.com/id/RoPenguin/">
|
1601
|
-
<div class="playerAvatar offline" data-miniprofile="73719515">
|
1602
|
-
<img src="http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/4d/4d649b83998a3fa796a2435ae27e9388d04f214d.jpg" srcset="http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/4d/4d649b83998a3fa796a2435ae27e9388d04f214d.jpg 1x, http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/4d/4d649b83998a3fa796a2435ae27e9388d04f214d_medium.jpg 2x"> </div>
|
1603
|
-
</a>
|
1604
|
-
</div>
|
1605
|
-
<div class="persona_name"><a href="http://steamcommunity.com/id/RoPenguin/" data-miniprofile="73719515">[JC]Pocket Penguin</a></div>
|
1606
|
-
<div class="num_reviews"><a href="http://steamcommunity.com/id/RoPenguin/recommended/">1 review</a></div>
|
1607
|
-
</div>
|
1608
|
-
|
1609
|
-
<div class="rightcol">
|
1610
|
-
<div class="vote_header">
|
1611
|
-
<div class="thumb">
|
1612
|
-
<a href="http://steamcommunity.com/id/RoPenguin/recommended/10/"><img src="http://store.akamai.steamstatic.com/public/shared/images/userreviews/icon_thumbsUp_v6.png" width="40" height="40"></a>
|
1613
|
-
</div>
|
1614
|
-
|
1615
|
-
<div class="title ellipsis"><a href="http://steamcommunity.com/id/RoPenguin/recommended/10/">Recommended</a></div>
|
1616
|
-
<div class="hours ellipsis">56.8 hrs on record</div>
|
1617
|
-
</div>
|
1618
|
-
|
1619
|
-
<div class="postedDate">Posted: 1 June </div>
|
1620
|
-
|
1621
|
-
|
1622
|
-
<div class="content">
|
1623
|
-
10/10 Would get "Fire in the hole" tattooed on my ♥♥♥. <br>Again. <div class="gradient"></div>
|
1624
|
-
</div>
|
1625
|
-
|
1626
|
-
<div class="posted">
|
1627
|
-
<div class="view_more"><a href="#" onclick="UserReviewShowMore('16128389', 'all' ); return false;">Read More</a></div>
|
1628
|
-
|
1629
|
-
</div>
|
1630
|
-
|
1631
|
-
<div class="hr"></div>
|
1632
|
-
<div class="control_block">
|
1633
|
-
|
1634
|
-
<span class="text">Was this review helpful?</span>
|
1635
|
-
|
1636
|
-
<a href="javascript:void(0)" onclick="UserReviewVoteUp( '16128389' )" class="btnv6_grey_black btn_small_thin ico_hover " id="RecommendationVoteUpBtnall16128389"><span><i class="ico16 thumb_upv6"></i> Yes</span></a>
|
1637
|
-
<a href="javascript:void(0)" onclick="UserReviewVoteDown( '16128389' )" class="btnv6_grey_black btn_small_thin ico_hover " id="RecommendationVoteDownBtnall16128389"><span><i class="ico16 thumb_downv6"></i> No</span></a>
|
1638
|
-
<a href="javascript:void(0)" onclick="UserReviewVoteTag( '16128389', 1, 'RecommendationVoteTagBtnall16128389_1' )" class="btnv6_grey_black btn_small_thin ico_hover " id="RecommendationVoteTagBtnall16128389_1"><span><i class="ico16 funny"></i> Funny</span></a>
|
1639
|
-
|
1640
|
-
</div>
|
1641
|
-
</div>
|
1642
|
-
<div style="clear: left;"></div>
|
1643
|
-
</div>
|
1644
|
-
</div>
|
1645
|
-
|
1646
|
-
<div class="review_box">
|
1647
|
-
<div class="header">
|
1648
|
-
84 of 93 people (90%) found this review helpful <div class="commentCount"><a href="http://steamcommunity.com/id/LuckY9712/recommended/10/">5 <img src="http://store.akamai.steamstatic.com/public/shared/images/comment_quoteicon.png" align="center"></a></div>
|
1649
|
-
<br>13 people found this review funny </div>
|
1650
|
-
<div style="clear: left;"></div>
|
1651
|
-
|
1652
|
-
<div id="ReviewContentall17584190">
|
1653
|
-
<div class="leftcol">
|
1654
|
-
<div class="avatar">
|
1655
|
-
<a href="http://steamcommunity.com/id/LuckY9712/">
|
1656
|
-
<div class="playerAvatar offline" data-miniprofile="90107426">
|
1657
|
-
<img src="http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/cf/cf599c277dae740e7f14a113e5775bb2cf645b6d.jpg" srcset="http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/cf/cf599c277dae740e7f14a113e5775bb2cf645b6d.jpg 1x, http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/cf/cf599c277dae740e7f14a113e5775bb2cf645b6d_medium.jpg 2x"> </div>
|
1658
|
-
</a>
|
1659
|
-
</div>
|
1660
|
-
<div class="persona_name"><a href="http://steamcommunity.com/id/LuckY9712/" data-miniprofile="90107426">LuckY</a></div>
|
1661
|
-
<div class="num_owned_games"><a href="http://steamcommunity.com/id/LuckY9712/games/?tab=all">143 products in account</a></div>
|
1662
|
-
<div class="num_reviews"><a href="http://steamcommunity.com/id/LuckY9712/recommended/">8 reviews</a></div>
|
1663
|
-
</div>
|
1664
|
-
|
1665
|
-
<div class="rightcol">
|
1666
|
-
<div class="vote_header">
|
1667
|
-
<div class="thumb">
|
1668
|
-
<a href="http://steamcommunity.com/id/LuckY9712/recommended/10/"><img src="http://store.akamai.steamstatic.com/public/shared/images/userreviews/icon_thumbsUp_v6.png" width="40" height="40"></a>
|
1669
|
-
</div>
|
1670
|
-
|
1671
|
-
<div class="title ellipsis"><a href="http://steamcommunity.com/id/LuckY9712/recommended/10/">Recommended</a></div>
|
1672
|
-
<div class="hours ellipsis">1,138.0 hrs on record</div>
|
1673
|
-
</div>
|
1674
|
-
|
1675
|
-
<div class="postedDate">Posted: 17 August </div>
|
1676
|
-
|
1677
|
-
|
1678
|
-
<div class="content">
|
1679
|
-
Never gets old :) <div class="gradient"></div>
|
1680
|
-
</div>
|
1681
|
-
|
1682
|
-
<div class="posted">
|
1683
|
-
<div class="view_more"><a href="#" onclick="UserReviewShowMore('17584190', 'all' ); return false;">Read More</a></div>
|
1684
|
-
|
1685
|
-
</div>
|
1686
|
-
|
1687
|
-
<div class="hr"></div>
|
1688
|
-
<div class="control_block">
|
1689
|
-
|
1690
|
-
<span class="text">Was this review helpful?</span>
|
1691
|
-
|
1692
|
-
<a href="javascript:void(0)" onclick="UserReviewVoteUp( '17584190' )" class="btnv6_grey_black btn_small_thin ico_hover " id="RecommendationVoteUpBtnall17584190"><span><i class="ico16 thumb_upv6"></i> Yes</span></a>
|
1693
|
-
<a href="javascript:void(0)" onclick="UserReviewVoteDown( '17584190' )" class="btnv6_grey_black btn_small_thin ico_hover " id="RecommendationVoteDownBtnall17584190"><span><i class="ico16 thumb_downv6"></i> No</span></a>
|
1694
|
-
<a href="javascript:void(0)" onclick="UserReviewVoteTag( '17584190', 1, 'RecommendationVoteTagBtnall17584190_1' )" class="btnv6_grey_black btn_small_thin ico_hover " id="RecommendationVoteTagBtnall17584190_1"><span><i class="ico16 funny"></i> Funny</span></a>
|
1695
|
-
|
1696
|
-
</div>
|
1697
|
-
</div>
|
1698
|
-
<div style="clear: left;"></div>
|
1699
|
-
</div>
|
1700
|
-
</div>
|
1701
|
-
|
1702
|
-
<div class="review_box">
|
1703
|
-
<div class="header">
|
1704
|
-
73 of 80 people (91%) found this review helpful <div class="commentCount"><a href="http://steamcommunity.com/id/svirt/recommended/10/">4 <img src="http://store.akamai.steamstatic.com/public/shared/images/comment_quoteicon.png" align="center"></a></div>
|
1705
|
-
<br>3 people found this review funny </div>
|
1706
|
-
<div style="clear: left;"></div>
|
1707
|
-
|
1708
|
-
<div id="ReviewContentall17523615">
|
1709
|
-
<div class="leftcol">
|
1710
|
-
<div class="avatar">
|
1711
|
-
<a href="http://steamcommunity.com/id/svirt/">
|
1712
|
-
<div class="playerAvatar offline" data-miniprofile="34929708">
|
1713
|
-
<img src="http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/c7/c7a7d0e0605bcf77e230aeeffd2ab0b2ec5b6509.jpg" srcset="http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/c7/c7a7d0e0605bcf77e230aeeffd2ab0b2ec5b6509.jpg 1x, http://cdn.akamai.steamstatic.com/steamcommunity/public/images/avatars/c7/c7a7d0e0605bcf77e230aeeffd2ab0b2ec5b6509_medium.jpg 2x"> </div>
|
1714
|
-
</a>
|
1715
|
-
</div>
|
1716
|
-
<div class="persona_name"><a href="http://steamcommunity.com/id/svirt/" data-miniprofile="34929708">Svirt</a></div>
|
1717
|
-
<div class="num_owned_games"><a href="http://steamcommunity.com/id/svirt/games/?tab=all">582 products in account</a></div>
|
1718
|
-
<div class="num_reviews"><a href="http://steamcommunity.com/id/svirt/recommended/">64 reviews</a></div>
|
1719
|
-
</div>
|
1720
|
-
|
1721
|
-
<div class="rightcol">
|
1722
|
-
<div class="vote_header">
|
1723
|
-
<div class="thumb">
|
1724
|
-
<a href="http://steamcommunity.com/id/svirt/recommended/10/"><img src="http://store.akamai.steamstatic.com/public/shared/images/userreviews/icon_thumbsUp_v6.png" width="40" height="40"></a>
|
1725
|
-
</div>
|
1726
|
-
|
1727
|
-
<div class="title ellipsis"><a href="http://steamcommunity.com/id/svirt/recommended/10/">Recommended</a></div>
|
1728
|
-
<div class="hours ellipsis">793.1 hrs on record</div>
|
1729
|
-
</div>
|
1730
|
-
|
1731
|
-
<div class="postedDate">Posted: 13 August </div>
|
1732
|
-
|
1733
|
-
|
1734
|
-
<div class="content">
|
1735
|
-
Many players learned here what do wellknown terms like lag, noob or ragequit mean. Oh how i miss old 1.6 days. <br><br>9/10 <div class="gradient"></div>
|
1736
|
-
</div>
|
1737
|
-
|
1738
|
-
<div class="posted">
|
1739
|
-
<div class="view_more"><a href="#" onclick="UserReviewShowMore('17523615', 'all' ); return false;">Read More</a></div>
|
1740
|
-
|
1741
|
-
</div>
|
1742
|
-
|
1743
|
-
<div class="hr"></div>
|
1744
|
-
<div class="control_block">
|
1745
|
-
|
1746
|
-
<span class="text">Was this review helpful?</span>
|
1747
|
-
|
1748
|
-
<a href="javascript:void(0)" onclick="UserReviewVoteUp( '17523615' )" class="btnv6_grey_black btn_small_thin ico_hover " id="RecommendationVoteUpBtnall17523615"><span><i class="ico16 thumb_upv6"></i> Yes</span></a>
|
1749
|
-
<a href="javascript:void(0)" onclick="UserReviewVoteDown( '17523615' )" class="btnv6_grey_black btn_small_thin ico_hover " id="RecommendationVoteDownBtnall17523615"><span><i class="ico16 thumb_downv6"></i> No</span></a>
|
1750
|
-
<a href="javascript:void(0)" onclick="UserReviewVoteTag( '17523615', 1, 'RecommendationVoteTagBtnall17523615_1' )" class="btnv6_grey_black btn_small_thin ico_hover " id="RecommendationVoteTagBtnall17523615_1"><span><i class="ico16 funny"></i> Funny</span></a>
|
1751
|
-
|
1752
|
-
</div>
|
1753
|
-
</div>
|
1754
|
-
<div style="clear: left;"></div>
|
1755
|
-
</div>
|
1756
|
-
</div>
|
1757
|
-
|
1758
|
-
<div id="LoadMoreReviewsall" class="load_more_reviews_btn">
|
1759
|
-
<a href="javascript:void(0);" onclick="LoadMoreReviews( 10, 5, 180, 'all', 'english' );" class="btnv6_blue_blue_innerfade btn_medium">
|
1760
|
-
<span>Load More Reviews</span>
|
1761
|
-
</a>
|
1762
|
-
</div>
|
1763
|
-
<div id="ViewAllReviewsall" class="view_all_reviews_btn">
|
1764
|
-
<a href="http://steamcommunity.com/app/10/reviews/?browsefilter=toprated&snr=1_5_9_">Browse all 14,182 reviews</a>
|
1765
|
-
</div>
|
1766
|
-
<div id="LoadingMoreReviewsall" style="display: none" class="loading_more_reviews">
|
1767
|
-
<img src="http://store.akamai.steamstatic.com/public/shared/images/throbber.gif" class="loading_more_reviews_throbber">
|
1768
|
-
Loading reviews... </div>
|
1769
|
-
</div>
|
1770
|
-
</div>
|
1771
|
-
</div>
|
1772
|
-
|
1773
|
-
</div>
|
1774
|
-
|
1775
|
-
<div style="clear: both;"></div>
|
1776
|
-
</div>
|
1777
|
-
|
1778
|
-
</div>
|
1779
|
-
</div>
|
1780
|
-
|
1781
|
-
<div class="hover game_hover" id="global_hover" style="display: none; left: 0; top: 0;">
|
1782
|
-
<div class="game_hover_box hover_box">
|
1783
|
-
<div class="content" id="global_hover_content">
|
1784
|
-
</div>
|
1785
|
-
</div>
|
1786
|
-
<div class="hover_arrow_left"></div>
|
1787
|
-
<div class="hover_arrow_right"></div>
|
1788
|
-
</div>
|
1789
|
-
<div id="EmbedModal" style="display: none">
|
1790
|
-
<div id="widget_create">
|
1791
|
-
<p>You can use this widget-maker to generate a bit of HTML that can be embedded in your website to easily allow customers to purchase this game on Steam.</p>
|
1792
|
-
|
1793
|
-
<p class="small">There is more than one way to buy this game. Please select a specific package to create a widget for:</p>
|
1794
|
-
<div class="w_options">
|
1795
|
-
<div class="w_option">
|
1796
|
-
<input type="radio" name="w_rsubid" id="wp_7" value="7">
|
1797
|
-
<label for="wp_7">Counter-Strike: Condition Zero</label>
|
1798
|
-
</div>
|
1799
|
-
<div class="w_option">
|
1800
|
-
<input type="radio" name="w_rsubid" id="wp_41" value="41">
|
1801
|
-
<label for="wp_41">Counter-Strike 1 Anthology</label>
|
1802
|
-
</div>
|
1803
|
-
<div class="w_option">
|
1804
|
-
<input type="radio" name="w_rsubid" id="wp_54030" value="54030">
|
1805
|
-
<label for="wp_54030">Counter-Strike Complete</label>
|
1806
|
-
</div>
|
1807
|
-
<div class="w_option">
|
1808
|
-
<input type="radio" name="w_rsubid" id="wp_29197" value="29197">
|
1809
|
-
<label for="wp_29197">Valve Complete Pack</label>
|
1810
|
-
</div>
|
1811
|
-
</div>
|
1812
|
-
<p class="small">Enter up to 375 characters to add a description to your widget:</p>
|
1813
|
-
<textarea name="w_text" placeholder="Play the world's number 1 online action game. Engage in an incredibly realistic brand of terrorist warfare in this wildly popular team-based game. Ally with teammates to complete strategic missions. Take out enemy sites. Rescue hostages. Your role affects your team's success. Your team's success affects your role." maxlength="375"></textarea>
|
1814
|
-
|
1815
|
-
<div class="buttoncontainer">
|
1816
|
-
<a class="btnv6_blue_hoverfade btn_medium " href="#" onclick="CreateWidget(10); return false;"><span>Create widget</span></a>
|
1817
|
-
</div>
|
1818
|
-
</div>
|
1819
|
-
<div id="widget_finished" style="display: none;">
|
1820
|
-
<div id="widget_container"></div>
|
1821
|
-
|
1822
|
-
<p class="small">Copy and paste the HTML below into your website to make the above widget appear</p>
|
1823
|
-
<textarea id="widget_code" style=""></textarea>
|
1824
|
-
</div>
|
1825
|
-
|
1826
|
-
</div>
|
1827
|
-
|
1828
|
-
<div id="ShareModal" style="display: none">
|
1829
|
-
<div class="share">Share: <a target="_blank" href="http://store.steampowered.com/share/facebook/app/10" title="Share on Facebook"><img src="http://store.akamai.steamstatic.com/public/images/v5/social/facebook.gif"></a> <a target="_blank" href="http://store.steampowered.com/share/twitter/app/10" title="Share on Twitter"><img src="http://store.akamai.steamstatic.com/public/images/v5/social/twitter.gif"></a> <a target="_blank" href="http://store.steampowered.com/share/reddit/app/10" title="Share on Reddit"><img src="http://store.akamai.steamstatic.com/public/images/v5/social/reddit.gif"></a></div></div>
|
1830
|
-
|
1831
|
-
<div id="app_tagging_modal" class="app_tag_modal nologin" style="display: none;">
|
1832
|
-
<div class="app_tag_modal_content">
|
1833
|
-
<div class="app_tag_modal_seperator"></div>
|
1834
|
-
<div class="app_tag_modal_left">
|
1835
|
-
<h2>Popular user-defined tags for this product:<span class="app_tag_modal_tooltip" data-store-tooltip="These are tags applied to the product by the most users. You can click a tag to find other products with that tag applied. Or, you can hit the plus symbol for any existing tags to increase that tag's popularity on this product.">(?)</span></h2>
|
1836
|
-
<div class="app_tags popular_tags">
|
1837
|
-
</div>
|
1838
|
-
</div>
|
1839
|
-
<div class="app_tag_modal_right">
|
1840
|
-
<h2>Sign in</h2>
|
1841
|
-
<p>Sign in to add your own tags to this product.</p>
|
1842
|
-
<p>
|
1843
|
-
<a class="btnv6_blue_hoverfade btn_medium" href="https://store.steampowered.com/login/?redir=app/10">
|
1844
|
-
<span>Sign in</span>
|
1845
|
-
</a>
|
1846
|
-
</p>
|
1847
|
-
</div>
|
1848
|
-
<div style="clear: both;"></div>
|
1849
|
-
</div>
|
1850
|
-
</div>
|
1851
|
-
<script type="text/javascript">
|
1852
|
-
$J( function() {
|
1853
|
-
InitAppTagModal( 10,
|
1854
|
-
[{"tagid":19,"name":"Action","count":1789,"browseable":true},{"tagid":1663,"name":"FPS","count":1330,"browseable":true},{"tagid":3859,"name":"Multiplayer","count":1066,"browseable":true},{"tagid":1693,"name":"Classic","count":887,"browseable":true},{"tagid":1774,"name":"Shooter","count":835,"browseable":true},{"tagid":5711,"name":"Team-Based","count":531,"browseable":true},{"tagid":3878,"name":"Competitive","count":460,"browseable":true},{"tagid":3839,"name":"First-Person","count":440,"browseable":true},{"tagid":1708,"name":"Tactical","count":431,"browseable":true},{"tagid":6691,"name":"1990's","count":328,"browseable":true},{"tagid":5055,"name":"e-sports","count":267,"browseable":true},{"tagid":1775,"name":"PvP","count":186,"browseable":true},{"tagid":9,"name":"Strategy","count":132,"browseable":true},{"tagid":4168,"name":"Military","count":124,"browseable":true},{"tagid":7743,"name":"1980s","count":72,"browseable":true},{"tagid":5154,"name":"Score Attack","count":63,"browseable":true},{"tagid":4376,"name":"Assassin","count":46,"browseable":true},{"tagid":1662,"name":"Survival","count":43,"browseable":true},{"tagid":1688,"name":"Ninja","count":40,"browseable":true},{"tagid":1645,"name":"Tower Defense","count":23,"browseable":true}],
|
1855
|
-
[],
|
1856
|
-
"1_5_9__410",
|
1857
|
-
"1_5_9__411",
|
1858
|
-
null );
|
1859
|
-
});
|
1860
|
-
</script>
|
1861
|
-
|
1862
|
-
</div> <!-- responsive_page_legacy_content -->
|
1863
|
-
|
1864
|
-
<div id="footer_spacer" class=""></div>
|
1865
|
-
<div id="footer" class="">
|
1866
|
-
<div class="footer_content">
|
1867
|
-
<div class="rule"></div>
|
1868
|
-
|
1869
|
-
<div id="footer_nav">
|
1870
|
-
|
1871
|
-
|
1872
|
-
|
1873
|
-
<span class="pulldown btnv6_blue_hoverfade btn_small" id="footer_steam_pulldown">
|
1874
|
-
<span>ABOUT STEAM</span>
|
1875
|
-
</span>
|
1876
|
-
<div class="popup_block_new" id="footer_steam_dropdown" style="display: none;">
|
1877
|
-
<div class="popup_body popup_menu">
|
1878
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/about/?snr=1_44_44__22">
|
1879
|
-
What is Steam? </a>
|
1880
|
-
<!--
|
1881
|
-
<a class="popup_menu_item" href="">
|
1882
|
-
Download Steam now </a>
|
1883
|
-
-->
|
1884
|
-
<a class="popup_menu_item" target="_blank" href="https://support.steampowered.com/kb_article.php?p_faqid=549#gifts">
|
1885
|
-
Gifting on Steam </a>
|
1886
|
-
<a class="popup_menu_item" href="https://steamcommunity.com/?snr=1_44_44__22">
|
1887
|
-
The Steam Community </a>
|
1888
|
-
</div>
|
1889
|
-
</div>
|
1890
|
-
|
1891
|
-
<span class="pulldown btnv6_blue_hoverfade btn_small" id="footer_valve_pulldown">
|
1892
|
-
<span>ABOUT VALVE</span>
|
1893
|
-
</span>
|
1894
|
-
<div class="popup_block_new" id="footer_valve_dropdown" style="display: none;">
|
1895
|
-
<div class="popup_body popup_menu">
|
1896
|
-
<a class="popup_menu_item" target="_blank" href="http://www.valvesoftware.com/about.html">
|
1897
|
-
About Valve </a>
|
1898
|
-
<a class="popup_menu_item" target="_blank" href="http://www.valvesoftware.com/business/">
|
1899
|
-
Business Solutions </a>
|
1900
|
-
<a class="popup_menu_item" target="_blank" href="http://www.steampowered.com/steamworks/">
|
1901
|
-
Steamworks </a>
|
1902
|
-
<a class="popup_menu_item" target="_blank" href="http://www.valvesoftware.com/jobs.html">
|
1903
|
-
Jobs </a>
|
1904
|
-
</div>
|
1905
|
-
</div>
|
1906
|
-
|
1907
|
-
|
1908
|
-
<span class="pulldown btnv6_blue_hoverfade btn_small" id="footer_help_pulldown">
|
1909
|
-
<span>HELP</span>
|
1910
|
-
</span>
|
1911
|
-
<div class="popup_block_new" id="footer_help_dropdown" style="display: none;">
|
1912
|
-
<div class="popup_body popup_menu">
|
1913
|
-
<a class="popup_menu_item" href="https://help.steampowered.com/?snr=1_44_44__23">
|
1914
|
-
Support </a>
|
1915
|
-
<a class="popup_menu_item" target="_blank" href="http://store.steampowered.com/forums/?snr=1_44_44__23">
|
1916
|
-
Forums </a>
|
1917
|
-
<a class="popup_menu_item" target="_blank" href="http://store.steampowered.com/stats/?snr=1_44_44__23">
|
1918
|
-
Stats </a>
|
1919
|
-
</div>
|
1920
|
-
</div>
|
1921
|
-
|
1922
|
-
|
1923
|
-
<span class="pulldown btnv6_blue_hoverfade btn_small" id="footer_feeds_pulldown">
|
1924
|
-
<span>NEWS FEEDS</span>
|
1925
|
-
</span>
|
1926
|
-
<div class="popup_block_new" id="footer_feeds_dropdown" style="display: none;">
|
1927
|
-
<div class="popup_body popup_menu">
|
1928
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/feeds/news.xml">
|
1929
|
-
<img src="http://store.akamai.steamstatic.com/public/images/ico/ico_rss2.gif" width="13" height="13" border="0" alt="" align="top"> Steam News </a>
|
1930
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/feeds/newreleases.xml">
|
1931
|
-
<img src="http://store.akamai.steamstatic.com/public/images/ico/ico_rss2.gif" width="13" height="13" border="0" alt="" align="top"> Game Releases </a>
|
1932
|
-
<a class="popup_menu_item" href="http://store.steampowered.com/feeds/daily_deals.xml">
|
1933
|
-
<img src="http://store.akamai.steamstatic.com/public/images/ico/ico_rss2.gif" width="13" height="13" border="0" alt="" align="top"> Daily Deals </a>
|
1934
|
-
</div>
|
1935
|
-
</div>
|
1936
|
-
<div style="clear: left;"></div>
|
1937
|
-
|
1938
|
-
<script type="text/javascript">
|
1939
|
-
RegisterFlyout( 'footer_genre_pulldown', 'footer_genre_dropdown', null, null, true );
|
1940
|
-
RegisterFlyout( 'footer_steam_pulldown', 'footer_steam_dropdown', null, null, true );
|
1941
|
-
RegisterFlyout( 'footer_valve_pulldown', 'footer_valve_dropdown', null, null, true );
|
1942
|
-
RegisterFlyout( 'footer_help_pulldown', 'footer_help_dropdown', null, null, true );
|
1943
|
-
RegisterFlyout( 'footer_feeds_pulldown', 'footer_feeds_dropdown', null, null, true );
|
1944
|
-
</script>
|
1945
|
-
</div>
|
1946
|
-
|
1947
|
-
<br>
|
1948
|
-
|
1949
|
-
<div class="rule"></div>
|
1950
|
-
<div id="footer_logo"><a target="_blank" href="http://www.valvesoftware.com"><img src="http://store.akamai.steamstatic.com/public/images/v6/logo_valve_footer.png" alt="Valve Software" border="0" /></a></div>
|
1951
|
-
<div id="footer_text">
|
1952
|
-
<div>© 2015 Valve Corporation. All rights reserved. All trademarks are property of their respective owners in the US and other countries.</div>
|
1953
|
-
<div>VAT included in all prices where applicable.
|
1954
|
-
|
1955
|
-
<a target="_blank" href="http://store.steampowered.com/privacy_agreement/">Privacy Policy</a>
|
1956
|
-
|
|
1957
|
-
<a target="_blank" href="http://www.valvesoftware.com/legal.htm">Legal</a>
|
1958
|
-
|
|
1959
|
-
<a target="_blank" href="http://store.steampowered.com/subscriber_agreement/">Steam Subscriber Agreement</a>
|
1960
|
-
|
|
1961
|
-
<a target="_blank" href="http://store.steampowered.com/steam_refunds/">Refunds</a>
|
1962
|
-
|
1963
|
-
</div>
|
1964
|
-
<div class="responsive_optin_link">
|
1965
|
-
<div class="btn_medium btnv6_grey_black" onclick="Responsive_RequestMobileView()">
|
1966
|
-
<span>View mobile website</span>
|
1967
|
-
</div>
|
1968
|
-
</div>
|
1969
|
-
</div>
|
1970
|
-
|
1971
|
-
|
1972
|
-
|
1973
|
-
<div style="clear: left;"></div>
|
1974
|
-
|
1975
|
-
<div class="rule"></div>
|
1976
|
-
|
1977
|
-
<div class="valve_links">
|
1978
|
-
<a target="_blank" href="http://www.valvesoftware.com/about.html">About Valve</a>
|
1979
|
-
| <a target="_blank" href="http://www.valvesoftware.com/business/">Business Solutions</a>
|
1980
|
-
| <a target="_blank" href="http://www.steampowered.com/steamworks/">Steamworks</a>
|
1981
|
-
| <a target="_blank" href="http://www.valvesoftware.com/jobs.html">Jobs</a>
|
1982
|
-
| <a target="_blank" href="http://steamcommunity.com/greenlight">Steam Distribution</a>
|
1983
|
-
| <a target="_blank" href="http://www.facebook.com/Steam"><img src="http://store.akamai.steamstatic.com/public/images/ico/ico_facebook.gif"> Steam</a>
|
1984
|
-
| <a target="_blank" href="http://twitter.com/steam_games"><img src="http://store.akamai.steamstatic.com/public/images/ico/ico_twitter.gif"> @steam_games</a>
|
1985
|
-
</div>
|
1986
|
-
|
1987
|
-
</div>
|
1988
|
-
</div>
|
1989
|
-
</div> <!-- responsive_page_content -->
|
1990
|
-
|
1991
|
-
</div> <!-- responsive_page_frame -->
|
1992
|
-
</body>
|
1993
|
-
</html>
|