CINXE.COM

Battlestar Galactica (2003) Cheats For PlayStation 2 Xbox - GameSpot

<!doctype html> <html lang="en" class="no-js no-touch "> <head><script type="text/javascript" src="/_static/js/bundle-playback.js?v=HxkREWBo" charset="utf-8"></script> <script type="text/javascript" src="/_static/js/wombat.js?v=txqj7nKC" charset="utf-8"></script> <script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden"};</script> <script type="text/javascript" src="/_static/js/ruffle/ruffle.js"></script> <script type="text/javascript"> __wm.init("https://web.archive.org/web"); __wm.wombat("https://www.gamespot.com/games/battlestar-galactica-2003/cheats/","20200617093814","https://web.archive.org/","web","/_static/", "1592386694"); </script> <link rel="stylesheet" type="text/css" href="/_static/css/banner-styles.css?v=S1zqJCYt" /> <link rel="stylesheet" type="text/css" href="/_static/css/iconochive.css?v=3PDvdIFv" /> <!-- End Wayback Rewrite JS Include --> <script src="https://web.archive.org/web/20200617093814js_/https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" async type="text/javascript" charset="UTF-8" data-domain-script="b69acdf9-a259-4c31-aefd-5dc32f96a0bc"></script> <script src="https://web.archive.org/web/20200617093814js_/https://production-cmp.isgprivacy.cbsi.com/dist/optanon.js" type="text/javascript" async></script> <script type="application/javascript"> (function(a){ var w=window,b='cbsoptanon',q='cmd',r='config'; w[b] = w[b] ? w[b] : {}; w[b][q] = w[b][q] ? w[b][q] : []; w[b][r] = w[b][r] ? w[b][r] : []; a.forEach(function(z){ w[b][z] = w[b][z] || function(){ var c=arguments; w[b][q].push(function(){ w[b][z].apply(w[b],c); }) } }); })(["onIframesReady","onFormsReady","onScriptsReady","onAdsReady"]); // Add configs window.cbsoptanon.config.push({ enableServices: false, euMaxAttempts: 25, countryCodeMaxAttempts: 25, oneTrustTimeout: 700 }); // Load iframes as soon as ready // applies data-src to the src attribute when consent // is given to the proper category window.cbsoptanon.cmd.push(function(_cbsoptanon) { console.log('Loading iframes'); _cbsoptanon.tags.load('IFRAME'); }); </script> <script type="text/javascript"> (function () { "use strict"; /** * Include a script in the head of the doc. This is a private function called from the load third party function and callback only * @param {string} scriptId ID of the script element * @param {string} url URL to the script * @param {boolean} async Whether or not to load the script async */ function includeScript(scriptId, url, async) { var doc = document, tagname = 'script', lastScript = doc.getElementsByTagName(tagname)[0]; if (!lastScript) { lastScript = doc.head; } var script = doc.createElement(tagname); script.async = async ? true : false; script.id = scriptId; script.src = url; // set a data attribute of data-error if the script failed to load script.addEventListener('error', function (err) { if (err) { script.setAttribute('data-error', 'true'); } }); lastScript.parentNode.insertBefore(script, lastScript); } var PhoenixLoader = window.PhoenixLoader = { consent: false, scripts: [], scriptFailed: false, thirdPartyFeatureList: true, trackingInitialized: false, loadScriptIds: [], /** * Load a third party consent when GDPR consent is received * @param {string} scriptId ID of the script element * @param {string} url URL to the script * @param {boolean} async Whether or not to load the script async * @param {function} disableCallback that is called if this scriptId is disabled */ loadThirdParty: function (scriptId, url, async, disableCallback) { // do not include script if not enabled if (scriptId !== true && this.thirdPartyFeatureList !== true && !this.thirdPartyFeatureList.includes(scriptId)) { console.warn(':: FEATURE ' + scriptId + ' DISABLED!'); if (disableCallback !== undefined && typeof disableCallback === "function") { disableCallback(); } return; } if (this.consent) { includeScript(scriptId, url, async); } else { this.scripts[scriptId] = {'url': url, 'async': async}; } }, /** * Run a callback when third party consent is received from the GDPR script (Gate by OneTrust) * @param {string} id ID of the script element, if equal true, means in house customize scripts. * @param {function} callback Callback function to call when consent is received * @param {string} category OptAnon Category * @param {string} onReady helper parameters, ex: "onIframesReady","onScriptsReady","onAdsReady" those condition * default value is "Scripts" * @param {function} disableCallback that is called if this scriptId is disabled */ gdprConsentCallback: function (id, callback, category, onReady, disableCallback) { var scriptId = id; var self = this; if (scriptId !== true && this.thirdPartyFeatureList !== true && !this.thirdPartyFeatureList.includes(scriptId)) { console.warn(':: FEATURE ' + scriptId + ' DISABLED!'); if (disableCallback !== undefined && typeof disableCallback === "function") { disableCallback(); } return; } // No OneTrust, don't gate if (typeof window.cbsoptanon === 'undefined') { callback(); return; } // One trust is enabled setup the functions onReady = onReady || 'Scripts'; var opt = window.cbsoptanon['on' + onReady + 'Ready']; opt(function (_cbsoptanon, options) { // If we have categories we need to check if they are allowed if (category != null) { // Gets the current state of all categories var checkState = function () { _cbsoptanon.ot.getState(function (targeting, performance, functional, social) { var obj = { targeting: targeting, performance: performance, functional: functional, social: social }; // If the user has disabled the "performance" scripts then tracking will not load. Some of our scripts (eg video player) wait for tracking initialized before running, so we must now trigger that manually if (!self.trackingInitialized && !obj.performance) { window.addEventListener('DOMContentLoaded', (event) => { self.triggerEvent('tracking_initialized'); self.trackingInitialized = true; }); } if (obj[category]) { self.loadScriptIds[id] = true; callback.apply(this, [_cbsoptanon, options]); } else { self.loadScriptIds[id] = false; // call disableCallback() if available if (disableCallback !== undefined && typeof disableCallback === "function") { disableCallback(); } } }); }; checkState(); // consent has changed and we're allowed to fire off _cbsoptanon.ot.addOnConsentChangedHandler(function() { if (self.loadScriptIds[id] != true) { checkState(); } }); // when category is null, don't gated by above code, some 3rd party Ads already integrated with Optanton // for example: bidbarrel version above v2.8, GPT stuff(google tag) } else { // Just waiting for on ready fire callback self.loadScriptIds[id] = true; callback.apply(this, [_cbsoptanon, options]); } }); // Only few pages that are not asking for consent fire the load event immediately if (this.consent) { callback(); } else { document.addEventListener('loadThirdParty', function (e) { callback(); }); } }, /** * Trigger the consent event so the rest of the scripts can load * This should only be called after GDPR script has run and the user has given consent */ triggerConsent: function () { this.consent = true; this.triggerEvent('loadThirdParty') }, /** * Trigger an event on the document * @param {string} eventName */ triggerEvent: function (eventName) { var event = null; if (typeof(Event) === 'function') { var event = new Event(eventName); } // IE 11 and below doesn't support the Event constructor, use the old deprecated way of creating events else { var event = document.createEvent('Event'); event.initEvent(eventName, true, true); } document.dispatchEvent(event); }, /** * Monitor a script tag for failure to load. If it fails to load mark failed * @param {Element} script Script element to monitor */ monitorKeyScript: function (script) { var self = this; script.addEventListener('error', function (err) { if (err) { self.scriptFailed = true; } }); }, /** * Have key scripts failed to load * @return {boolean} Returns true if any of the key scripts we monitor have failed to load */ keyScriptsFailed: function () { return this.scriptFailed; } }; /** * When third party consent is received run all the scripts we've queued up */ PhoenixLoader.gdprConsentCallback(true, function () { var scripts = PhoenixLoader.scripts; Object.keys(scripts).forEach(function (key) { includeScript(key, scripts[key].url, scripts[key].async); delete scripts[key]; }); }); })(); </script> <title>Battlestar Galactica (2003) Cheats For PlayStation 2 Xbox - GameSpot</title> <meta name="description" content="Get all the inside info, cheats, hacks, codes, walkthroughs for Battlestar Galactica (2003) on GameSpot."> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="application-name" content="GameSpot"/> <meta name="msapplication-TileColor" content="#26292B"/> <meta name="msapplication-TileImage" content="https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/win8pin.png"/> <meta name="userAuthState" content="noUser"/> <meta id="cdnHost" itemprop="cdnHost" content="gamespot1.cbsistatic.com"> <meta id="view-guid-meta" name="view-guid-meta" itemprop="view-guid" content=""> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="twitter:card" content="product"> <meta name="twitter:site" content="@GameSpot"> <meta name="twitter:domain" content="gamespot.com"> <meta property="og:image" content="https://web.archive.org/web/20200617093814im_/https://gamespot1.cbsistatic.com/uploads/scale_medium/box/3/0/3/6/18214-53036.jpg"/> <meta property="og:title" content="Battlestar Galactica (2003)"/> <meta property="og:description" content="Battlestar Galactica puts forth a far more enjoyable effort than your average licensed game, but unfortunately, there are still many problems to be found within."/> <meta property="og:site_name" content="GameSpot"/> <meta property="og:type" content="product"/> <meta property="og:url" content="https://web.archive.org/web/20200617093814/https://www.gamespot.com/battlestar-galactica-2003/"/> <meta property="og:url" content="https://web.archive.org/web/20200617093814/https://gamefaqs.gamespot.com/ps2/914680-battlestar-galactica/cheats"/> <link rel="canonical" href="https://web.archive.org/web/20200617093814/https://gamefaqs.gamespot.com/ps2/914680-battlestar-galactica/cheats/"/> <meta name="modal-cdn-url" content="/js/modals.json"> <meta name="js-sort-filter-text" content="yes"> <meta id="tracking-dw" class="js-post-render-tracking-consumer tracking-settings" data-tracking-service="dw" itemprop="tracking-dw" data-settings="{&quot;pageParams&quot;:{&quot;siteid&quot;:&quot;6&quot;,&quot;ptid&quot;:&quot;6027&quot;,&quot;onid&quot;:null,&quot;ednm&quot;:&quot;{edition}&quot;,&quot;ursuid&quot;:&quot;{ursuid}&quot;,&quot;regSilo&quot;:&quot;2&quot;,&quot;rsid&quot;:&quot;cbsigamespotsite&quot;,&quot;prodtypid&quot;:&quot;8&quot;,&quot;pagetype&quot;:&quot;games_cheats_list&quot;,&quot;assetguid&quot;:&quot;5000-18214&quot;,&quot;assettitle&quot;:&quot;Battlestar Galactica (2003)&quot;,&quot;assettype&quot;:&quot;Game&quot;,&quot;topicbrcrm&quot;:&quot;Games|Cheats &amp; Walkthroughs&quot;},&quot;cleargifSrc&quot;:&quot;https:\/\/dw.cbsi.com\/clear\/c.gif?ptid=6027&amp;ednm=%7Bedition%7D&amp;ursuid=%7Bursuid%7D&amp;regSilo=2&amp;rsid=cbsigamespotsite&amp;prodtypid=8&amp;pagetype=games_cheats_list&amp;assetguid=5000-18214&amp;assettitle=Battlestar+Galactica+%282003%29&amp;assettype=Game&amp;topicbrcrm=Games%7CCheats+%26+Walkthroughs&amp;sid=6&amp;ts=1592386694&quot;}"> <meta id="tracking-ga" class="js-post-render-tracking-consumer tracking-settings" data-tracking-service="ga" itemprop="tracking-ga" data-settings="{&quot;custom&quot;:{&quot;PageType&quot;:{&quot;index&quot;:&quot;1&quot;,&quot;name&quot;:&quot;PageType&quot;,&quot;value&quot;:&quot;6027&quot;,&quot;scope&quot;:&quot;3&quot;},&quot;UserType&quot;:{&quot;index&quot;:&quot;2&quot;,&quot;name&quot;:&quot;UserType&quot;,&quot;value&quot;:&quot;{gaUserType}&quot;,&quot;scope&quot;:&quot;1&quot;}},&quot;account&quot;:&quot;UA-22577913-1&quot;}"> <meta id="tracking-om" class="js-post-render-tracking-consumer tracking-settings" data-tracking-service="om" itemprop="tracking-om" data-settings="{&quot;brand&quot;:&quot;GameSpot&quot;,&quot;sid&quot;:&quot;gamespot&quot;,&quot;rsids&quot;:&quot;cbsigamespotsite&quot;,&quot;user_status&quot;:&quot;{userStatus}&quot;,&quot;urs_id&quot;:&quot;{ursuid}&quot;,&quot;edition&quot;:&quot;{edition}&quot;,&quot;site_type&quot;:&quot;{siteType}&quot;,&quot;anon_id&quot;:&quot;{xclgfbrowser}&quot;,&quot;url&quot;:&quot;D=g&quot;,&quot;user_agent&quot;:&quot;D=User-Agent&quot;,&quot;page_type_id&quot;:&quot;6027&quot;,&quot;page_name&quot;:&quot;gs:\/games\/battlestar-galactica-2003\/cheats\/&quot;,&quot;ab_test&quot;:&quot;{abTestLabel}&quot;,&quot;theme&quot;:&quot;{theme}&quot;,&quot;event_hierarchy&quot;:&quot;{eventHierarchy}&quot;,&quot;marketing_cloud_id&quot;:&quot;10D31225525FF5790A490D4D@AdobeOrg&quot;,&quot;session&quot;:&quot;{ad_session}&quot;,&quot;account_settings&quot;:{&quot;trackingServer&quot;:&quot;aa.gamespot.com&quot;,&quot;trackingServerSecure&quot;:&quot;saa.gamespot.com&quot;},&quot;page_type&quot;:&quot;games_cheats_list&quot;,&quot;channel&quot;:&quot;Games&quot;,&quot;hierarchy&quot;:&quot;Games|Cheats &amp; Walkthroughs&quot;,&quot;platform&quot;:[&quot;PlayStation 2&quot;,&quot;Xbox&quot;],&quot;product_id&quot;:&quot;gs-5000-18214&quot;,&quot;game_title&quot;:&quot;Battlestar Galactica (2003)|Battlestar Galactica&quot;,&quot;genre&quot;:[&quot;Simulation&quot;]}" data-post-render-param="TrackingBundle.page_type" data-post-render-value="games_cheats_list"> <meta class="ad-settings" content="" id="ad-settings" name="ad-settings" data-settings="{&quot;service&quot;:&quot;dart&quot;,&quot;enable_guilt&quot;:true,&quot;script&quot;:&quot;\/\/securepubads.g.doubleclick.net\/tag\/js\/gpt.js&quot;,&quot;unit_name&quot;:&quot;\/8264\/aw-gamespot\/gamespace&quot;,&quot;target_params&quot;:{&quot;session&quot;:&quot;o&quot;,&quot;test&quot;:&quot;{abTestLabelDart}&quot;,&quot;ptype&quot;:&quot;games_cheats_list&quot;,&quot;game&quot;:&quot;battlestar-galactica-2003&quot;,&quot;rating&quot;:&quot;PEGI: 12&quot;,&quot;genre&quot;:&quot;simulation&quot;,&quot;con&quot;:&quot;playstation-2,xbox&quot;,&quot;franchise&quot;:&quot;battlestar-galactica&quot;,&quot;rdate&quot;:&quot;bp52&quot;,&quot;publisher&quot;:&quot;universal-interactive&quot;,&quot;score&quot;:71,&quot;user&quot;:&quot;anon&quot;},&quot;mapped_units&quot;:{&quot;interstitial&quot;:{&quot;outOfPage&quot;:true},&quot;leader_top&quot;:{&quot;size&quot;:[[970,66],[728,90]],&quot;target&quot;:{&quot;pos&quot;:&quot;top&quot;}},&quot;mpu_top&quot;:{&quot;size&quot;:[[300,250]],&quot;target&quot;:{&quot;pos&quot;:&quot;top&quot;}},&quot;leader_bottom&quot;:{&quot;size&quot;:[[728,90],[970,66]],&quot;target&quot;:{&quot;pos&quot;:&quot;bottom&quot;}}},&quot;region&quot;:&quot;us&quot;}"> <meta id="qualtrics-settings" itemprop="qualtrics-settings" content="{&quot;id&quot;:&quot;ZN_aah4Vz47v491vLf&quot;,&quot;script&quot;:&quot;\/\/zn_aah4vz47v491vlf-cbs.siteintercept.qualtrics.com\/WRSiteInterceptEngine\/&quot;}"/> <meta name="username" id="username" content="GS|Anonymous"/> <meta id="js-loading-html" content="<div class=&quot;js-loader loader &quot;><div class=&quot;loader-animation&quot;><div class=&quot;loading&quot;></div></div></div>"> <link rel="shortcut icon" href="/web/20200617093814im_/https://www.gamespot.com/favicon.ico"/> <link rel="apple-touch-icon" href="https://web.archive.org/web/20200617093814im_/https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/touch-icon-iphone-precomposed.png"> <link rel="apple-touch-icon" sizes="76x76" href="https://web.archive.org/web/20200617093814im_/https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/touch-icon-ipad.png"> <link rel="apple-touch-icon" sizes="120x120" href="https://web.archive.org/web/20200617093814im_/https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/touch-icon-iphone-retina-precomposed.png"> <link rel="apple-touch-icon" sizes="152x152" href="https://web.archive.org/web/20200617093814im_/https://gamespot1.cbsistatic.com/bundles/gamespotsite/images/touch-icon-ipad-retina-precomposed.png"> <meta id="richTextEditorTheme" itemprop="richTextEditorTheme" content="white" data-themes="{&quot;white&quot;:&quot;https:\/\/gamespot1.cbsistatic.com\/v3b8462bcaccb4e6d94bdbb83f8503f47\/bundles\/gamespotsite\/css\/wysiwyg_white.css&quot;,&quot;black&quot;:&quot;https:\/\/gamespot1.cbsistatic.com\/v3b8462bcaccb4e6d94bdbb83f8503f47\/bundles\/gamespotsite\/css\/wysiwyg_black.css&quot;}"> <!--[if !IE]> --><link id="skin-color" rel="stylesheet" href="https://web.archive.org/web/20200617093814cs_/https://gamespot1.cbsistatic.com/v3b8462bcaccb4e6d94bdbb83f8503f47/bundles/gamespotsite/css/gamespot_white.css"><!-- <![endif]--><!--[if IE]><link id="skin-color-0" rel="stylesheet" href="https://gamespot1.cbsistatic.com/v3b8462bcaccb4e6d94bdbb83f8503f47/bundles/gamespotsite/css/gamespot_white_split1.css"><link id="skin-color-1" rel="stylesheet" href="https://gamespot1.cbsistatic.com/v3b8462bcaccb4e6d94bdbb83f8503f47/bundles/gamespotsite/css/gamespot_white_split2.css"><link id="skin-color-2" rel="stylesheet" href="https://gamespot1.cbsistatic.com/v3b8462bcaccb4e6d94bdbb83f8503f47/bundles/gamespotsite/css/gamespot_white_split3.css"><![endif]--> <!-- Last Minute --> <style> /* Added by: Laura Description: Keep 16:9 aspect ratio of images at largest breakpoint */ @media (min-width: 1280px) { .promo--container .promo--image .content { height: 420px; } } /* Added by: Laura Description: Reviews door reviews score covering text Remove: /issue-tracker/issues/7114 */ .promo--single-metadata:not(.promo--video-show) .promo--media-type { position: relative; top: 0; left: 0; margin-bottom: 20px; width: 64px; height: 64px; } /* Added By: Will Description: Fix content flash Remove: after phoenix/pull/4716 */ body#default-body { visibility: visible !important; } .review-breakdown__inner .breakdown-score { background: none; border: none; box-shadow: none; } .kubrick-lead--ring__hold { max-width: 1460px; } @media only screen and (min-width: 1460px){ .kubrick-curtains:before, .kubrick-curtains:after { opacity: 1 !important; } } </style> <meta id="kCode" itemprop="kCode" name="kCode" content="/contra/cheats/"> <script> (function(){ if (window.BOOMR && window.BOOMR.version) { return; } var dom,doc,where,iframe = document.createElement("iframe"),win = window; function boomerangSaveLoadTime(e) { win.BOOMR_onload=(e && e.timeStamp) || new Date().getTime(); } if (win.addEventListener) { win.addEventListener("load", boomerangSaveLoadTime, false); } else if (win.attachEvent) { win.attachEvent("onload", boomerangSaveLoadTime); } iframe.src = "javascript:void(0)"; iframe.title = ""; iframe.role = "presentation"; (iframe.frameElement || iframe).style.cssText = "width:0;height:0;border:0;display:none;"; where = document.getElementsByTagName("script")[0]; where.parentNode.insertBefore(iframe, where); try { doc = iframe.contentWindow.document; } catch(e) { dom = document.domain; iframe.src="javascript:var d=document.open();d.domain='"+dom+"';void(0);"; doc = iframe.contentWindow.document; } doc.open()._l = function() { var js = this.createElement("script"); if (dom) { this.domain = dom; } js.id = "boomr-if-as"; js.src = "//web.archive.org/web/20200617093814/https://c.go-mpulse.net/boomerang/2XWZG-EJS9N-TDYMT-VFP4T-48MTK"; BOOMR_lstart=new Date().getTime(); this.body.appendChild(js); }; doc.write('<body onload="document._l();">'); doc.close(); })(); </script> <script type="application/ld+json"> { "@context": "https://web.archive.org/web/20200617093814/http://schema.org", "@type": "VideoGame", "name": "Battlestar Galactica (2003)", "url": "https://web.archive.org/web/20200617093814/https://www.gamespot.com/battlestar-galactica-2003/cheats/", "image": "https://web.archive.org/web/20200617093814/https://gamespot1.cbsistatic.com/uploads/scale_tiny/box/3/0/3/6/18214-53036.jpg", "description": "Battlestar Galactica puts forth a far more enjoyable effort than your average licensed game, but unfortunately, there are still many problems to be found within.", "datePublished": "2003-11-19T00:00:00Z", "publisher": ["Universal Interactive"], "genre": ["Simulation"], "gamePlatform": ["PlayStation 2", "Xbox"], "operatingSystem": ["PlayStation 2", "Xbox"], "applicationCategory":"Game" } </script> <script type="text/javascript" charset="utf-8"> PhoenixLoader.gdprConsentCallback("google_ad_sense", function() { (function(G,o,O,g,L,e){G[g]=G[g]||function(){(G[g]['q']=G[g]['q']||[]).push( arguments)},G[g]['t']=1*new Date;L=o.createElement(O),e=o.getElementsByTagName( O)[0];L.async=1;L.src='//web.archive.org/web/20200617093814/https://www.google.com/adsense/search/async-ads.js'; e.parentNode.insertBefore(L,e)})(window,document,'script','_googCsa'); }, 'targeting', 'Ads'); </script><script src="//web.archive.org/web/20200617093814js_/https://securepubads.g.doubleclick.net/tag/js/gpt.js" type="text/javascript" async></script><script> window.BidBarrel = window.BidBarrel || {}; window.BidBarrel.queue = window.BidBarrel.queue || []; </script><script type="text/plain" class="optanon-category-4" id="script_index_exchange" src="//web.archive.org/web/20200617093814js_/https://js-sec.indexww.com/ht/p/183728-38947210541979.js" async charset="utf-8"></script><script type="text/plain" class="optanon-category-4" id="script_bidbarrel_amazon" src="//web.archive.org/web/20200617093814js_/https://c.amazon-adsystem.com/aax2/apstag.js" async charset="utf-8"></script><script src="https://web.archive.org/web/20200617093814js_/https://gamespot1.cbsistatic.com/v61bf2ade7a3df033759fbb78da92f1ec/js/compiled/bidbarrel.js" type="text/javascript" async></script> <meta name="device-type" content="desktop"/> <meta name="page-type" content="games_cheats_list"/> <meta name="ab-test-label" content="not in test"/> <meta name="in-ab-test" content="0"/> <meta name="user-region" content="us"/> </head> <body id="default-body" class="default has-nav-slim body-gamespace col-2-template " style="display: block !important"> <section id="message-block" class="message-success" style="display: none"> </section> <div id="site-main"> <header id="masthead" class="js-masthead js-fixed-masthead masthead"><div class="js-masthead-overlay masthead-overlay masthead-nav-overlay"></div><div class="js-masthead-rows masthead-rows"><div class="js-masthead-compact masthead-row masthead-compact"><div class="masthead-row-wrap"><div class="js-masthead-toggle masthead-toggle masthead-toggle-nav" data-toggle="nav"><i class="masthead-toggle-nav-open"><svg viewbox="0 0 80 80" width="80" height="80" aria-hidden="true" class="symbol symbol-menu"><rect width="80" height="16"/><rect y="32" width="56" height="16"/><rect y="64" width="32" height="16"/></svg></i><i class="masthead-toggle-close masthead-toggle-nav-close"><svg viewbox="0 0 80 80" width="80" height="80" aria-hidden="true" class="symbol symbol-close"><polygon points="80 11.31 68.69 0 40 28.69 11.31 0 0 11.31 28.69 40 0 68.69 11.31 80 40 51.31 68.69 80 80 68.69 51.31 40 80 11.31"/></svg></i></div><div class="masthead-nav-section flexbox-row flex-grow"><div class="masthead-logo"><a class="masthead-logo-link" href="/web/20200617093814/https://www.gamespot.com/" title="GameSpot"><i class="masthead-logo-asset masthead-logo-asset-compact"><svg viewbox="0 0 731.79 731.81" width="731.79" height="731.81" aria-hidden="true" class="symbol symbol-logo-outline-circle"><path d="M365.89,0C163.81,0,0,163.83,0,365.91s163.81,365.9,365.89,365.9S731.79,568,731.79,365.91,568,0,365.89,0Zm0,684.24c-175.81,0-318.33-142.53-318.33-318.33S190.08,47.58,365.89,47.58,684.23,190.1,684.23,365.91,541.71,684.24,365.89,684.24Z"/><path d="M508.25,506.5c-8.35-5.84-19.41-8.42-31.6-8.42-9.51,0-33.75,3.88-71.5,11.7-19.88,4.27-35.17,5.61-46.07,5.61-43.63,0-80.47-14.35-112.21-43.36-30.26-29.3-46.21-64.56-46.21-105.9,0-42.29,14.94-77.74,46-106.05,31.92-29.35,72.16-43.65,121.16-43.65,32.09,0,57.48,2.21,78.49,7.5,3.24.65,19.22,5.84,47.56,16.19l-11.58,44.3c-14.15-5.81-24.73-9.14-32.43-10.73a169.56,169.56,0,0,0-46.22-6.16c-31.92,0-56.85,10.13-75.72,30.29-17.42,18.52-25.53,41.72-25.53,68.73,0,26.67,7.79,48.47,23.74,66.42C342.3,451.12,361.33,459,383.29,459c8.48,0,16-1.34,21.83-6.58a27.1,27.1,0,0,0,9-20.83V371.07h94.15Z"/></svg></i><i class="masthead-logo-asset masthead-logo-asset-full"><svg viewbox="0 0 1631.76 517.06" width="1631.76" height="517.06" aria-hidden="true" class="symbol symbol-logo-outline-full"><path d="M1510,137.41a119.48,119.48,0,0,0-75.43,27l60.12-88.74L1383.6,151.05,1411,19.51l-73.82,112.37L1311.82,0l-25.16,131.87-73.71-112,27.2,131.23-110.9-75,60,88.07a119.78,119.78,0,0,0-75.55-26.71c-41.34,0-77.15,20.59-99.43,51.75-22-31.16-58-51.75-99.3-51.75a121.52,121.52,0,0,0-99.24,51.75,121.49,121.49,0,0,0-99.21-51.75c-40.94,0-77.15,20.59-99.33,51.75a120.86,120.86,0,0,0-99-51.75c-41,0-77.23,20.59-99.53,51.75a120.74,120.74,0,0,0-99-51.75c-41,0-77.12,20.59-99.44,51.75a120.69,120.69,0,0,0-99.12-51.75C54.43,137.41,0,191.87,0,258.72S54.43,380,121.12,380a120.32,120.32,0,0,0,99.12-51.62C242.57,359.61,278.73,380,319.69,380a120.37,120.37,0,0,0,99-51.62C441,359.61,477.28,380,518.25,380a120.49,120.49,0,0,0,99-51.62,121.26,121.26,0,0,0,198.54,0,121.26,121.26,0,0,0,198.54,0c22.28,31.26,58.09,51.62,99.43,51.62,28.3,0,54.33-9.83,75.55-25.91l-60,87.21,111.12-75.21-27.22,131.36,73.73-112.09L1312,517.06l25.5-131.72,73.71,111.88-27.42-131.37,111.12,75.34-59.15-86.55A121.82,121.82,0,0,0,1510,380c67.4,0,121.71-54.42,121.71-121.26S1577.44,137.41,1510,137.41Zm.76,225.84c-46,0-78.72-26.79-121-53.28l51.68,77.52-79.84-55.27,24.57,98.27-55.27-86-18.36,98.26-18.49-98.26-55.27,86,24.57-98.27-79.85,55.27,51.14-76.71c-42.47,26.22-76.33,52.46-121.17,52.46a104.7,104.7,0,0,1-99.32-71.68,104.65,104.65,0,0,1-198.64,0,104.65,104.65,0,0,1-198.64,0,104.65,104.65,0,0,1-198.64,0,104.65,104.65,0,0,1-198.64,0,104.73,104.73,0,1,1,0-66.1,104.65,104.65,0,0,1,198.64,0,104.65,104.65,0,0,1,198.64,0,104.65,104.65,0,0,1,198.64,0,104.65,104.65,0,0,1,198.64,0,104.7,104.7,0,0,1,99.32-71.68c46.59,0,78.7,26.25,121.17,52.46l-51.14-76.71,79.85,55.28-24.57-98.27,55.27,86,18.38-98.27L1331,172.55l55.27-86-24.57,98.27,79.84-55.28-50.64,76c42.19-26,78.93-51.72,119.94-51.72a104.73,104.73,0,0,1,0,209.46Z"/><path d="M136.2,280.15a8.92,8.92,0,0,1-2.94,6.85c-1.92,1.72-4.39,2.16-7.18,2.16a24,24,0,0,1-18.81-8.58c-5.25-5.91-7.81-13.08-7.81-21.85s2.67-16.52,8.4-22.61c6.21-6.63,14.41-10,24.91-10a55.78,55.78,0,0,1,15.21,2,63,63,0,0,1,10.67,3.53l3.81-14.57c-9.32-3.41-14.58-5.11-15.65-5.33-6.91-1.74-15.26-2.47-25.82-2.47-16.12,0-29.36,4.71-39.86,14.36C70.9,233,66,244.69,66,258.6c0,13.6,5.25,25.2,15.2,34.84a52.57,52.57,0,0,0,36.92,14.26,73.35,73.35,0,0,0,15.16-1.85c12.42-2.57,20.39-3.85,23.52-3.85a18.05,18.05,0,0,1,10.4,2.77V260.23h-31Z"/><path d="M308.4,212.23l-43.31,92.56H283.8l6.92-15h42.42l6.9,15h34.07l-43.5-92.56Zm-9.81,60.86,13.24-28.58,13.32,28.58Z"/><polygon points="517.91 252.84 489.36 212.22 463.43 212.22 463.43 304.78 480.56 304.78 480.56 253.16 500.7 282.49 517.91 282.49 541.47 248.89 541.47 304.78 572.38 304.78 572.38 212.22 546.73 212.22 517.91 252.84"/><polygon points="677.93 304.78 754.15 304.78 754.15 287.99 709.2 287.99 709.2 263.12 740.28 263.12 740.28 246.19 709.2 246.19 709.2 229.06 754.15 229.06 754.15 212.22 677.93 212.22 677.93 304.78"/><path d="M924.15,245.87c-6.33-2.34-10.84-4.62-13.66-6.65s-3.9-4-3.9-5.65a5,5,0,0,1,2.39-4.4,13.87,13.87,0,0,1,6.92-1.63,57.86,57.86,0,0,1,16,2.27,70.33,70.33,0,0,1,14,6.76L954.25,224A70.11,70.11,0,0,0,936,214.15a66.35,66.35,0,0,0-24.85-4.79q-16.81,0-27.49,8.68c-6.69,5.34-10.17,12-10.17,19.93,0,6.43,2.28,11.89,7,16.89s11.62,9.48,21.33,13c14.46,5.57,21.74,10.1,21.74,13.61A6.14,6.14,0,0,1,920.4,287c-2.36,1.72-5.24,2.16-9.21,2.16-6.11,0-11.68-.76-16.67-2.92a54.94,54.94,0,0,1-14.66-8.9l-9.34,11.38a61.93,61.93,0,0,0,18.58,13.18,59.16,59.16,0,0,0,26.15,5.8c13.07,0,23.57-2.92,31.63-8.9,7.49-5.57,11.13-12,11.13-19.48a25.2,25.2,0,0,0-7-17.78C945.58,255.5,936.79,249.93,924.15,245.87Z"/><path d="M1157.51,221.11c-7.93-6-17.35-8.88-28.29-8.88h-52.83v92.56h31.3V273.94h21.53c10.94,0,20.36-3.13,28.29-9.21,7.72-6,11.48-13.38,11.48-21.84S1165.23,227.13,1157.51,221.11Zm-24.43,31.38a20.71,20.71,0,0,1-13.05,4.11h-12.34V229.06H1120a22.34,22.34,0,0,1,13.05,4.18c3.55,2.78,5.36,6.19,5.36,9.66C1138.43,246.85,1136.62,249.93,1133.07,252.48Z"/><path d="M1349.28,223.58c-9.75-9.53-21.94-14.23-36.65-14.23-14.22,0-26.44,4.71-36.61,14.23-9.87,9.66-14.9,21.35-14.9,35s5,25.2,14.9,34.84a52.15,52.15,0,0,0,36.61,14.26c14.7,0,26.9-4.72,36.65-14.26,10.41-9.64,15.33-21.24,15.33-34.84S1359.45,233.24,1349.28,223.58Zm-23.56,56.78c-3.74,6.13-7.95,8.81-12.87,8.81s-9.4-2.61-13.16-8.58a46.53,46.53,0,0,1,0-43.73c4-6.19,8.24-9.33,13.16-9.33s9.57,3.14,13.09,9c3.74,6.09,5.56,13.37,5.56,22C1331.5,267.07,1329.69,274.48,1325.72,280.36Z"/><polygon points="1464.79 229.06 1495.11 229.06 1495.11 304.78 1525.79 304.78 1525.79 229.06 1555.98 229.06 1555.98 212.22 1464.79 212.22 1464.79 229.06"/></svg></i></a></div><div class="js-masthead-toggle masthead-toggle masthead-toggle-search" data-toggle="search"><i class="masthead-toggle-search-open"><svg viewbox="0 0 80 80" width="80" height="80" aria-hidden="true" class="symbol symbol-search"><path d="M80,68.69,59.56,48.25A32,32,0,1,0,48.25,59.56L68.69,80ZM32,48A16,16,0,1,1,48,32,16,16,0,0,1,32,48Z"/></svg></i></div></div></div></div><div class="masthead-row masthead-default"><div class="masthead-row-wrap masthead-default-wrap"><div class="masthead-logo"><a class="masthead-logo-link" href="/web/20200617093814/https://www.gamespot.com/" title="GameSpot"><i class="masthead-logo-asset masthead-logo-asset-compact"><svg viewbox="0 0 731.79 731.81" width="731.79" height="731.81" aria-hidden="true" class="symbol symbol-logo-outline-circle"><path d="M365.89,0C163.81,0,0,163.83,0,365.91s163.81,365.9,365.89,365.9S731.79,568,731.79,365.91,568,0,365.89,0Zm0,684.24c-175.81,0-318.33-142.53-318.33-318.33S190.08,47.58,365.89,47.58,684.23,190.1,684.23,365.91,541.71,684.24,365.89,684.24Z"/><path d="M508.25,506.5c-8.35-5.84-19.41-8.42-31.6-8.42-9.51,0-33.75,3.88-71.5,11.7-19.88,4.27-35.17,5.61-46.07,5.61-43.63,0-80.47-14.35-112.21-43.36-30.26-29.3-46.21-64.56-46.21-105.9,0-42.29,14.94-77.74,46-106.05,31.92-29.35,72.16-43.65,121.16-43.65,32.09,0,57.48,2.21,78.49,7.5,3.24.65,19.22,5.84,47.56,16.19l-11.58,44.3c-14.15-5.81-24.73-9.14-32.43-10.73a169.56,169.56,0,0,0-46.22-6.16c-31.92,0-56.85,10.13-75.72,30.29-17.42,18.52-25.53,41.72-25.53,68.73,0,26.67,7.79,48.47,23.74,66.42C342.3,451.12,361.33,459,383.29,459c8.48,0,16-1.34,21.83-6.58a27.1,27.1,0,0,0,9-20.83V371.07h94.15Z"/></svg></i><i class="masthead-logo-asset masthead-logo-asset-full"><svg viewbox="0 0 1631.76 517.06" width="1631.76" height="517.06" aria-hidden="true" class="symbol symbol-logo-outline-full"><path d="M1510,137.41a119.48,119.48,0,0,0-75.43,27l60.12-88.74L1383.6,151.05,1411,19.51l-73.82,112.37L1311.82,0l-25.16,131.87-73.71-112,27.2,131.23-110.9-75,60,88.07a119.78,119.78,0,0,0-75.55-26.71c-41.34,0-77.15,20.59-99.43,51.75-22-31.16-58-51.75-99.3-51.75a121.52,121.52,0,0,0-99.24,51.75,121.49,121.49,0,0,0-99.21-51.75c-40.94,0-77.15,20.59-99.33,51.75a120.86,120.86,0,0,0-99-51.75c-41,0-77.23,20.59-99.53,51.75a120.74,120.74,0,0,0-99-51.75c-41,0-77.12,20.59-99.44,51.75a120.69,120.69,0,0,0-99.12-51.75C54.43,137.41,0,191.87,0,258.72S54.43,380,121.12,380a120.32,120.32,0,0,0,99.12-51.62C242.57,359.61,278.73,380,319.69,380a120.37,120.37,0,0,0,99-51.62C441,359.61,477.28,380,518.25,380a120.49,120.49,0,0,0,99-51.62,121.26,121.26,0,0,0,198.54,0,121.26,121.26,0,0,0,198.54,0c22.28,31.26,58.09,51.62,99.43,51.62,28.3,0,54.33-9.83,75.55-25.91l-60,87.21,111.12-75.21-27.22,131.36,73.73-112.09L1312,517.06l25.5-131.72,73.71,111.88-27.42-131.37,111.12,75.34-59.15-86.55A121.82,121.82,0,0,0,1510,380c67.4,0,121.71-54.42,121.71-121.26S1577.44,137.41,1510,137.41Zm.76,225.84c-46,0-78.72-26.79-121-53.28l51.68,77.52-79.84-55.27,24.57,98.27-55.27-86-18.36,98.26-18.49-98.26-55.27,86,24.57-98.27-79.85,55.27,51.14-76.71c-42.47,26.22-76.33,52.46-121.17,52.46a104.7,104.7,0,0,1-99.32-71.68,104.65,104.65,0,0,1-198.64,0,104.65,104.65,0,0,1-198.64,0,104.65,104.65,0,0,1-198.64,0,104.65,104.65,0,0,1-198.64,0,104.73,104.73,0,1,1,0-66.1,104.65,104.65,0,0,1,198.64,0,104.65,104.65,0,0,1,198.64,0,104.65,104.65,0,0,1,198.64,0,104.65,104.65,0,0,1,198.64,0,104.7,104.7,0,0,1,99.32-71.68c46.59,0,78.7,26.25,121.17,52.46l-51.14-76.71,79.85,55.28-24.57-98.27,55.27,86,18.38-98.27L1331,172.55l55.27-86-24.57,98.27,79.84-55.28-50.64,76c42.19-26,78.93-51.72,119.94-51.72a104.73,104.73,0,0,1,0,209.46Z"/><path d="M136.2,280.15a8.92,8.92,0,0,1-2.94,6.85c-1.92,1.72-4.39,2.16-7.18,2.16a24,24,0,0,1-18.81-8.58c-5.25-5.91-7.81-13.08-7.81-21.85s2.67-16.52,8.4-22.61c6.21-6.63,14.41-10,24.91-10a55.78,55.78,0,0,1,15.21,2,63,63,0,0,1,10.67,3.53l3.81-14.57c-9.32-3.41-14.58-5.11-15.65-5.33-6.91-1.74-15.26-2.47-25.82-2.47-16.12,0-29.36,4.71-39.86,14.36C70.9,233,66,244.69,66,258.6c0,13.6,5.25,25.2,15.2,34.84a52.57,52.57,0,0,0,36.92,14.26,73.35,73.35,0,0,0,15.16-1.85c12.42-2.57,20.39-3.85,23.52-3.85a18.05,18.05,0,0,1,10.4,2.77V260.23h-31Z"/><path d="M308.4,212.23l-43.31,92.56H283.8l6.92-15h42.42l6.9,15h34.07l-43.5-92.56Zm-9.81,60.86,13.24-28.58,13.32,28.58Z"/><polygon points="517.91 252.84 489.36 212.22 463.43 212.22 463.43 304.78 480.56 304.78 480.56 253.16 500.7 282.49 517.91 282.49 541.47 248.89 541.47 304.78 572.38 304.78 572.38 212.22 546.73 212.22 517.91 252.84"/><polygon points="677.93 304.78 754.15 304.78 754.15 287.99 709.2 287.99 709.2 263.12 740.28 263.12 740.28 246.19 709.2 246.19 709.2 229.06 754.15 229.06 754.15 212.22 677.93 212.22 677.93 304.78"/><path d="M924.15,245.87c-6.33-2.34-10.84-4.62-13.66-6.65s-3.9-4-3.9-5.65a5,5,0,0,1,2.39-4.4,13.87,13.87,0,0,1,6.92-1.63,57.86,57.86,0,0,1,16,2.27,70.33,70.33,0,0,1,14,6.76L954.25,224A70.11,70.11,0,0,0,936,214.15a66.35,66.35,0,0,0-24.85-4.79q-16.81,0-27.49,8.68c-6.69,5.34-10.17,12-10.17,19.93,0,6.43,2.28,11.89,7,16.89s11.62,9.48,21.33,13c14.46,5.57,21.74,10.1,21.74,13.61A6.14,6.14,0,0,1,920.4,287c-2.36,1.72-5.24,2.16-9.21,2.16-6.11,0-11.68-.76-16.67-2.92a54.94,54.94,0,0,1-14.66-8.9l-9.34,11.38a61.93,61.93,0,0,0,18.58,13.18,59.16,59.16,0,0,0,26.15,5.8c13.07,0,23.57-2.92,31.63-8.9,7.49-5.57,11.13-12,11.13-19.48a25.2,25.2,0,0,0-7-17.78C945.58,255.5,936.79,249.93,924.15,245.87Z"/><path d="M1157.51,221.11c-7.93-6-17.35-8.88-28.29-8.88h-52.83v92.56h31.3V273.94h21.53c10.94,0,20.36-3.13,28.29-9.21,7.72-6,11.48-13.38,11.48-21.84S1165.23,227.13,1157.51,221.11Zm-24.43,31.38a20.71,20.71,0,0,1-13.05,4.11h-12.34V229.06H1120a22.34,22.34,0,0,1,13.05,4.18c3.55,2.78,5.36,6.19,5.36,9.66C1138.43,246.85,1136.62,249.93,1133.07,252.48Z"/><path d="M1349.28,223.58c-9.75-9.53-21.94-14.23-36.65-14.23-14.22,0-26.44,4.71-36.61,14.23-9.87,9.66-14.9,21.35-14.9,35s5,25.2,14.9,34.84a52.15,52.15,0,0,0,36.61,14.26c14.7,0,26.9-4.72,36.65-14.26,10.41-9.64,15.33-21.24,15.33-34.84S1359.45,233.24,1349.28,223.58Zm-23.56,56.78c-3.74,6.13-7.95,8.81-12.87,8.81s-9.4-2.61-13.16-8.58a46.53,46.53,0,0,1,0-43.73c4-6.19,8.24-9.33,13.16-9.33s9.57,3.14,13.09,9c3.74,6.09,5.56,13.37,5.56,22C1331.5,267.07,1329.69,274.48,1325.72,280.36Z"/><polygon points="1464.79 229.06 1495.11 229.06 1495.11 304.78 1525.79 304.78 1525.79 229.06 1555.98 229.06 1555.98 212.22 1464.79 212.22 1464.79 229.06"/></svg></i></a></div><div class="js-masthead-nav masthead-nav masthead-hspace-r masthead-vr-r"><nav class="js-masthead-site-nav masthead-nav-section masthead-site-nav flex-grow"><ul class="masthead-nav-items"><li class="js-masthead-nav-item masthead-nav-item"><div class="masthead-nav-item-wrap"><a class="masthead-nav-item-label" href="https://web.archive.org/web/20200617093814/https://www.gamespot.com/articles/how-to-watch-ps5-games-reveal-event-start-time-and/1100-6478266/"><span class="masthead-nav-item-text">PS5 Reveal</span></a></div></li><li class="js-masthead-menu js-masthead-nav-item masthead-nav-item masthead-hspace-l"><div class="masthead-nav-item-wrap"><a class="js-masthead-menu-link masthead-nav-item-label" href="/web/20200617093814/https://www.gamespot.com/games/"><span class="masthead-nav-item-text">Games</span><i class="masthead-nav-item-icon"><svg version="1.1" width="18" height="28" viewbox="0 0 18 28" aria-hidden="true" class="symbol symbol-angle-down"><path d="M16.797 11.5q0 0.203-0.156 0.359l-7.281 7.281q-0.156 0.156-0.359 0.156t-0.359-0.156l-7.281-7.281q-0.156-0.156-0.156-0.359t0.156-0.359l0.781-0.781q0.156-0.156 0.359-0.156t0.359 0.156l6.141 6.141 6.141-6.141q0.156-0.156 0.359-0.156t0.359 0.156l0.781 0.781q0.156 0.156 0.156 0.359z"/></svg></i></a><span class="js-masthead-menu-toggle masthead-nav-item-toggle"><i class="masthead-toggle-nav-item-open"><svg version="1.1" width="18" height="28" viewbox="0 0 18 28" aria-hidden="true" class="symbol symbol-angle-down"><path d="M16.797 11.5q0 0.203-0.156 0.359l-7.281 7.281q-0.156 0.156-0.359 0.156t-0.359-0.156l-7.281-7.281q-0.156-0.156-0.156-0.359t0.156-0.359l0.781-0.781q0.156-0.156 0.359-0.156t0.359 0.156l6.141 6.141 6.141-6.141q0.156-0.156 0.359-0.156t0.359 0.156l0.781 0.781q0.156 0.156 0.156 0.359z"/></svg></i><i class="masthead-toggle-close masthead-toggle-nav-item-close"><svg version="1.1" width="18" height="28" viewbox="0 0 18 28" aria-hidden="true" class="symbol symbol-angle-up"><path d="M16.797 18.5q0 0.203-0.156 0.359l-0.781 0.781q-0.156 0.156-0.359 0.156t-0.359-0.156l-6.141-6.141-6.141 6.141q-0.156 0.156-0.359 0.156t-0.359-0.156l-0.781-0.781q-0.156-0.156-0.156-0.359t0.156-0.359l7.281-7.281q0.156-0.156 0.359-0.156t0.359 0.156l7.281 7.281q0.156 0.156 0.156 0.359z"/></svg></i></span></div><!-- GamespotSiteBundle:Core:masthead:other_subnav_games|N|02:38:44 --><div class="js-masthead-subnav masthead-subnav"><div class="masthead-subnav-content"><ul class="masthead-subnav-items"><li class="masthead-subnav-item"><a href="/web/20200617093814/https://www.gamespot.com/games/" class="js-click-tag" data-click-tag="nav|games|left-menu|games-home">All Games News</a></li><li class="masthead-subnav-item"><a href="/web/20200617093814/https://www.gamespot.com/gametech/" class="js-click-tag" data-click-tag="nav|games|left-menu|gametech">Game Tech</a></li><li class="masthead-subnav-item masthead-hr-t"><a href="/web/20200617093814/https://www.gamespot.com/games/pc/" class="js-click-tag" data-click-tag="nav|games|left-menu|pc">PC</a></li><li class="masthead-subnav-item"><a href="/web/20200617093814/https://www.gamespot.com/games/ps4/" class="js-click-tag" data-click-tag="nav|games|left-menu|ps4">PS4</a></li><li class="masthead-subnav-item"><a href="/web/20200617093814/https://www.gamespot.com/games/ps5/" class="js-click-tag" data-click-tag="nav|games|left-menu|ps5">PS5</a></li><li class="masthead-subnav-item"><a href="/web/20200617093814/https://www.gamespot.com/games/xbox-one/" class="js-click-tag" data-click-tag="nav|games|left-menu|xbox-one">Xbox One</a></li><li class="masthead-subnav-item"><a href="/web/20200617093814/https://www.gamespot.com/games/xbox-series-x/" class="js-click-tag" data-click-tag="nav|games|left-menu|xbox-series-x">Xbox Series X</a></li><li class="masthead-subnav-item"><a href="/web/20200617093814/https://www.gamespot.com/games/nintendo-switch/" class="js-click-tag" data-click-tag="nav|games|left-menu|switch">Switch</a></li><li class="masthead-subnav-item"><a href="/web/20200617093814/https://www.gamespot.com/games/stadia/" class="js-click-tag" data-click-tag="nav|games|left-menu|stadia">Stadia</a></li><li class="masthead-subnav-item"><a href="/web/20200617093814/https://www.gamespot.com/games/3ds/" class="js-click-tag" data-click-tag="nav|games|left-menu|3ds">3DS</a></li></ul><div class="masthead-subnav-items masthead-subnav-spotlight"><div class="masthead-subnav-spotlight-content"><div class="masthead-subnav-spotlight-title">Latest in Games</div><div class="masthead-subnav-spotlight-body"><ol><li class="masthead-content-item"><a class="content-item--list-item flexbox-row" href="/web/20200617093814/https://www.gamespot.com/articles/the-division-2s-new-iron-horse-raid-launches-later/1100-6478565/"><div><div class="link-img vertical-spacing-small"><img class="type-article" src="https://web.archive.org/web/20200617093814im_/https://gamespot1.cbsistatic.com/uploads/screen_large/123/1239113/3687067-tctd2_ravenous%20_exotic.jpg" alt="The Division 2's New Iron Horse Raid Launches Later This Month"></div></div><div><div class="card-byline"><p class="p-small-space text-small">The Division 2&#039;s New Iron Horse Raid Launches Later This Month</p></div></div></a></li><li class="masthead-content-item"><a class="content-item--list-item flexbox-row" href="/web/20200617093814/https://www.gamespot.com/videos/how-wasteland-3-can-be-the-best-in-the-series-inte/2300-6453151/"><div><div class="link-img vertical-spacing-small"><div class="hover-play-pause absolute-play-pause"><div class="hover-play-icon "><i><svg viewbox="0 0 90 90" width="90" height="90" aria-hidden="true" class="symbol symbol-video-play"><polygon points="10 80 10 10 80 45 10 80"/></svg></i></div><div class="hover-pause-icon "><i><svg viewbox="0 0 80 80" width="80" height="80" aria-hidden="true" class="symbol symbol-video-pause"><rect width="24" height="80"/><rect x="56" width="24" height="80"/></svg></i></div></div><img class="type-video" src="https://web.archive.org/web/20200617093814im_/https://gamespot1.cbsistatic.com/uploads/screen_large/1574/15746725/3686712-p4a_wasteland3interview_20200615_site.jpeg" alt="How Wasteland 3 Can Be The Best In The Series, Interview With Brian Fargo"></div></div><div><div class="card-byline"><p class="p-small-space text-small">How Wasteland 3 Can Be The Best In The Series, Interview With Brian Fargo</p></div></div></a></li><li class="masthead-content-item"><a class="content-item--list-item flexbox-row" href="/web/20200617093814/https://www.gamespot.com/videos/in-humankind-the-most-famous-civ-wins/2300-6453149/"><div><div class="link-img vertical-spacing-small"><div class="hover-play-pause absolute-play-pause"><div class="hover-play-icon "><i><svg viewbox="0 0 90 90" width="90" height="90" aria-hidden="true" class="symbol symbol-video-play"><polygon points="10 80 10 10 80 45 10 80"/></svg></i></div><div class="hover-pause-icon "><i><svg viewbox="0 0 80 80" width="80" height="80" aria-hidden="true" class="symbol symbol-video-pause"><rect width="24" height="80"/><rect x="56" width="24" height="80"/></svg></i></div></div><img class="type-video" src="https://web.archive.org/web/20200617093814im_/https://gamespot1.cbsistatic.com/uploads/screen_large/1574/15746725/3686657-humankind-site.jpg" alt="In Humankind The Most Famous Civ Wins"></div></div><div><div class="card-byline"><p class="p-small-space text-small">In Humankind The Most Famous Civ Wins</p></div></div></a></li></ol></div></div></div></div></div><!-- /GamespotSiteBundle:Core:masthead:other_subnav_games --></li><li class="js-masthead-nav-item masthead-nav-item masthead-hspace-l"><div class="masthead-nav-item-wrap"><a class="masthead-nav-item-label" href="/web/20200617093814/https://www.gamespot.com/entertainment/"><span class="masthead-nav-item-text">Entertainment</span></a></div></li></ul><ul class="masthead-nav-items masthead-hspace-l masthead-vr-l"><li class="js-masthead-nav-item masthead-nav-item"><div class="masthead-nav-item-wrap"><a class="masthead-nav-item-label" href="/web/20200617093814/https://www.gamespot.com/news/"><span class="masthead-nav-item-text">News</span></a></div></li><li class="js-masthead-menu js-masthead-nav-item masthead-nav-item masthead-hspace-l"><div class="masthead-nav-item-wrap"><a class="js-masthead-menu-link masthead-nav-item-label" href="/web/20200617093814/https://www.gamespot.com/games/reviews/"><span class="masthead-nav-item-text">Reviews</span><i class="masthead-nav-item-icon"><svg version="1.1" width="18" height="28" viewbox="0 0 18 28" aria-hidden="true" class="symbol symbol-angle-down"><path d="M16.797 11.5q0 0.203-0.156 0.359l-7.281 7.281q-0.156 0.156-0.359 0.156t-0.359-0.156l-7.281-7.281q-0.156-0.156-0.156-0.359t0.156-0.359l0.781-0.781q0.156-0.156 0.359-0.156t0.359 0.156l6.141 6.141 6.141-6.141q0.156-0.156 0.359-0.156t0.359 0.156l0.781 0.781q0.156 0.156 0.156 0.359z"/></svg></i></a><span class="js-masthead-menu-toggle masthead-nav-item-toggle"><i class="masthead-toggle-nav-item-open"><svg version="1.1" width="18" height="28" viewbox="0 0 18 28" aria-hidden="true" class="symbol symbol-angle-down"><path d="M16.797 11.5q0 0.203-0.156 0.359l-7.281 7.281q-0.156 0.156-0.359 0.156t-0.359-0.156l-7.281-7.281q-0.156-0.156-0.156-0.359t0.156-0.359l0.781-0.781q0.156-0.156 0.359-0.156t0.359 0.156l6.141 6.141 6.141-6.141q0.156-0.156 0.359-0.156t0.359 0.156l0.781 0.781q0.156 0.156 0.156 0.359z"/></svg></i><i class="masthead-toggle-close masthead-toggle-nav-item-close"><svg version="1.1" width="18" height="28" viewbox="0 0 18 28" aria-hidden="true" class="symbol symbol-angle-up"><path d="M16.797 18.5q0 0.203-0.156 0.359l-0.781 0.781q-0.156 0.156-0.359 0.156t-0.359-0.156l-6.141-6.141-6.141 6.141q-0.156 0.156-0.359 0.156t-0.359-0.156l-0.781-0.781q-0.156-0.156-0.156-0.359t0.156-0.359l7.281-7.281q0.156-0.156 0.359-0.156t0.359 0.156l7.281 7.281q0.156 0.156 0.156 0.359z"/></svg></i></span></div><!-- GamespotSiteBundle:Core:masthead:other_subnav_reviews|N|02:38:44 --><div class="js-masthead-subnav masthead-subnav"><div class="masthead-subnav-content"><ul class="masthead-subnav-items"><li class="masthead-subnav-item"><a href="/web/20200617093814/https://www.gamespot.com/games/reviews/" class="js-click-tag" data-click-tag="nav|reviews|left-menu|games">Games</a></li><li class="masthead-subnav-item"><a href="/web/20200617093814/https://www.gamespot.com/entertainment/reviews/" class="js-click-tag" data-click-tag="nav|reviews|left-menu|entertainment">Entertainment</a></li></ul></div></div><!-- /GamespotSiteBundle:Core:masthead:other_subnav_reviews --></li><li class="js-masthead-nav-item masthead-nav-item masthead-hspace-l"><div class="masthead-nav-item-wrap"><a class="masthead-nav-item-label" href="/web/20200617093814/https://www.gamespot.com/videos/"><span class="masthead-nav-item-text">Videos</span></a></div></li><li class="js-masthead-nav-item masthead-nav-item masthead-hspace-l"><div class="masthead-nav-item-wrap"><a class="masthead-nav-item-label" href="/web/20200617093814/https://www.gamespot.com/deals/"><span class="masthead-nav-item-text">Deals</span></a></div></li></ul><ul class="masthead-nav-items masthead-hspace-l masthead-vr-l"><li class="js-masthead-menu js-masthead-nav-item masthead-nav-item"><div class="masthead-nav-item-wrap"><a class="js-masthead-menu-link masthead-nav-item-label" href="/web/20200617093814/https://www.gamespot.com/forums/"><span class="masthead-nav-item-text">Forums</span><i class="masthead-nav-item-icon"><svg version="1.1" width="18" height="28" viewbox="0 0 18 28" aria-hidden="true" class="symbol symbol-angle-down"><path d="M16.797 11.5q0 0.203-0.156 0.359l-7.281 7.281q-0.156 0.156-0.359 0.156t-0.359-0.156l-7.281-7.281q-0.156-0.156-0.156-0.359t0.156-0.359l0.781-0.781q0.156-0.156 0.359-0.156t0.359 0.156l6.141 6.141 6.141-6.141q0.156-0.156 0.359-0.156t0.359 0.156l0.781 0.781q0.156 0.156 0.156 0.359z"/></svg></i></a><span class="js-masthead-menu-toggle masthead-nav-item-toggle"><i class="masthead-toggle-nav-item-open"><svg version="1.1" width="18" height="28" viewbox="0 0 18 28" aria-hidden="true" class="symbol symbol-angle-down"><path d="M16.797 11.5q0 0.203-0.156 0.359l-7.281 7.281q-0.156 0.156-0.359 0.156t-0.359-0.156l-7.281-7.281q-0.156-0.156-0.156-0.359t0.156-0.359l0.781-0.781q0.156-0.156 0.359-0.156t0.359 0.156l6.141 6.141 6.141-6.141q0.156-0.156 0.359-0.156t0.359 0.156l0.781 0.781q0.156 0.156 0.156 0.359z"/></svg></i><i class="masthead-toggle-close masthead-toggle-nav-item-close"><svg version="1.1" width="18" height="28" viewbox="0 0 18 28" aria-hidden="true" class="symbol symbol-angle-up"><path d="M16.797 18.5q0 0.203-0.156 0.359l-0.781 0.781q-0.156 0.156-0.359 0.156t-0.359-0.156l-6.141-6.141-6.141 6.141q-0.156 0.156-0.359 0.156t-0.359-0.156l-0.781-0.781q-0.156-0.156-0.156-0.359t0.156-0.359l7.281-7.281q0.156-0.156 0.359-0.156t0.359 0.156l7.281 7.281q0.156 0.156 0.156 0.359z"/></svg></i></span></div><!-- GamespotSiteBundle:Core:masthead:other_subnav__forums_anon|N|02:40:14 --><div class="js-masthead-subnav masthead-subnav"><div class="masthead-subnav-content"><ul class="masthead-subnav-items"><li class="masthead-subnav-item"><a href="/web/20200617093814/https://www.gamespot.com/forums/games-discussion-1000000/" class="js-click-tag" data-click-tag="nav|forums|left-menu|games-discussion">Games Discussion</a></li><li class="masthead-subnav-item"><a href="/web/20200617093814/https://www.gamespot.com/forums/system-wars-314159282/" class="js-click-tag" data-click-tag="nav|forums|left-menu|system-wars">System Wars</a></li><li class="masthead-subnav-item"><a href="/web/20200617093814/https://www.gamespot.com/forums/offtopic-discussion-314159273/" class="js-click-tag" data-click-tag="nav|forums|left-menu|offtopic-discussion">Off-Topic Discussion</a></li></ul><ul class="masthead-subnav-items"><li class="masthead-subnav-item"><a href="/web/20200617093814/https://www.gamespot.com/forums/bug-reporting-feedback-1000006/" class="js-click-tag" data-click-tag="nav|forums|left-menu|bug-reporting-feedback">Bug Reporting &amp; Feedback</a></li><li class="masthead-subnav-item"><a href="/web/20200617093814/https://www.gamespot.com/forums/" class="js-click-tag" data-click-tag="nav|forums|left-menu|see-all">See all Forums</a></li></ul></div></div><!-- /GamespotSiteBundle:Core:masthead:other_subnav__forums_anon --></li></ul></nav><nav class="masthead-nav-section" role="navigation"><a class="masthead-nav-item-label" href="/web/20200617093814/https://www.gamespot.com/login-signup/">Login/Sign Up</a></nav></div><div class="js-masthead-toggle masthead-toggle masthead-toggle-search" data-toggle="search"><i class="masthead-toggle-search-open"><svg viewbox="0 0 80 80" width="80" height="80" aria-hidden="true" class="symbol symbol-search"><path d="M80,68.69,59.56,48.25A32,32,0,1,0,48.25,59.56L68.69,80ZM32,48A16,16,0,1,1,48,32,16,16,0,0,1,32,48Z"/></svg></i></div></div></div><div class="js-masthead-overlay masthead-overlay masthead-search-overlay"></div><div class="masthead-row masthead-search"><div class="masthead-row-wrap"><div class="js-masthead-search masthead-search-content flexbox-row flexbox-align-stretch width-100"><div class="masthead-search-body masthead-vr-r masthead-hspace-r"><div class="js-site-search-container site-search-container"><form action="/web/20200617093814/https://www.gamespot.com/search/" method="get" class="js-site-search main-search flexbox-row" data-search-landing="true" data-search-results-length="10" data-search-parent-selector=".js-masthead-search"><div class="dropdown--main"><select name="i" class="dropdown--selector"><option value="">All</option><option value="site">Games</option><option value="videos">Videos</option><option value="articles">Articles</option><option value="reviews">Reviews</option><option value="features">Features</option><option value="image_gallery">Galleries</option><option value="users">Users</option></select></div><i class="symbol-search-wrapper"><svg viewbox="0 0 80 80" width="80" height="80" aria-hidden="true" class="symbol symbol-search"><path d="M80,68.69,59.56,48.25A32,32,0,1,0,48.25,59.56L68.69,80ZM32,48A16,16,0,1,1,48,32,16,16,0,0,1,32,48Z"/></svg></i><input type="text" name="q" placeholder="Search GameSpot" autocomplete="off" class="js-site-search-query" value="" tabindex="1"/></form></div></div><div class="js-masthead-toggle masthead-toggle masthead-toggle-search" data-toggle="search" tabindex="1"><i class="masthead-toggle-close masthead-toggle-search-close"><svg viewbox="0 0 80 80" width="80" height="80" aria-hidden="true" class="symbol symbol-close"><polygon points="80 11.31 68.69 0 40 28.69 11.31 0 0 11.31 28.69 40 0 68.69 11.31 80 40 51.31 68.69 80 80 68.69 51.31 40 80 11.31"/></svg></i></div></div></div></div></div></header> <div class="js-mapped-ad mapped-ad mapped-interstitial mapped-interstitial-dart" data-ad-type="interstitial"><div class="ad-wrap ad-wrap-interstitial"></div></div> <div id="site-wrapper"> <div id="kubrick-lead" class="kubrick kubrick-lead kubrick-lead--gamespace kubrick-lead--has-subnav is-dark" style="background-image: url(https://web.archive.org/web/20200617093814im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/images/core/loose/bg-default.jpg)"> <div class="kubrick-overlay"> <div class="kubrick-curtains"> <div class="kubrick-content container row"> <div class="kubrick-info span12"> <div class="gameObject"> <div class="gameObject__wrapper"> <div class="gameObject__img"> <div class="img imgflare--boxart"><img src="https://web.archive.org/web/20200617093814im_/https://gamespot1.cbsistatic.com/uploads/scale_tiny/box/3/0/3/6/18214-53036.jpg" alt="Battlestar Galactica (2003)"/></div> </div> <div class="gameObject__info"> <h2 class="gameObject__title"> <a href="https://web.archive.org/web/20200617093814/https://www.gamespot.com/battlestar-galactica-2003/" class="no-hover wiki-title">Battlestar Galactica (2003)</a> </h2> <div class="gameObject__description"> <ul class="kubrick-info__releasedate"> <li> First Released <span>Nov 19, 2003</span> <div class="dn"><span id="_qualtrics_release_indicator">released</span></div> </li> </ul> <ul class="system-list"><li class="system system--ps2 "><span itemprop="device">PS2</span></li><li class="system system--xbox "><span itemprop="device">XBOX</span></li></ul> <div class="stacks game-card-loading stacks--flare" data-post-render-param="GameBundle.gameIds[]" data-post-render-value="18214"><div class="js-pop-over-parent"><div class="stacks-signUp js-game-follow js-pop-over-container stacks-popup js-game-follow-unreg" data-popover-game-id="18214" data-popover-container-name="782014139" data-click-open-offset-x="0" data-click-open-offset-y="0"><form class="js-game-card-follow-form" action="/web/20200617093814/https://www.gamespot.com/api/follow/followGame/18214" method="post"><div class="l-item--pull stacks-signUp__image"><div class="media-img media-img--boxart"><img class="js-game-image" alt="%gameName%"></div></div><div class="stacks-signUp__title">%gameName%</div><p class="stacks-signUp__deck">Get the latest news and videos for this game daily, no spam, no fuss.</p><input type="email" name="email" placeholder="Enter Your Email Address..." required class="stacks-signUp__input"/><p class="stacks-signUp__deck">By signing up, you agree to the CBS <a href="https://web.archive.org/web/20200617093814/https://legalterms.cbsinteractive.com/terms-of-use" target="_blank">Terms of Use</a> and acknowledge the data practices in our <a href="https://web.archive.org/web/20200617093814/https://privacy.cbs/" target="_blank">Privacy Policy</a>.</p><input type="submit" value="Sign Up" class="btn btn-success stacks-signUp__submit"/><div class="error"></div></form><div class="hidden js-game-card-follow-others stacks-signUp__success"><strong class="stacks-signUp__title">You're Good to Go!</strong><p class="stacks-signUp__deck">We'll begin emailing you updates about %gameName%.</p></div></div><div class="stacks-action"><span class="stacks-action__container js-pop-over-toggle" data-pop-over="782014139"><span class="stacks-action__symbol"><i><svg version="1.1" width="22" height="28" viewbox="0 0 22 28" aria-hidden="true" class="symbol symbol-plus"><path d="M22 11.5v3q0 0.625-0.438 1.062t-1.062 0.438h-6.5v6.5q0 0.625-0.438 1.062t-1.062 0.438h-3q-0.625 0-1.062-0.438t-0.438-1.062v-6.5h-6.5q-0.625 0-1.062-0.438t-0.438-1.062v-3q0-0.625 0.438-1.062t1.062-0.438h6.5v-6.5q0-0.625 0.438-1.062t1.062-0.438h3q0.625 0 1.062 0.438t0.438 1.062v6.5h6.5q0.625 0 1.062 0.438t0.438 1.062z"/></svg></i></span><span>Follow</span></span></div></div></div> </div> </div> </div> </div> <div class="reviewObject"> <div class="reviewObject__wrapper"> <dl class="reviewObject__gs"> <dt class="reviewObject__score"> <a href="https://web.archive.org/web/20200617093814/https://www.gamespot.com/reviews/battlestar-galactica-review/1900-6084925/"> <img src="https://web.archive.org/web/20200617093814im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/images/core/loose/logo-gs-mono.png" alt="Gamespot Score"/> <div class="gs-score gs-score--medium score-7"><div class="gs-score__clip"><div class="gs-score__pie gs-score__spinner"></div></div><div class="gs-score__clip gs-score__clip2"><div class="gs-score__pie gs-score__filler"></div></div><div class="gs-score__inner"><div class="gs-score__table"><div class="gs-score__cell"><span aria-label="Review score 7.1" tabindex="0">7.1</span></div></div></div></div> </a> </dt> <dd class="reviewObject__meta"> <a href="/web/20200617093814/https://www.gamespot.com/reviews/battlestar-galactica-review/1900-6084925/"> <span class="reviewObject__scoreWord">Good</span> <span class="reviewObject__read">Check out the review</span> </a> </dd> </dl> <dl class="reviewObject__metacritic"> <dt>Metacritic</dt> <dd>--</dd> </dl> <dl class="reviewObject__userAvg"> <dt>User Avg</dt> <dd> <a href="/web/20200617093814/https://www.gamespot.com/games/battlestar-galactica-2003/reviews/"> 7 </a> </dd> </dl> </div> </div> </div> </div> </div> <div class="kubrick-curtains kubrick-curtains--bottom"></div> </div> </div> <nav class="subnav subnav-mobile subnav--flex "> <div class="container row"> <div class="span12"> <span class="subnav-toggle js-dropnav-toggle"> <a> <i><svg version="1.1" width="28" height="28" viewbox="0 0 28 28" aria-hidden="true" class="symbol symbol-reorder"><path d="M24 21v2q0 0.406-0.297 0.703t-0.703 0.297h-22q-0.406 0-0.703-0.297t-0.297-0.703v-2q0-0.406 0.297-0.703t0.703-0.297h22q0.406 0 0.703 0.297t0.297 0.703zM24 13v2q0 0.406-0.297 0.703t-0.703 0.297h-22q-0.406 0-0.703-0.297t-0.297-0.703v-2q0-0.406 0.297-0.703t0.703-0.297h22q0.406 0 0.703 0.297t0.297 0.703zM24 5v2q0 0.406-0.297 0.703t-0.703 0.297h-22q-0.406 0-0.703-0.297t-0.297-0.703v-2q0-0.406 0.297-0.703t0.703-0.297h22q0.406 0 0.703 0.297t0.297 0.703z"/></svg></i> Game Info </a> </span> <ul class="subnav-list subnav-list-count-7"> <li class="subnav-list__item subnav-list__item-primary "> <a href="/web/20200617093814/https://www.gamespot.com/games/battlestar-galactica-2003/"> <img src="https://web.archive.org/web/20200617093814im_/https://gamespot1.cbsistatic.com/uploads/square_mini/box/3/0/3/6/18214-53036.jpg" alt="Battlestar Galactica (2003)" itemprop="image"/> <span>Battlestar Galactica (2003)</span> </a> </li> <li class="subnav-list__item "> <a href="/web/20200617093814/https://www.gamespot.com/games/battlestar-galactica-2003/reviews/">Reviews</a> </li> <li class="subnav-list__item "> <a href="/web/20200617093814/https://www.gamespot.com/games/battlestar-galactica-2003/news/">News &amp; Features</a> </li> <li class="subnav-list__item "> <a href="/web/20200617093814/https://www.gamespot.com/games/battlestar-galactica-2003/images/">Images</a> </li> <li class="subnav-list__item "> <a href="/web/20200617093814/https://www.gamespot.com/games/battlestar-galactica-2003/videos/">Videos</a> </li> <li class="subnav-list__item active"><a href="/web/20200617093814/https://www.gamespot.com/games/battlestar-galactica-2003/cheats/">Cheats &amp; Guides </a></li> <li class="subnav-list__item "><a href="/web/20200617093814/https://www.gamespot.com/games/battlestar-galactica-2003/forums/">Forum </a></li> </ul> </div> </div> </nav> <div id="mantle_skin" class="mantle_skin"> <div class="js-mapped-ad mapped-ad mapped-leader_top mapped-leader_top-dart" data-ad-type="leader_top"><div class="ad-wrap ad-wrap-leader_top"></div></div> <div id="wrapper"> <div id="site" role="main"> <div id="default-content" class=" container row"> <dl class="pod-header"> <dt class="pod-header__item"> <div class="pod-title"> <h1>Cheats &amp; Guides</h1> <span class="pod-div" role="presentation" aria-hidden="true"></span> </div> </dt> </dl> <div class="primary-content span8 medium-span8"> <section class="cheats cheats--gamespace"> <ul class="tabs tabs--big"> <li class="tabs__item active"> <a href="#cheatsbattlestar-galactica-2003ps2" data-toggle="tab" rel="nofollow">PS2</a> </li> <li class="tabs__item "> <a href="#cheatsbattlestar-galactica-2003xbox" data-toggle="tab" rel="nofollow">XBOX</a> </li> </ul> <div class="tab-content typography-format"> <div id="cheatsbattlestar-galactica-2003ps2" class="tab-pane active"> <h2>Battlestar Galactica (2003) Cheats For PlayStation 2</h2> <ol class="cheats-list"> <li class="cheats-list__item"> <h4 class="cheats__title">All Wingmen Cheat</h4> <p class="cheats__deck">Beat the game once to unlock the All Wingmen cheat.</p> <table class="table table--cheats"> <colgroup> <col class="cheats__code"/> <col class="cheats__effect"/> </colgroup> <thead> <tr> <th scope="col" class="cheats__code">Unlockable</th> <th scope="col" class="cheats__effect">Unlockable</th> </tr> </thead> <tbody> <tr> <th scope="row" class="cheats__code">Beat the game once.</th> <td class="cheats__effect">All Wingmen cheat</td> </tr> </tbody> </table> <p class="cheats__contributor"><strong>Contributed by:</strong> HM Master&nbsp; </p> </li> <li class="cheats-list__item"> <h4 class="cheats__title">Play in Expert mode to get these unlockables</h4> <table class="table table--cheats"> <colgroup> <col class="cheats__code"/> <col class="cheats__effect"/> </colgroup> <thead> <tr> <th scope="col" class="cheats__code">Unlockable</th> <th scope="col" class="cheats__effect">Unlockable</th> </tr> </thead> <tbody> <tr> <th scope="row" class="cheats__code">Complete Mission 9</th> <td class="cheats__effect">Invincibility</td> </tr> <tr> <th scope="row" class="cheats__code">Complete Mission 2</th> <td class="cheats__effect">Unlimited Missiles</td> </tr> </tbody> </table> <p class="cheats__contributor"><strong>Contributed by:</strong> War Doc&nbsp; </p> </li> <li class="cheats-list__item"> <h4 class="cheats__title">Picture Codes</h4> <p class="cheats__deck">Enter the following codes on the extras menu:</p> <table class="table table--cheats"> <colgroup> <col class="cheats__code"/> <col class="cheats__effect"/> </colgroup> <thead> <tr> <th scope="col" class="cheats__code">Effect</th> <th scope="col" class="cheats__effect">Effect</th> </tr> </thead> <tbody> <tr> <th scope="row" class="cheats__code">Up, Down, Down, Left, Left, Left, Left, Right, Right, Left, Left, Up, Up, Left, Left, Down, Left, Right</th> <td class="cheats__effect">Master Unlock</td> </tr> <tr> <th scope="row" class="cheats__code">Down, Down, Down, Down, Left, Left, Left, Left</th> <td class="cheats__effect">Mini-series picture</td> </tr> <tr> <th scope="row" class="cheats__code">Up, Up, Up, Down, Down, Down, Left, Right</th> <td class="cheats__effect">Mini-series picture</td> </tr> <tr> <th scope="row" class="cheats__code">Right, Right, Right, Right, Down, Down, Left, Left</th> <td class="cheats__effect">Mini-series picture</td> </tr> <tr> <th scope="row" class="cheats__code">Left, Up, Left, Left, Down, Left, Up, Down</th> <td class="cheats__effect">Mini-series picture</td> </tr> <tr> <th scope="row" class="cheats__code">Up, Up, Down, Down, Right, Up, Right, Down</th> <td class="cheats__effect">Mini-series picture</td> </tr> <tr> <th scope="row" class="cheats__code">Up, Left, Up, Right, Up, Left, Up, Right</th> <td class="cheats__effect">Mini-series picture</td> </tr> <tr> <th scope="row" class="cheats__code">Right, Right, Up, Up, Left, Left, Up, Up</th> <td class="cheats__effect">Mini-series picture</td> </tr> </tbody> </table> <p class="cheats__contributor"><strong>Contributed by:</strong> ShinRa Inc, Starky27&nbsp; </p> </li> <li class="cheats-list__item"> <h4 class="cheats__title">Select Your Wingmen</h4> <p class="cheats__deck">Complete first mission in expert difficulty with an overall A grade (Gold Medal) to unlock the &quot;Select your wingmen&quot; menu in the cheats menu.<br/>It allows you to select how many you want as well as their strenths.</p> <table class="table table--cheats"> <colgroup> <col class="cheats__code"/> <col class="cheats__effect"/> </colgroup> <thead> <tr> <th scope="col" class="cheats__code">Unlockable</th> <th scope="col" class="cheats__effect">Unlockable</th> </tr> </thead> <tbody> <tr> <th scope="row" class="cheats__code">Complete First mission in Expert mode with a A Grade</th> <td class="cheats__effect">Select Wingmen</td> </tr> </tbody> </table> <p class="cheats__contributor"><strong>Contributed by:</strong> Taki_hime&nbsp; </p> </li> <li class="cheats-list__item"> <h4 class="cheats__title">Fly With Starbuck &amp; Apollo As Wingmen</h4> <p class="cheats__deck">In the extras section of the menu, Make sure you start from the top of the list and enter code swiftly aprox. 5 secondes form start of code. If you hear a cylon voice saying ''By Your Command'' the code has been entered correctly</p> <table class="table table--cheats"> <colgroup> <col class="cheats__code"/> <col class="cheats__effect"/> </colgroup> <thead> <tr> <th scope="col" class="cheats__code">Effect</th> <th scope="col" class="cheats__effect">Effect</th> </tr> </thead> <tbody> <tr> <th scope="row" class="cheats__code">Down, Down, Left, Down Down, Up, Right, Right</th> <td class="cheats__effect">Starbock &amp; Apollo are now your wingmen</td> </tr> </tbody> </table> <p class="cheats__contributor"><strong>Contributed by:</strong> DHX&nbsp; </p> </li> </ol> <h3 class="cheats__title">Walkthroughs &amp; FAQs</h3> <table class="table table-bordered table-striped table--faqs"> <colgroup> <col class="faqType"/> <col class="faqName"/> <col class="faqSize"/> </colgroup> <thead> <tr> <th scope="col" class="faqType">Type</th> <th scope="col" class="faqName">Name</th> <th scope="col" class="faqSize">File Size</th> </tr> </thead> <tbody> <tr class="faq"> <th class="faqType" scope="row">General FAQs</td> <td class="faqName"><a href="https://web.archive.org/web/20200617093814/http://www.gamefaqs.com/xbox/914681-battlestar-galactica/faqs/28830">FAQ/Walkthrough by War Doc</a></td> <td class="faqSize">71K</td> </tr> </tbody> </table> </div> <div id="cheatsbattlestar-galactica-2003xbox" class="tab-pane "> <h2>Battlestar Galactica (2003) Cheats For Xbox</h2> <ol class="cheats-list"> <li class="cheats-list__item"> <h4 class="cheats__title">Unlock ''All Wingmen''</h4> <table class="table table--cheats"> <colgroup> <col class="cheats__code"/> <col class="cheats__effect"/> </colgroup> <thead> <tr> <th scope="col" class="cheats__code">Unlockable</th> <th scope="col" class="cheats__effect">Unlockable</th> </tr> </thead> <tbody> <tr> <th scope="row" class="cheats__code">Complete the game under normal difficulty</th> <td class="cheats__effect">All Wingmen Cheat</td> </tr> </tbody> </table> <p class="cheats__contributor"><strong>Contributed by:</strong> SoSo&nbsp; </p> </li> <li class="cheats-list__item"> <h4 class="cheats__title">Cheat Mode</h4> <p class="cheats__deck">Choose &quot;Option&quot; from the main menu, then select &quot;Extras&quot; and press:</p> <table class="table table--cheats"> <colgroup> <col class="cheats__code"/> <col class="cheats__effect"/> </colgroup> <thead> <tr> <th scope="col" class="cheats__code">Effect</th> <th scope="col" class="cheats__effect">Effect</th> </tr> </thead> <tbody> <tr> <th scope="row" class="cheats__code">Up, Down, Down, Left, Left, Left, Left, Right, Right, Left, Left, Up, Up, Left, Left, Down, Left, Right</th> <td class="cheats__effect">Cheat Mode</td> </tr> </tbody> </table> <p class="cheats__contributor"><strong>Contributed by:</strong> shadowcore76&nbsp; </p> </li> <li class="cheats-list__item"> <h4 class="cheats__title">Misc. Unlockables</h4> <p class="cheats__deck">These passwords are entered on the Extras menu using the d-pad or either control stick. </p> <table class="table table--cheats"> <colgroup> <col class="cheats__code"/> <col class="cheats__effect"/> </colgroup> <thead> <tr> <th scope="col" class="cheats__code">Effect</th> <th scope="col" class="cheats__effect">Effect</th> </tr> </thead> <tbody> <tr> <th scope="row" class="cheats__code">U,U,D,D,R,U,R,D</th> <td class="cheats__effect">Unlock a Picture</td> </tr> <tr> <th scope="row" class="cheats__code">L,U,L,L,D,U,L,D</th> <td class="cheats__effect">Unlock a Picture</td> </tr> <tr> <th scope="row" class="cheats__code">D,D,D,D,L,L,L,L</th> <td class="cheats__effect">Unlock one picture</td> </tr> <tr> <th scope="row" class="cheats__code">U,U,U,D,D,D,L,R</th> <td class="cheats__effect">Unlock one picture</td> </tr> <tr> <th scope="row" class="cheats__code">U,L,U,R,U,L,U,R</th> <td class="cheats__effect">Unlock one picture</td> </tr> <tr> <th scope="row" class="cheats__code">R,R,R,R,D,D,L,L</th> <td class="cheats__effect">Unlock one picture</td> </tr> <tr> <th scope="row" class="cheats__code">R,R,U,U,L,L,U,U</th> <td class="cheats__effect">Unlock one picture</td> </tr> <tr> <th scope="row" class="cheats__code">D,D,L,D,D,U,R,R</th> <td class="cheats__effect">Unlock Starbuck and Apollo as Wingmen</td> </tr> </tbody> </table> <p class="cheats__contributor"><strong>Contributed by:</strong> Curlis, MysticWeirdo, Ksathra&nbsp; </p> </li> </ol> <h3 class="cheats__title">Walkthroughs &amp; FAQs</h3> <table class="table table-bordered table-striped table--faqs"> <colgroup> <col class="faqType"/> <col class="faqName"/> <col class="faqSize"/> </colgroup> <thead> <tr> <th scope="col" class="faqType">Type</th> <th scope="col" class="faqName">Name</th> <th scope="col" class="faqSize">File Size</th> </tr> </thead> <tbody> <tr class="faq"> <th class="faqType" scope="row">General FAQs</td> <td class="faqName"><a href="https://web.archive.org/web/20200617093814/http://www.gamefaqs.com/xbox/914681-battlestar-galactica/faqs/28830">FAQ/Walkthrough by War Doc</a></td> <td class="faqSize">71K</td> </tr> </tbody> </table> </div> </div> </section> <div class="js-taboola-module" data-taboola-parameters="{&quot;mode&quot;:&quot;alternating-thumbnails-b&quot;,&quot;container&quot;:&quot;taboola-bottom-page-thumbnails&quot;,&quot;placement&quot;:&quot;games_cheats_list Bottom Page Thumbnails&quot;,&quot;target_type&quot;:&quot;mix&quot;}"></div> </div> <aside class="secondary-content span4 medium-span4"> <div class="buy-offer norewrite" style="background-image: url(https://web.archive.org/web/20200617093814im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/images/core/loose/bg-default.jpg)"> <div class="buy-offer__body"> <h4 class="buy-offer__header">Where to buy</h4> <h3 class="buy-offer__name">Battlestar Galactica (2003)</h3> <dl class="buy-offer__store norewrite"> <dt>Walmart</dt> <dd class="buy-offer__prices"> <div class="affiliate__links"> <div class="affiliate__links-item"> <span class="affiliate__label">new</span> <span class="affiliate__price affiliate__price--new">$1.00</span> </div> </div> </dd> <dd class="buy-offer__buynow"> <a href="https://web.archive.org/web/20200617093814/https://goto.walmart.com/c/159047/568844/9383?veh=aff&amp;sourceid=imp_000011112222333344&amp;prodsku=2221404&amp;u=https%3A%2F%2Fwww.walmart.com%2Fip%2F2221404" target="_blank" class="js-lead-click-event-tracking affiliate__buynow" data-event-tracking="{&quot;lead_type&quot;:&quot;deal&quot;,&quot;merchant&quot;:&quot;Walmart&quot;,&quot;link_location&quot;:&quot;Buy Button&quot;,&quot;lead_dest_url&quot;:&quot;https:\/\/goto.walmart.com\/c\/159047\/568844\/9383?veh=aff&amp;sourceid=imp_000011112222333344&amp;prodsku=2221404&amp;u=https%3A%2F%2Fwww.walmart.com%2Fip%2F2221404&quot;}"> <span class="affiliate__buynowLink">Buy Now!</span> <span class="buy-offer__logo"><i><svg viewbox="0 0 188.41 47.02" width="188.41" height="47.02" aria-hidden="true" class="symbol symbol-logo-walmart"><path d="M.94,10.27s4.64,19,5.38,22.09c.86,3.6,2.42,4.93,6.91,4l2.9-11.78c.73-2.93,1.23-5,1.7-8h.08a78.08,78.08,0,0,0,1.41,8S20.49,30,21.1,32.78s2.29,4.58,6.69,3.62l6.9-26.12H29.11L26.76,21.57c-.63,3.29-1.21,5.86-1.65,8.86H25c-.4-3-.91-5.44-1.56-8.65L21,10.27H15.21L12.59,21.49c-.74,3.41-1.44,6.16-1.88,9.07h-.08c-.45-2.74-1.06-6.2-1.71-9.5,0,0-1.56-8-2.11-10.79H.94Zm53.11,0V36.39h5.3V10.27h-5.3Zm74.71,0V29.54c0,2.66.5,4.52,1.57,5.66a5.88,5.88,0,0,0,4.32,1.64,12.61,12.61,0,0,0,3.84-.57l-.07-4.15a8.06,8.06,0,0,1-2,.24c-1.81,0-2.41-1.16-2.41-3.54V21.45h4.62v-5H134V10.27h-5.23ZM42.2,16.33a15.2,15.2,0,0,0-7.34,1.75l1,3.57a10.75,10.75,0,0,1,5.35-1.5c3.26,0,3.79,1.84,3.79,3v.28c-7.1,0-11.59,2.45-11.59,7.45a5.91,5.91,0,0,0,6.25,5.92,7.12,7.12,0,0,0,5.71-2.54h.12s.81,3.39,5.28,2.09a28.68,28.68,0,0,1-.31-4.73v-7c0-4.45-1.9-8.36-8.32-8.36Zm31.73,0a6.17,6.17,0,0,0-5.72,3.11h-.08V16.77H63.08V36.4h5.33V24.89a4.61,4.61,0,0,1,.25-1.61,3.61,3.61,0,0,1,3.24-2.51c2.15,0,3.16,1.82,3.16,4.44V36.39h5.33V24.75a5.46,5.46,0,0,1,.22-1.59,3.36,3.36,0,0,1,3.2-2.39C86,20.77,87,22.55,87,25.64V36.39h5.33V24.84c0-6.1-3.1-8.51-6.59-8.51a7.1,7.1,0,0,0-3.87,1.07,8.26,8.26,0,0,0-2.49,2.44h-.08a5.6,5.6,0,0,0-5.41-3.51Zm29.28,0a15.21,15.21,0,0,0-7.34,1.75l1,3.57a10.75,10.75,0,0,1,5.35-1.5c3.26,0,3.79,1.84,3.79,3v.28c-7.1,0-11.59,2.45-11.59,7.45a5.91,5.91,0,0,0,6.26,5.92,7.11,7.11,0,0,0,5.71-2.54h.12s.81,3.39,5.28,2.09a28.64,28.64,0,0,1-.31-4.73v-7c0-4.45-1.9-8.36-8.32-8.36Zm22.15,0A5.78,5.78,0,0,0,120,20.47h-.15v-3.7h-4.8V36.39h5.47v-10a7.46,7.46,0,0,1,.12-1.45A4.13,4.13,0,0,1,125,21.45a10,10,0,0,1,1.58.14V16.45a5.27,5.27,0,0,0-1.21-.12ZM45.22,26.94v2.45A3.47,3.47,0,0,1,41.51,33a2.42,2.42,0,0,1-2.63-2.6c0-2.7,3-3.44,6.35-3.42Zm61,0v2.45A3.47,3.47,0,0,1,102.53,33a2.42,2.42,0,0,1-2.63-2.6c0-2.7,3-3.44,6.35-3.42Z" style="fill:#007dc6"/><path d="M167.3.82c-1.71,0-3.07,1-3.07,2.12l1,11.78a2.28,2.28,0,0,0,4.07,0l1-11.78c0-1.16-1.36-2.12-3.08-2.12Zm-16.95,9.45a3.3,3.3,0,0,0-2.54,1.81c-.86,1.48-.71,3.14.3,3.72l10.72,5a1.93,1.93,0,0,0,2.11-1.13h0a1.92,1.92,0,0,0-.07-2.39l-9.68-6.79a1.56,1.56,0,0,0-.83-.2Zm33.9,0a1.56,1.56,0,0,0-.83.2l-9.68,6.79a1.93,1.93,0,0,0-.07,2.39h0a1.93,1.93,0,0,0,2.1,1.13l10.72-5c1-.58,1.15-2.24.3-3.72a3.31,3.31,0,0,0-2.55-1.81Zm-25,15.54a1.09,1.09,0,0,0-.4.07l-10.72,5c-1,.58-1.16,2.24-.3,3.73s2.37,2.18,3.37,1.6l9.68-6.78a1.93,1.93,0,0,0,.07-2.4h0a2.2,2.2,0,0,0-1.71-1.2Zm16.15,0a2.2,2.2,0,0,0-1.71,1.2h0a1.94,1.94,0,0,0,.07,2.4l9.68,6.78c1,.58,2.51-.12,3.38-1.6s.71-3.14-.3-3.73l-10.72-5a1.08,1.08,0,0,0-.4-.07Zm-8.08,4.88a1.92,1.92,0,0,0-2,1.25l-1,11.78c0,1.17,1.36,2.12,3.07,2.12s3.08-1,3.08-2.12l-1-11.78a1.93,1.93,0,0,0-2-1.25h0Z" style="fill:#ffc220"/></svg></i></span> </a> </dd> </dl> <p class="affiliate__note">GameSpot may get a commission from retail offers.</p> </div> </div> <div class="js-mapped-ad mapped-ad mapped-mpu_top mapped-mpu_top-dart" data-ad-type="mpu_top"><div class="ad-wrap ad-wrap-mpu_top"></div></div> <div class="game-module pod"><div class="game-module__image overflow--hidden"><img src="https://web.archive.org/web/20200617093814im_/https://gamespot1.cbsistatic.com/uploads/screen_medium/box/3/0/3/6/18214-53036.jpg"/></div><div class="game-module__content"><a href="/web/20200617093814/https://www.gamespot.com/games/battlestar-galactica-2003/"><h4 class="game-module__name">Battlestar Galactica (2003)</h4></a><div class="game-module__release-date text-bold"> First Released <span>Nov 19, 2003</span><div class="dn"><span id="_qualtrics_release_indicator">released</span></div></div><ul class="game-module__platform"><li class="inline-block">PlayStation 2</li><li class="inline-block">Xbox</li></ul><p class="game-module__description">Battlestar Galactica puts forth a far more enjoyable effort than your average licensed game, but unfortunately, there are still many problems to be found within.</p></div><div class="game-module__stats"><div class="game-module__developers"><p class="text-bold">Developed by:</p><ul><li class="inline-block"><a href="/web/20200617093814/https://www.gamespot.com/companies/warthog/">Warthog</a></li></ul></div><div class="game-module__publishers"><p class="text-bold">Published by:</p><ul><li class="inline-block"><a href="/web/20200617093814/https://www.gamespot.com/companies/universal-interactive/">Universal Interactive</a></li></ul></div><div class="game-module__genres"><p class="text-bold">Genre(s):</p><ul><li class="inline-block"><a href="/web/20200617093814/https://www.gamespot.com/genre/simulation/">Simulation</a></li></ul></div></div><div class="pod-objectStats__esrb"><img src="https://web.archive.org/web/20200617093814im_/https://gamespot1.cbsistatic.com/bundles/phoenixsite/images/core//loose/esrb-t.png" alt="Content is generally suitable for ages 13 and up. May contain violence, suggestive themes, crude humor, minimal blood, simulated gambling and/or infrequent use of strong language." title="Content is generally suitable for ages 13 and up. May contain violence, suggestive themes, crude humor, minimal blood, simulated gambling and/or infrequent use of strong language."/><dl><dt>Teen</dt><dd> Mild Violence </dd></dl></div></div> <section class="pod pod-related-games"><dl class="pod-header "><dt class="pod-header__item"><div class="pod-title"><h4>Games You May Like</h4><span class="pod-div" role="presentation" aria-hidden="true"></span></div></dt></dl><ul><li class="media"><a class="js-event-tracking" data-event-tracking="Tracking|games_cheats_list|GamesYouMayLike|1" href="/web/20200617093814/https://www.gamespot.com/games/animal-crossing-new-horizons/"><div class="align-vertical--contain"><figure class="media-figure align-vertical--child"><div class="media-img imgflare--boxart"><img alt="Animal Crossing: New Horizons box art" src="https://web.archive.org/web/20200617093814im_/https://gamespot1.cbsistatic.com/uploads/square_avatar/1593/15930215/3549399-cq5dam.thumbnail.319.319.png"/></div></figure><div class="media-body align-vertical--child"><h4 class="media-title">Animal Crossing: New Horizons</h4><time class="media-date"> First Released <span>Mar 20, 2020</span><div class="dn"><span id="_qualtrics_release_indicator">released</span></div></time></div></div></a></li><li class="media"><a class="js-event-tracking" data-event-tracking="Tracking|games_cheats_list|GamesYouMayLike|2" href="/web/20200617093814/https://www.gamespot.com/games/madden-nfl-21/"><div class="align-vertical--contain"><div class="media-body align-vertical--child"><h4 class="media-title">Madden NFL 21</h4><time class="media-date"> Coming <span>Aug 28, 2020</span><div class="dn"><span id="_qualtrics_release_indicator">unreleased</span></div></time></div></div></a></li><li class="media"><a class="js-event-tracking" data-event-tracking="Tracking|games_cheats_list|GamesYouMayLike|3" href="/web/20200617093814/https://www.gamespot.com/games/mlb-the-show-20/"><div class="align-vertical--contain"><div class="media-body align-vertical--child"><h4 class="media-title">MLB The Show 20</h4><time class="media-date"> First Released <span>Mar 13, 2020</span><div class="dn"><span id="_qualtrics_release_indicator">released</span></div></time></div></div></a></li><li class="media"><a class="js-event-tracking" data-event-tracking="Tracking|games_cheats_list|GamesYouMayLike|4" href="/web/20200617093814/https://www.gamespot.com/games/pga-tour-2k21/"><div class="align-vertical--contain"><figure class="media-figure align-vertical--child"><div class="media-img imgflare--boxart"><img alt="PGA Tour 2K21 box art" src="https://web.archive.org/web/20200617093814im_/https://gamespot1.cbsistatic.com/uploads/square_avatar/box/2/3/9/3/511842-752393.jpg"/></div></figure><div class="media-body align-vertical--child"><h4 class="media-title">PGA Tour 2K21</h4><time class="media-date"> Coming <span>Aug 21, 2020</span><div class="dn"><span id="_qualtrics_release_indicator">unreleased</span></div></time></div></div></a></li><li class="media"><a class="js-event-tracking" data-event-tracking="Tracking|games_cheats_list|GamesYouMayLike|5" href="/web/20200617093814/https://www.gamespot.com/games/star-wars-squadrons/"><div class="align-vertical--contain"><div class="media-body align-vertical--child"><h4 class="media-title">Star Wars: Squadrons</h4><time class="media-date"> Coming <span>Oct 2, 2020</span><div class="dn"><span id="_qualtrics_release_indicator">unreleased</span></div></time></div></div></a></li></ul></section> </aside> </div> </div> </div> </div> <div class="js-mapped-ad mapped-ad mapped-leader_bottom mapped-leader_bottom-dart" data-ad-type="leader_bottom"><div class="ad-wrap ad-wrap-leader_bottom"></div></div> </div> <footer id="footer" class="mastfooter" role="complementary"><div class="container row"><section class="footer-network"><div class="footer-network-copyright">漏 2020 CBS Interactive Inc. All rights reserved.</div><div class="footer-network-about"><div class="footer-network-row"><a href="https://web.archive.org/web/20200617093814/https://privacy.cbs/" target="_blank">Privacy Policy</a><a href="https://web.archive.org/web/20200617093814/https://legalterms.cbsinteractive.com/adchoice" target="_blank">Ad Choice</a><a href="https://web.archive.org/web/20200617093814/https://legalterms.cbsinteractive.com/terms-of-use" target="_blank">Terms of Use</a><a href="https://web.archive.org/web/20200617093814/https://cbsi.secure.force.com/CBSi/knowledgehome?referer=gamespot.com" target="_blank">Help</a><a href="https://web.archive.org/web/20200617093814/https://cbsinteractive.com/advertising/" target="_blank">Advertise</a><a href="https://web.archive.org/web/20200617093814/mailto:cbsi-partnerships@cbsinteractive.com" target="_blank">Partnerships</a><a href="https://web.archive.org/web/20200617093814/https://cbs.avature.net/cbsinteractivecareers/SearchJobs/?3_56_3=%22260%22" target="_blank">Careers</a><span id="qualtrics-feedback"></span></div><div class="footer-network-row"><a href="https://web.archive.org/web/20200617093814/https://ca.privacy.cbs/">CA Privacy/Info We Collect</a><a href="https://web.archive.org/web/20200617093814/https://ca.privacy.cbs/donotsell">CA Do Not Sell My Info</a></div></div></section><section class="footer-links hide-mobile"><ul><li><span class="footer-links__header">More Sites</span></li><li><a href="https://web.archive.org/web/20200617093814/https://www.giantbomb.com/"><i class="footer-social__item footer_logo_gb"></i>giantbomb.com</a></li><li><a href="https://web.archive.org/web/20200617093814/https://gamefaqs.gamespot.com/"><i class="footer-social__item footer_logo_gf"></i>gamefaqs.com</a></li><li><a href="https://web.archive.org/web/20200617093814/https://www.metacritic.com/"><i class="footer-social__item footer_logo_mc"></i>metacritic.com</a></li></ul><ul><li><span class="footer-links__header">Reviews</span></li><li><a href="https://web.archive.org/web/20200617093814/https://www.gamespot.com/reviews/">Latest Reviews</a></li><li><a href="/web/20200617093814/https://www.gamespot.com/reviews/pc">PC</a></li><li><a href="/web/20200617093814/https://www.gamespot.com/reviews/ps4">PS4</a></li><li><a href="/web/20200617093814/https://www.gamespot.com/reviews/xbox-one">Xbox One</a></li><li><a href="/web/20200617093814/https://www.gamespot.com/reviews/nintendo-switch">Switch</a></li></ul><ul><li><span class="footer-links__header">News</span></li><li><a href="https://web.archive.org/web/20200617093814/https://www.gamespot.com/news/">Latest News</a></li><li><a href="/web/20200617093814/https://www.gamespot.com/news/pc">PC</a></li><li><a href="/web/20200617093814/https://www.gamespot.com/news/ps4">PS4</a></li><li><a href="/web/20200617093814/https://www.gamespot.com/news/xbox-one">Xbox One</a></li><li><a href="/web/20200617093814/https://www.gamespot.com/news/nintendo-switch">Switch</a></li></ul><ul><li><span class="footer-links__header">Shows</span></li><li><a href="https://web.archive.org/web/20200617093814/https://www.gamespot.com/shows/true-fiction/">True Fiction</a></li><li><a href="https://web.archive.org/web/20200617093814/https://www.gamespot.com/shows/gamespot-community-fridays/">GameSpot Community Fridays</a></li><li><a href="https://web.archive.org/web/20200617093814/https://www.gamespot.com/shows/audio-logs/">Audio Logs</a></li><li><a href="https://web.archive.org/web/20200617093814/https://www.gamespot.com/shows/gamespot-of-thrones/">GameSpot of Thrones</a></li><li><a href="https://web.archive.org/web/20200617093814/https://www.gamespot.com/shows/gamespot-live/">GameSpot Live</a></li></ul><ul><li><span class="footer-links__header">Talk to Us</span></li><li><a href="https://web.archive.org/web/20200617093814/https://www.gamespot.com/forums/">Forums</a></li><li class="footer--social-icons"><strong>GameSpot</strong><a href="https://web.archive.org/web/20200617093814/http://facebook.com/gamespot" target="_blank" rel="nofollow"><i><svg version="1.1" width="28" height="28" viewbox="0 0 28 28" aria-hidden="true" class="symbol symbol-facebook-sign"><path d="M24 21.5q0 1.859-1.32 3.18t-3.18 1.32h-3v-9.5h3.172l0.469-3.5h-3.641v-2.234q0-0.844 0.438-1.297t1.5-0.453l2.063-0.016v-3.234q-1.5-0.141-2.812-0.141-2.125 0-3.406 1.258t-1.281 3.523v2.594h-3.5v3.5h3.5v9.5h-8.5q-1.859 0-3.18-1.32t-1.32-3.18v-15q0-1.859 1.32-3.18t3.18-1.32h15q1.859 0 3.18 1.32t1.32 3.18v15z"/></svg></i></a><a href="https://web.archive.org/web/20200617093814/http://twitter.com/gamespot" target="_blank" rel="nofollow"><i><svg version="1.1" width="26" height="28" viewbox="0 0 26 28" aria-hidden="true" class="symbol symbol-twitter"><path d="M25.312 6.375q-1.047 1.531-2.531 2.609 0.016 0.219 0.016 0.656 0 2.031-0.594 4.055t-1.805 3.883-2.883 3.289-4.031 2.281-5.047 0.852q-4.234 0-7.75-2.266 0.547 0.063 1.219 0.063 3.516 0 6.266-2.156-1.641-0.031-2.938-1.008t-1.781-2.492q0.516 0.078 0.953 0.078 0.672 0 1.328-0.172-1.75-0.359-2.898-1.742t-1.148-3.211v-0.063q1.062 0.594 2.281 0.641-1.031-0.688-1.641-1.797t-0.609-2.406q0-1.375 0.688-2.547 1.891 2.328 4.602 3.727t5.805 1.555q-0.125-0.594-0.125-1.156 0-2.094 1.477-3.57t3.57-1.477q2.188 0 3.687 1.594 1.703-0.328 3.203-1.219-0.578 1.797-2.219 2.781 1.453-0.156 2.906-0.781z"/></svg></i></a><a href="https://web.archive.org/web/20200617093814/http://youtube.com/gamespot" target="_blank" rel="nofollow"><i><svg version="1.1" width="28" height="28" viewbox="0 0 28 28" aria-hidden="true" class="symbol symbol-youtube-play"><path d="M20 14q0-0.578-0.469-0.844l-8-5q-0.484-0.313-1.016-0.031-0.516 0.281-0.516 0.875v10q0 0.594 0.516 0.875 0.25 0.125 0.484 0.125 0.313 0 0.531-0.156l8-5q0.469-0.266 0.469-0.844zM28 14q0 1.5-0.016 2.344t-0.133 2.133-0.352 2.305q-0.25 1.141-1.078 1.922t-1.937 0.906q-3.469 0.391-10.484 0.391t-10.484-0.391q-1.109-0.125-1.945-0.906t-1.086-1.922q-0.219-1.016-0.336-2.305t-0.133-2.133-0.016-2.344 0.016-2.344 0.133-2.133 0.352-2.305q0.25-1.141 1.078-1.922t1.937-0.906q3.469-0.391 10.484-0.391t10.484 0.391q1.109 0.125 1.945 0.906t1.086 1.922q0.219 1.016 0.336 2.305t0.133 2.133 0.016 2.344z"/></svg></i></a><a class="footer--social-instagram" href="https://web.archive.org/web/20200617093814/http://instagram.com/gamespot" target="_blank" rel="nofollow"><i><svg version="1.1" x="0px" y="0px" viewbox="-705 887 28 28" enable-background="new -705 887 28 28" xml:space="preserve" width="28" height="28" aria-hidden="true" class="symbol symbol-instagram"><path fill-rule="evenodd" clip-rule="evenodd" d="M-683.8,899.1h-2.1c0.2,0.6,0.2,1.2,0.2,1.8c0,4.1-3.3,7.4-7.4,7.4 c-4.1,0-7.4-3.3-7.4-7.4c0-0.6,0.1-1.3,0.2-1.8h-2.1v10.1c0,0.5,0.4,0.9,0.9,0.9h16.6c0.5,0,0.9-0.4,0.9-0.9V899.1z M-683.8,892.7 c0-0.5-0.4-0.9-0.9-0.9h-2.8c-0.5,0-0.9,0.4-0.9,0.9v2.8c0,0.5,0.4,0.9,0.9,0.9h2.8c0.5,0,0.9-0.4,0.9-0.9V892.7z M-693,896.4 c-2.5,0-4.6,2.1-4.6,4.6c0,2.5,2.1,4.6,4.6,4.6s4.6-2.1,4.6-4.6C-688.4,898.4-690.5,896.4-693,896.4 M-683.8,913h-18.5 c-1.5,0-2.8-1.2-2.8-2.8v-18.4c0-1.5,1.2-2.8,2.8-2.8h18.5c1.5,0,2.8,1.2,2.8,2.8v18.4C-681,911.7-682.3,913-683.8,913"/></svg></i></a><a href="https://web.archive.org/web/20200617093814/https://flipboard.com/@gamespot?utm_source=gamespot&amp;utm_medium=follow&amp;utm_campaign=tools" target="_blank" rel="nofollow"><i><svg version="1.1" x="0px" y="0px" viewbox="0 0 32 32" width="32" height="32" aria-hidden="true" class="symbol symbol-flipboard"><polygon points="10.7,0 0,0 0,10.6 0,21.2 0,32 10.7,32 10.7,21.3 10.7,10.7 "/><polygon opacity="0.8" points="21.4,0 10.8,0 10.7,0 10.7,10.7 21.3,10.7 21.4,10.7 32,10.7 32,0 "/><rect x="10.7" y="10.7" opacity="0.6" width="10.7" height="10.7"/></svg></i></a><a href="/web/20200617093814/https://www.gamespot.com/feeds" title="RSS Feeds"><i><svg version="1.1" width="22" height="28" viewbox="0 0 22 28" aria-hidden="true" class="symbol symbol-rss"><path d="M6 21q0 1.25-0.875 2.125t-2.125 0.875-2.125-0.875-0.875-2.125 0.875-2.125 2.125-0.875 2.125 0.875 0.875 2.125zM14 22.922q0.031 0.438-0.266 0.75-0.281 0.328-0.734 0.328h-2.109q-0.391 0-0.672-0.258t-0.313-0.648q-0.344-3.578-2.883-6.117t-6.117-2.883q-0.391-0.031-0.648-0.313t-0.258-0.672v-2.109q0-0.453 0.328-0.734 0.266-0.266 0.672-0.266h0.078q2.5 0.203 4.781 1.258t4.047 2.836q1.781 1.766 2.836 4.047t1.258 4.781zM22 22.953q0.031 0.422-0.281 0.734-0.281 0.313-0.719 0.313h-2.234q-0.406 0-0.695-0.273t-0.305-0.664q-0.187-3.359-1.578-6.383t-3.617-5.25-5.25-3.617-6.383-1.594q-0.391-0.016-0.664-0.305t-0.273-0.68v-2.234q0-0.438 0.313-0.719 0.281-0.281 0.688-0.281h0.047q4.094 0.203 7.836 1.875t6.648 4.594q2.922 2.906 4.594 6.648t1.875 7.836z"/></svg></i></a><a href="https://web.archive.org/web/20200617093814/https://newsletter.gamespot.com/public/preference_center.jsp" target="_blank" rel="nofollow"><i><svg version="1.1" width="28" height="28" viewbox="0 0 28 28" aria-hidden="true" class="symbol symbol-envelope"><path d="M28 11.094v12.406q0 1.031-0.734 1.766t-1.766 0.734h-23q-1.031 0-1.766-0.734t-0.734-1.766v-12.406q0.688 0.766 1.578 1.359 5.656 3.844 7.766 5.391 0.891 0.656 1.445 1.023t1.477 0.75 1.719 0.383h0.031q0.797 0 1.719-0.383t1.477-0.75 1.445-1.023q2.656-1.922 7.781-5.391 0.891-0.609 1.563-1.359zM28 6.5q0 1.234-0.766 2.359t-1.906 1.922q-5.875 4.078-7.313 5.078-0.156 0.109-0.664 0.477t-0.844 0.594-0.812 0.508-0.898 0.422-0.781 0.141h-0.031q-0.359 0-0.781-0.141t-0.898-0.422-0.812-0.508-0.844-0.594-0.664-0.477q-1.422-1-4.094-2.852t-3.203-2.227q-0.969-0.656-1.828-1.805t-0.859-2.133q0-1.219 0.648-2.031t1.852-0.812h23q1.016 0 1.758 0.734t0.742 1.766z"/></svg></i></a></li><li class="footer--social-icons"><strong>GameSpot Entertainment</strong><a href="https://web.archive.org/web/20200617093814/http://facebook.com/GameSpotUniverse" target="_blank" rel="nofollow"><i><svg version="1.1" width="28" height="28" viewbox="0 0 28 28" aria-hidden="true" class="symbol symbol-facebook-sign"><path d="M24 21.5q0 1.859-1.32 3.18t-3.18 1.32h-3v-9.5h3.172l0.469-3.5h-3.641v-2.234q0-0.844 0.438-1.297t1.5-0.453l2.063-0.016v-3.234q-1.5-0.141-2.812-0.141-2.125 0-3.406 1.258t-1.281 3.523v2.594h-3.5v3.5h3.5v9.5h-8.5q-1.859 0-3.18-1.32t-1.32-3.18v-15q0-1.859 1.32-3.18t3.18-1.32h15q1.859 0 3.18 1.32t1.32 3.18v15z"/></svg></i></a><a href="https://web.archive.org/web/20200617093814/http://twitter.com/gsuniverse" target="_blank" rel="nofollow"><i><svg version="1.1" width="26" height="28" viewbox="0 0 26 28" aria-hidden="true" class="symbol symbol-twitter"><path d="M25.312 6.375q-1.047 1.531-2.531 2.609 0.016 0.219 0.016 0.656 0 2.031-0.594 4.055t-1.805 3.883-2.883 3.289-4.031 2.281-5.047 0.852q-4.234 0-7.75-2.266 0.547 0.063 1.219 0.063 3.516 0 6.266-2.156-1.641-0.031-2.938-1.008t-1.781-2.492q0.516 0.078 0.953 0.078 0.672 0 1.328-0.172-1.75-0.359-2.898-1.742t-1.148-3.211v-0.063q1.062 0.594 2.281 0.641-1.031-0.688-1.641-1.797t-0.609-2.406q0-1.375 0.688-2.547 1.891 2.328 4.602 3.727t5.805 1.555q-0.125-0.594-0.125-1.156 0-2.094 1.477-3.57t3.57-1.477q2.188 0 3.687 1.594 1.703-0.328 3.203-1.219-0.578 1.797-2.219 2.781 1.453-0.156 2.906-0.781z"/></svg></i></a><a href="https://web.archive.org/web/20200617093814/http://youtube.com/GameSpotUniverse" target="_blank" rel="nofollow"><i><svg version="1.1" width="28" height="28" viewbox="0 0 28 28" aria-hidden="true" class="symbol symbol-youtube-play"><path d="M20 14q0-0.578-0.469-0.844l-8-5q-0.484-0.313-1.016-0.031-0.516 0.281-0.516 0.875v10q0 0.594 0.516 0.875 0.25 0.125 0.484 0.125 0.313 0 0.531-0.156l8-5q0.469-0.266 0.469-0.844zM28 14q0 1.5-0.016 2.344t-0.133 2.133-0.352 2.305q-0.25 1.141-1.078 1.922t-1.937 0.906q-3.469 0.391-10.484 0.391t-10.484-0.391q-1.109-0.125-1.945-0.906t-1.086-1.922q-0.219-1.016-0.336-2.305t-0.133-2.133-0.016-2.344 0.016-2.344 0.133-2.133 0.352-2.305q0.25-1.141 1.078-1.922t1.937-0.906q3.469-0.391 10.484-0.391t10.484 0.391q1.109 0.125 1.945 0.906t1.086 1.922q0.219 1.016 0.336 2.305t0.133 2.133 0.016 2.344z"/></svg></i></a></li></ul></section><section class="footer-site"><a href="https://web.archive.org/web/20200617093814/https://www.gamespot.com/" class="footer-logo"><i><svg viewbox="0 0 1631.76 517.06" width="1631.76" height="517.06" aria-hidden="true" class="symbol symbol-logo-outline-full"><path d="M1510,137.41a119.48,119.48,0,0,0-75.43,27l60.12-88.74L1383.6,151.05,1411,19.51l-73.82,112.37L1311.82,0l-25.16,131.87-73.71-112,27.2,131.23-110.9-75,60,88.07a119.78,119.78,0,0,0-75.55-26.71c-41.34,0-77.15,20.59-99.43,51.75-22-31.16-58-51.75-99.3-51.75a121.52,121.52,0,0,0-99.24,51.75,121.49,121.49,0,0,0-99.21-51.75c-40.94,0-77.15,20.59-99.33,51.75a120.86,120.86,0,0,0-99-51.75c-41,0-77.23,20.59-99.53,51.75a120.74,120.74,0,0,0-99-51.75c-41,0-77.12,20.59-99.44,51.75a120.69,120.69,0,0,0-99.12-51.75C54.43,137.41,0,191.87,0,258.72S54.43,380,121.12,380a120.32,120.32,0,0,0,99.12-51.62C242.57,359.61,278.73,380,319.69,380a120.37,120.37,0,0,0,99-51.62C441,359.61,477.28,380,518.25,380a120.49,120.49,0,0,0,99-51.62,121.26,121.26,0,0,0,198.54,0,121.26,121.26,0,0,0,198.54,0c22.28,31.26,58.09,51.62,99.43,51.62,28.3,0,54.33-9.83,75.55-25.91l-60,87.21,111.12-75.21-27.22,131.36,73.73-112.09L1312,517.06l25.5-131.72,73.71,111.88-27.42-131.37,111.12,75.34-59.15-86.55A121.82,121.82,0,0,0,1510,380c67.4,0,121.71-54.42,121.71-121.26S1577.44,137.41,1510,137.41Zm.76,225.84c-46,0-78.72-26.79-121-53.28l51.68,77.52-79.84-55.27,24.57,98.27-55.27-86-18.36,98.26-18.49-98.26-55.27,86,24.57-98.27-79.85,55.27,51.14-76.71c-42.47,26.22-76.33,52.46-121.17,52.46a104.7,104.7,0,0,1-99.32-71.68,104.65,104.65,0,0,1-198.64,0,104.65,104.65,0,0,1-198.64,0,104.65,104.65,0,0,1-198.64,0,104.65,104.65,0,0,1-198.64,0,104.73,104.73,0,1,1,0-66.1,104.65,104.65,0,0,1,198.64,0,104.65,104.65,0,0,1,198.64,0,104.65,104.65,0,0,1,198.64,0,104.65,104.65,0,0,1,198.64,0,104.7,104.7,0,0,1,99.32-71.68c46.59,0,78.7,26.25,121.17,52.46l-51.14-76.71,79.85,55.28-24.57-98.27,55.27,86,18.38-98.27L1331,172.55l55.27-86-24.57,98.27,79.84-55.28-50.64,76c42.19-26,78.93-51.72,119.94-51.72a104.73,104.73,0,0,1,0,209.46Z"/><path d="M136.2,280.15a8.92,8.92,0,0,1-2.94,6.85c-1.92,1.72-4.39,2.16-7.18,2.16a24,24,0,0,1-18.81-8.58c-5.25-5.91-7.81-13.08-7.81-21.85s2.67-16.52,8.4-22.61c6.21-6.63,14.41-10,24.91-10a55.78,55.78,0,0,1,15.21,2,63,63,0,0,1,10.67,3.53l3.81-14.57c-9.32-3.41-14.58-5.11-15.65-5.33-6.91-1.74-15.26-2.47-25.82-2.47-16.12,0-29.36,4.71-39.86,14.36C70.9,233,66,244.69,66,258.6c0,13.6,5.25,25.2,15.2,34.84a52.57,52.57,0,0,0,36.92,14.26,73.35,73.35,0,0,0,15.16-1.85c12.42-2.57,20.39-3.85,23.52-3.85a18.05,18.05,0,0,1,10.4,2.77V260.23h-31Z"/><path d="M308.4,212.23l-43.31,92.56H283.8l6.92-15h42.42l6.9,15h34.07l-43.5-92.56Zm-9.81,60.86,13.24-28.58,13.32,28.58Z"/><polygon points="517.91 252.84 489.36 212.22 463.43 212.22 463.43 304.78 480.56 304.78 480.56 253.16 500.7 282.49 517.91 282.49 541.47 248.89 541.47 304.78 572.38 304.78 572.38 212.22 546.73 212.22 517.91 252.84"/><polygon points="677.93 304.78 754.15 304.78 754.15 287.99 709.2 287.99 709.2 263.12 740.28 263.12 740.28 246.19 709.2 246.19 709.2 229.06 754.15 229.06 754.15 212.22 677.93 212.22 677.93 304.78"/><path d="M924.15,245.87c-6.33-2.34-10.84-4.62-13.66-6.65s-3.9-4-3.9-5.65a5,5,0,0,1,2.39-4.4,13.87,13.87,0,0,1,6.92-1.63,57.86,57.86,0,0,1,16,2.27,70.33,70.33,0,0,1,14,6.76L954.25,224A70.11,70.11,0,0,0,936,214.15a66.35,66.35,0,0,0-24.85-4.79q-16.81,0-27.49,8.68c-6.69,5.34-10.17,12-10.17,19.93,0,6.43,2.28,11.89,7,16.89s11.62,9.48,21.33,13c14.46,5.57,21.74,10.1,21.74,13.61A6.14,6.14,0,0,1,920.4,287c-2.36,1.72-5.24,2.16-9.21,2.16-6.11,0-11.68-.76-16.67-2.92a54.94,54.94,0,0,1-14.66-8.9l-9.34,11.38a61.93,61.93,0,0,0,18.58,13.18,59.16,59.16,0,0,0,26.15,5.8c13.07,0,23.57-2.92,31.63-8.9,7.49-5.57,11.13-12,11.13-19.48a25.2,25.2,0,0,0-7-17.78C945.58,255.5,936.79,249.93,924.15,245.87Z"/><path d="M1157.51,221.11c-7.93-6-17.35-8.88-28.29-8.88h-52.83v92.56h31.3V273.94h21.53c10.94,0,20.36-3.13,28.29-9.21,7.72-6,11.48-13.38,11.48-21.84S1165.23,227.13,1157.51,221.11Zm-24.43,31.38a20.71,20.71,0,0,1-13.05,4.11h-12.34V229.06H1120a22.34,22.34,0,0,1,13.05,4.18c3.55,2.78,5.36,6.19,5.36,9.66C1138.43,246.85,1136.62,249.93,1133.07,252.48Z"/><path d="M1349.28,223.58c-9.75-9.53-21.94-14.23-36.65-14.23-14.22,0-26.44,4.71-36.61,14.23-9.87,9.66-14.9,21.35-14.9,35s5,25.2,14.9,34.84a52.15,52.15,0,0,0,36.61,14.26c14.7,0,26.9-4.72,36.65-14.26,10.41-9.64,15.33-21.24,15.33-34.84S1359.45,233.24,1349.28,223.58Zm-23.56,56.78c-3.74,6.13-7.95,8.81-12.87,8.81s-9.4-2.61-13.16-8.58a46.53,46.53,0,0,1,0-43.73c4-6.19,8.24-9.33,13.16-9.33s9.57,3.14,13.09,9c3.74,6.09,5.56,13.37,5.56,22C1331.5,267.07,1329.69,274.48,1325.72,280.36Z"/><polygon points="1464.79 229.06 1495.11 229.06 1495.11 304.78 1525.79 304.78 1525.79 229.06 1555.98 229.06 1555.98 212.22 1464.79 212.22 1464.79 229.06"/></svg></i></a></section></div></footer> </div> <meta name="ssbfo" data-post-render-param="CmsBundle.ssbfo" data-post-render-value="1" content=""/> <script type="text/javascript" src="//web.archive.org/web/20200617093814js_/https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script><script> window.jQuery || document.write('<script src="https://web.archive.org/web/20200617093814/https://gamespot1.cbsistatic.com/v61bf2ade7a3df033759fbb78da92f1ec/js/compiled/jquery.local.js">\x3C/script>') </script> <!-- Last Minute --> <script> /* Added By: Will Description: Chat was sometimes not loading the iframe via onetrust Issue: Remove: Url: chat */ $(function(){ if (!$('#player-iframe').attr('src') && $('#player-iframe').attr('data-src')) { $('#player-iframe').attr('src', $('#player-iframe').attr('data-src')); } setTimeout(function() { $(document).trigger('tracking_initialized'); }, 5000); }); /* Added By: Will Description: Show first 3 gallery images by default no lazy loading Github Issue: GMSCORE-247 Remove: After PR 5004 Url: Image Gallery */ $(function(){ $('.js-image-gallery__image-placeholder:lt(3)').each(function(){ $(this).find('img').show(); $(this).removeClass('image-gallery__image-placeholder').addClass('image-gallery__image-wrapper'); }); }); /* Added By: Will Description: Livestream creation not using generate by default Github Issue: /issues/7274 Url: CMS Livestream */ $(function(){ setTimeout(function(){ $('[name=ingest-point-0]').trigger('change'); }, 100); }); /* Added By: Will Description: Fix srcset when instart is on Url: https://www.gamespot.com/articles/phil-spencer-is-exactly-who-you-think-he-is/1100-6468846/ */ $(function(){ if ($('.body-highend-content').length != -1) { $(document).on('scroll', function(){ $('.body-highend-content img[srcset]').each(function(){ $(this).attr('src', $(this).attr('srcset').split(' ')[0]); $(this).removeAttr('srcset'); }); $('.body-highend-content img[data-srcset]').each(function(){ $(this).attr('src', $(this).attr('data-srcset').split(' ')[0]); $(this).removeAttr('srcset'); }); }); } }); /* Added By: Will Description: Fix datetime now button Github Issue: /issues/6916 Url: Any cms page */ $(function(){ var siteTime = 'America/Los_Angeles'; // Date picker now button $('.datetime-now-button').click( function(event) { event.preventDefault(); var $this = $(this); var datePicker = $this.parent().find('.datepicker-input'); var timePicker = $this.parent().find('.timepicker'); var now = moment.tz(siteTime); var dateStr = now.format('M/D/YYYY'); var timeStr = now.format('HH:mm'); datePicker.val(dateStr); timePicker.val(timeStr); datePicker.datepicker('update'); // Trigger time display update timePicker.trigger('changeTime'); // Let anyone listening know that dates are set now $(document).trigger('phoenix_date_picker_now_done'); }); }); /* Added By: Regina Description: Adds 'mapped-ad-blank' class name to ads that are blank and need to be collapsed Remove: When this goes live https://github.com/cbsi/phoenix/pull/4786 Url: https://www.gamespot.com/articles/steel-circus-everything-you-need-to-know/1100-6468981/ */ $(function() { $(document).on('ad_rendered', function (e, adData) { if (adData.isBlank) { const $adDiv = $('#' + adData.divId); const $adWrap = $adDiv.closest('.js-mapped-ad'); // Collapse blank ad if one of the following is true // - it wasn't blocked // - it was blocked but not hidden if (!adData.isBlocked || !($adDiv.is(':hidden') || $adWrap.is(':hidden'))) { $adWrap.addClass('mapped-ad-blank'); } } }); }); </script> <script> window.utag_data = {}; </script> <script src="https://web.archive.org/web/20200617093814js_/https://gamespot1.cbsistatic.com/v61bf2ade7a3df033759fbb78da92f1ec/js/compiled/header_js.js" type="text/javascript"></script> <script src="https://web.archive.org/web/20200617093814js_/https://gamespot1.cbsistatic.com/v61bf2ade7a3df033759fbb78da92f1ec/js/compiled/all.js" type="text/javascript"></script> <script id="imageInfoBarTemplate" type="text/template"><a href="<%= profileUrl %>" class="avatar img"><img src="<%= avatar %>" /></a><div><a href="<%= profileUrl %>"><%= author %></a> uploaded on <%= dateCreated %>. </div></script> <script id="imageCommentsTemplate" type="text/template"> <li> <a href="<%= user.url %>" class="avatar img"> <img src="<%= user.img %>" /> </a> <div> <a href="<%= user.url %>"><%= user.username %></a> <%= body %> </div> </li> </script> <script id="imageFilmstripTemplate" type="text/template"><li><a href="#imageViewer<%= id %>" data-ref-id="<%= id %>"><img src="https://web.archive.org/web/20200617093814/http://gs.cbsimg.net/b.gif" data-img-src="<%= thumbnail %>" /></a></li></script> <div id="js-filmstrip" class="filmstrip filmstrip-with-ads is-hidden" itemscope tabindex="-1"><meta id="image_view-tracking-dw" class="js-post-render-tracking-consumer image_view-tracking-settings" data-tracking-service="dw" itemprop="image_view-tracking-dw" data-settings="{&quot;pageParams&quot;:{&quot;siteid&quot;:&quot;6&quot;,&quot;ptid&quot;:&quot;6027&quot;,&quot;onid&quot;:null,&quot;ednm&quot;:&quot;{edition}&quot;,&quot;ursuid&quot;:&quot;{ursuid}&quot;,&quot;regSilo&quot;:&quot;2&quot;,&quot;rsid&quot;:&quot;cbsigamespotsite&quot;,&quot;prodtypid&quot;:&quot;8&quot;,&quot;pagetype&quot;:&quot;games_cheats_list&quot;,&quot;assetguid&quot;:&quot;5000-18214&quot;,&quot;assettitle&quot;:&quot;Battlestar Galactica (2003)&quot;,&quot;assettype&quot;:&quot;Game&quot;,&quot;topicbrcrm&quot;:&quot;Games|Cheats &amp; Walkthroughs&quot;},&quot;cleargifSrc&quot;:&quot;https:\/\/dw.cbsi.com\/clear\/c.gif?ptid=6027&amp;ednm=%7Bedition%7D&amp;ursuid=%7Bursuid%7D&amp;regSilo=2&amp;rsid=cbsigamespotsite&amp;prodtypid=8&amp;pagetype=games_cheats_list&amp;assetguid=5000-18214&amp;assettitle=Battlestar+Galactica+%282003%29&amp;assettype=Game&amp;topicbrcrm=Games%7CCheats+%26+Walkthroughs&amp;sid=6&amp;ts=1592386694&quot;}"><meta id="image_view-tracking-ga" class="js-post-render-tracking-consumer image_view-tracking-settings" data-tracking-service="ga" itemprop="image_view-tracking-ga" data-settings="{&quot;custom&quot;:{&quot;PageType&quot;:{&quot;index&quot;:&quot;1&quot;,&quot;name&quot;:&quot;PageType&quot;,&quot;value&quot;:&quot;6027&quot;,&quot;scope&quot;:&quot;3&quot;},&quot;UserType&quot;:{&quot;index&quot;:&quot;2&quot;,&quot;name&quot;:&quot;UserType&quot;,&quot;value&quot;:&quot;{gaUserType}&quot;,&quot;scope&quot;:&quot;1&quot;}},&quot;account&quot;:&quot;UA-22577913-1&quot;}"><meta id="image_view-tracking-om" class="js-post-render-tracking-consumer image_view-tracking-settings" data-tracking-service="om" itemprop="image_view-tracking-om" data-settings="{&quot;brand&quot;:&quot;GameSpot&quot;,&quot;sid&quot;:&quot;gamespot&quot;,&quot;rsids&quot;:&quot;cbsigamespotsite&quot;,&quot;user_status&quot;:&quot;{userStatus}&quot;,&quot;urs_id&quot;:&quot;{ursuid}&quot;,&quot;edition&quot;:&quot;{edition}&quot;,&quot;site_type&quot;:&quot;{siteType}&quot;,&quot;anon_id&quot;:&quot;{xclgfbrowser}&quot;,&quot;url&quot;:&quot;D=g&quot;,&quot;user_agent&quot;:&quot;D=User-Agent&quot;,&quot;page_type_id&quot;:6052,&quot;page_name&quot;:&quot;gs:\/games\/battlestar-galactica-2003\/cheats\/&quot;,&quot;ab_test&quot;:&quot;{abTestLabel}&quot;,&quot;theme&quot;:&quot;{theme}&quot;,&quot;event_hierarchy&quot;:&quot;{eventHierarchy}&quot;,&quot;marketing_cloud_id&quot;:&quot;10D31225525FF5790A490D4D@AdobeOrg&quot;,&quot;session&quot;:&quot;{ad_session}&quot;,&quot;account_settings&quot;:{&quot;trackingServer&quot;:&quot;aa.gamespot.com&quot;,&quot;trackingServerSecure&quot;:&quot;saa.gamespot.com&quot;},&quot;page_type&quot;:&quot;image&quot;,&quot;channel&quot;:&quot;Games&quot;,&quot;hierarchy&quot;:&quot;Games|Cheats &amp; Walkthroughs&quot;,&quot;platform&quot;:[&quot;PlayStation 2&quot;,&quot;Xbox&quot;],&quot;product_id&quot;:&quot;gs-5000-18214&quot;,&quot;game_title&quot;:&quot;Battlestar Galactica (2003)|Battlestar Galactica&quot;,&quot;genre&quot;:[&quot;Simulation&quot;],&quot;content_type&quot;:&quot;image&quot;}"><meta class="ad-settings page-event-ad-settings" id="image_view-ad-settings" itemprop="page-event-ad-settings" data-settings="{&quot;page_event_name&quot;:&quot;image_view&quot;,&quot;mapped_units&quot;:{&quot;overlay_mpu_top&quot;:{&quot;size&quot;:[[300,250]],&quot;target&quot;:{&quot;pos&quot;:&quot;top&quot;,&quot;ptype&quot;:&quot;image&quot;},&quot;on_event&quot;:&quot;image_view&quot;},&quot;overlay_leader_top&quot;:{&quot;size&quot;:[[970,66],[728,90]],&quot;target&quot;:{&quot;pos&quot;:&quot;top&quot;,&quot;ptype&quot;:&quot;image&quot;},&quot;on_event&quot;:&quot;image_view&quot;}}}"><div id="js-image-mask" class="image-mask"></div><div id="js-image-ad-leader" class="image-viewer-ad image-viewer-leader"><div class="js-mapped-ad mapped-ad mapped-overlay_leader_top mapped-overlay_leader_top-dart" data-ad-type="overlay_leader_top"><div class="ad-wrap ad-wrap-overlay_leader_top" data-ad-event="image_view"></div></div></div><a id="js-image-close" href="#" class="image-control image-close" title="Close Viewer"><i><svg version="1.1" width="22" height="28" viewbox="0 0 22 28" aria-hidden="true" class="symbol symbol-remove symbol--size-3x"><path d="M20.281 20.656q0 0.625-0.438 1.062l-2.125 2.125q-0.438 0.438-1.062 0.438t-1.062-0.438l-4.594-4.594-4.594 4.594q-0.438 0.438-1.062 0.438t-1.062-0.438l-2.125-2.125q-0.438-0.438-0.438-1.062t0.438-1.062l4.594-4.594-4.594-4.594q-0.438-0.438-0.438-1.062t0.438-1.062l2.125-2.125q0.438-0.438 1.062-0.438t1.062 0.438l4.594 4.594 4.594-4.594q0.438-0.438 1.062-0.438t1.062 0.438l2.125 2.125q0.438 0.438 0.438 1.062t-0.438 1.062l-4.594 4.594 4.594 4.594q0.438 0.438 0.438 1.062z"/></svg></i></a><div id="js-image-pane" class="image-pane"><h3 id="js-image-title" class="image-title"></h3><img tabindex="0" src="/web/20200617093814im_/https://www.gamespot.com/games/battlestar-galactica-2003/cheats/" id="imageSource" alt=""/><div id="js-image-commands-tip" class="image-commands-tip image-commands-tip-hide"><p>Use your keyboard!</p><ul class="keyboard light"><li><i><svg version="1.1" width="28" height="28" viewbox="0 0 28 28" aria-hidden="true" class="symbol symbol-arrow-left symbol--size-large"><path d="M24 14v2q0 0.828-0.508 1.414t-1.32 0.586h-11l4.578 4.594q0.594 0.562 0.594 1.406t-0.594 1.406l-1.172 1.188q-0.578 0.578-1.406 0.578-0.812 0-1.422-0.578l-10.172-10.187q-0.578-0.578-0.578-1.406 0-0.812 0.578-1.422l10.172-10.156q0.594-0.594 1.422-0.594 0.812 0 1.406 0.594l1.172 1.156q0.594 0.594 0.594 1.422t-0.594 1.422l-4.578 4.578h11q0.812 0 1.32 0.586t0.508 1.414z"/></svg></i></li><li><i><svg version="1.1" width="28" height="28" viewbox="0 0 28 28" aria-hidden="true" class="symbol symbol-arrow-right symbol--size-large"><path d="M23 15q0 0.844-0.578 1.422l-10.172 10.172q-0.609 0.578-1.422 0.578-0.797 0-1.406-0.578l-1.172-1.172q-0.594-0.594-0.594-1.422t0.594-1.422l4.578-4.578h-11q-0.812 0-1.32-0.586t-0.508-1.414v-2q0-0.828 0.508-1.414t1.32-0.586h11l-4.578-4.594q-0.594-0.562-0.594-1.406t0.594-1.406l1.172-1.172q0.594-0.594 1.406-0.594 0.828 0 1.422 0.594l10.172 10.172q0.578 0.547 0.578 1.406z"/></svg></i></li><li><i><svg version="1.1" width="26" height="28" viewbox="0 0 26 28" aria-hidden="true" class="symbol symbol-arrow-up symbol--size-large"><path d="M25.172 15.172q0 0.797-0.578 1.406l-1.172 1.172q-0.594 0.594-1.422 0.594-0.844 0-1.406-0.594l-4.594-4.578v11q0 0.812-0.586 1.32t-1.414 0.508h-2q-0.828 0-1.414-0.508t-0.586-1.32v-11l-4.594 4.578q-0.562 0.594-1.406 0.594t-1.406-0.594l-1.172-1.172q-0.594-0.594-0.594-1.406 0-0.828 0.594-1.422l10.172-10.172q0.547-0.578 1.406-0.578 0.844 0 1.422 0.578l10.172 10.172q0.578 0.609 0.578 1.422z"/></svg></i></li><li><i><svg version="1.1" width="26" height="28" viewbox="0 0 26 28" aria-hidden="true" class="symbol symbol-arrow-down symbol--size-large"><path d="M25.172 13q0 0.828-0.578 1.406l-10.172 10.187q-0.609 0.578-1.422 0.578-0.828 0-1.406-0.578l-10.172-10.187q-0.594-0.562-0.594-1.406 0-0.828 0.594-1.422l1.156-1.172q0.609-0.578 1.422-0.578 0.828 0 1.406 0.578l4.594 4.594v-11q0-0.812 0.594-1.406t1.406-0.594h2q0.812 0 1.406 0.594t0.594 1.406v11l4.594-4.594q0.578-0.578 1.406-0.578 0.812 0 1.422 0.578l1.172 1.172q0.578 0.609 0.578 1.422z"/></svg></i></li><li>ESC</li></ul></div><a href="#" tabindex="0" id="js-image-prev" class="image-control image-prev hidden" title="Previous Image"><i><svg version="1.1" width="10" height="28" viewbox="0 0 10 28" aria-hidden="true" class="symbol symbol-caret-left symbol--size-2x"><path d="M10 7v14q0 0.406-0.297 0.703t-0.703 0.297-0.703-0.297l-7-7q-0.297-0.297-0.297-0.703t0.297-0.703l7-7q0.297-0.297 0.703-0.297t0.703 0.297 0.297 0.703z"/></svg></i></a><a href="#" tabindex="0" id="js-image-next" class="image-control image-next hidden" title="Next Image"><i><svg version="1.1" width="10" height="28" viewbox="0 0 10 28" aria-hidden="true" class="symbol symbol-caret-right symbol--size-2x"><path d="M9 14q0 0.406-0.297 0.703l-7 7q-0.297 0.297-0.703 0.297t-0.703-0.297-0.297-0.703v-14q0-0.406 0.297-0.703t0.703-0.297 0.703 0.297l7 7q0.297 0.297 0.297 0.703z"/></svg></i></a></div><div id="js-side-column" class="image-comments"><div id="js-image-ad-mpu" class="image-viewer-ad image-viewer-mpu"><div class="js-mapped-ad mapped-ad mapped-overlay_mpu_top mapped-overlay_mpu_top-dart" data-ad-type="overlay_mpu_top"><div class="ad-wrap ad-wrap-overlay_mpu_top" data-ad-event="image_view"></div></div></div><ul><li class="upload" id="imageInfo"></li><li class="box login-alert"><p><a href="/web/20200617093814/https://www.gamespot.com/login/">Log in</a> to comment</p></li></ul><ul class="scroll" id="imageComments"></ul></div><div class="image-strip"><a tabindex="0" href="#" id="js-image-view-film" class="image-view-film"><span id="js-btn-message" class="caret-message"></span><i><svg width="28px" height="28px" viewbox="0 0 28 28" version="1.1" aria-hidden="true" class="symbol symbol-caret-down symbol--size-large"><path d="M23.999997,10.222341 C23.999997,10.5531467 23.8825847,10.8397498 23.6477603,11.0821505 L15.3353915,19.6374684 C15.1005671,19.8791561 14.8221028,20 14.4999985,20 C14.1778942,20 13.8994298,19.8791561 13.6646054,19.6374684 L5.35223663,11.0821505 C5.11741221,10.8404628 5,10.5538596 5,10.222341 C5,9.89082248 5.11741221,9.60421933 5.35223663,9.3625316 C5.58706105,9.12084387 5.8655254,9 6.18762969,9 L22.8123673,9 C23.1337789,9 23.4122432,9.12084387 23.6477603,9.3625316 C23.8832774,9.60421933 24.0006897,9.89082248 23.999997,10.222341 L23.999997,10.222341 Z" stroke-width="1" fill-rule="evenodd"/></svg></i></a><div class="number"></div><ul id="js-image-strip"><li id="js-image-strip-load-more"><a href="#" class="more-images"></a></li></ul></div></div> <script src="https://web.archive.org/web/20200617093814js_/https://gamespot1.cbsistatic.com/v61bf2ade7a3df033759fbb78da92f1ec/js/compiled/imageViewer.js" type="text/javascript"></script> <script src="https://web.archive.org/web/20200617093814js_/https://gamespot1.cbsistatic.com/v61bf2ade7a3df033759fbb78da92f1ec/js/compiled/site.js" type="text/javascript"></script> <!-- BEG: base custom_js --> <script src="https://web.archive.org/web/20200617093814js_/https://gamespot1.cbsistatic.com/v61bf2ade7a3df033759fbb78da92f1ec/js/compiled/wiki.js" type="text/javascript"></script> <!-- END: base custom_js --> <script type="text/plain" class="optanon-category-2" id="script_omniture_and_qualtrics" src="https://web.archive.org/web/20200617093814js_/https://gamespot1.cbsistatic.com/v61bf2ade7a3df033759fbb78da92f1ec/js/compiled/trackingAll.js" async charset="utf-8"></script> <meta name="trackingEventsLookup" content="[]"/> <script async src="https://web.archive.org/web/20200617093814js_/https://gamespot1.cbsistatic.com/v61bf2ade7a3df033759fbb78da92f1ec/js/compiled/siteTracking.js"></script> <noscript> <img src="https://web.archive.org/web/20200617093814im_/https://dw.cbsi.com/clear/c.gif?ptid=6027&amp;ednm=%7Bedition%7D&amp;ursuid=%7Bursuid%7D&amp;regSilo=2&amp;rsid=cbsigamespotsite&amp;prodtypid=8&amp;pagetype=games_cheats_list&amp;assetguid=5000-18214&amp;assettitle=Battlestar+Galactica+%282003%29&amp;assettype=Game&amp;topicbrcrm=Games%7CCheats+%26+Walkthroughs&amp;sid=6&amp;ts=1592386694" alt="" class="visuallyhidden"> </noscript> <script type="text/plain" class="optanon-category-2" id="script_true_anthem" src="//web.archive.org/web/20200617093814js_/https://tru.am/scripts/custom/cbsinteractive.js" async charset="utf-8"></script> <!-- Facebook Pixel Code --> <script> PhoenixLoader.gdprConsentCallback("facebookPixel", function () { !function(f,b,e,v,n,t,s) {if(f.fbq)return;n=f.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)}; if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0'; n.queue=[];t=b.createElement(e);t.async=!0; t.src=v;s=b.getElementsByTagName(e)[0]; s.parentNode.insertBefore(t,s)}(window,document,'script', 'https://web.archive.org/web/20200617093814/https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '1664416907029093'); fbq('track', 'PageView'); }, 'social'); </script> <noscript> <img height="1" width="1" src="https://web.archive.org/web/20200617093814im_/https://www.facebook.com/tr?id=1664416907029093&amp;ev=PageView&amp;noscript=1"/> </noscript> <!-- End Facebook Pixel Code --> <!-- Global site tag (gtag.js) - Google Ads: 659993574 --> <script type="text/plain" class="optanon-category-4" id="script_googleTagManager" src="https://web.archive.org/web/20200617093814js_/https://www.googletagmanager.com/gtag/js?id=AW-659993574" async charset="utf-8"></script> <script> PhoenixLoader.gdprConsentCallback("googlePixel", function () { window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'AW-659993574'); }, 'targeting'); </script> <script> var taboola_url = '//web.archive.org/web/20200617093814/https://cdn.taboola.com/libtrc/cbsinteractive-gamespot/loader.js'; var taboola_header_key = 'other'; </script><script async src="https://web.archive.org/web/20200617093814js_/https://gamespot1.cbsistatic.com/v61bf2ade7a3df033759fbb78da92f1ec/js/compiled/siteAdsBidBarrel.js"></script> <script type="text/javascript"> (function () { "use strict"; var x = document.createElement('meta'); x.id = "xdetstatus"; x.name = "xdetstatus"; x.content=""; x.setAttribute("data-status", "unknown"); x.setAttribute("data-processed", "0"); document.head.appendChild(x); var $, $xdetstatus; try { $ = window.jQuery || window.$; $xdetstatus = $(x); } catch (e) { console.error('jQuery is not defined'); } var updateStatus = function (blocking) { $xdetstatus.data('status', !!blocking); $xdetstatus.trigger('statusChange', [blocking]); }; if (typeof window.I11C !== "undefined") { $(function(){ updateStatus(false); }); return; } // use PhoenixThirdPartyLoader to load all third party features // load source_point if enabled, otherwise call updateStatus(false) to load ads PhoenixLoader.gdprConsentCallback("source_point", function() { var h=function(e){if(e.target.tagName === 'SCRIPT' && e.target.src.indexOf('js/compiled/sourcepoint') !== -1){updateStatus(true);window.removeEventListener('error', h);}}; window.addEventListener('error', h, true); var evt1='sp.blocking', evt2='sp.not_blocking', f1=function(e){ updateStatus(true); document.removeEventListener(evt1, f1); document.removeEventListener(evt2, f2); }, f2=function (e){ updateStatus(false); document.removeEventListener(evt1, f1); document.removeEventListener(evt2, f2); }; document.addEventListener(evt1, f1); document.addEventListener(evt2, f2); window._sp_ = window._sp_ || {}; window._sp_.config = window._sp_.config || {}; window._sp_.config.account_id = 68; var s = document.createElement('script'); s.src = 'https://web.archive.org/web/20200617093814/https://gamespot1.cbsistatic.com/v61bf2ade7a3df033759fbb78da92f1ec/js/compiled/sourcepoint.js'; var x = document.getElementsByTagName('script')[0]; x.parentNode.insertBefore(s, x); }, 'targeting', 'Scripts', function() { updateStatus(false); // for sake of third party feature testing, assume block = false } ); })(); </script> <div id="liveMessageOverlay" class="live_message-overlay full-cover-fixed text-center base-flexbox flexbox-justify-center flexbox-align-center" style="display:none;"> <div id="liveMessageInner" class="live_message-container inner-space-rem bg-white"> <span> <i class="vertical-spacing-small-bottom"><svg version="1.1" width="28" height="28" viewbox="0 0 28 28" aria-hidden="true" class="symbol symbol-info-sign"><path d="M16 21.5v-2.5q0-0.219-0.141-0.359t-0.359-0.141h-1.5v-8q0-0.219-0.141-0.359t-0.359-0.141h-5q-0.219 0-0.359 0.141t-0.141 0.359v2.5q0 0.219 0.141 0.359t0.359 0.141h1.5v5h-1.5q-0.219 0-0.359 0.141t-0.141 0.359v2.5q0 0.219 0.141 0.359t0.359 0.141h7q0.219 0 0.359-0.141t0.141-0.359zM14 7.5v-2.5q0-0.219-0.141-0.359t-0.359-0.141h-3q-0.219 0-0.359 0.141t-0.141 0.359v2.5q0 0.219 0.141 0.359t0.359 0.141h3q0.219 0 0.359-0.141t0.141-0.359zM24 14q0 3.266-1.609 6.023t-4.367 4.367-6.023 1.609-6.023-1.609-4.367-4.367-1.609-6.023 1.609-6.023 4.367-4.367 6.023-1.609 6.023 1.609 4.367 4.367 1.609 6.023z"/></svg></i> </span> <p id="liveMessageContent"></p> <a onclick="closeOverlay();" class="live_message-close btn btn-large btn-default vertical-spacing-small-top">Close</a> </div> </div> <script id="js-template-autocomplete-result-pod" type="text/template"><span class="<%= data.resultPodClass %>"><span><%= data.resultDisplayName %></span><i><svg version="1.1" width="22" height="28" viewBox="0 0 22 28" aria-hidden="true" class="symbol symbol-remove"><path d="M20.281 20.656q0 0.625-0.438 1.062l-2.125 2.125q-0.438 0.438-1.062 0.438t-1.062-0.438l-4.594-4.594-4.594 4.594q-0.438 0.438-1.062 0.438t-1.062-0.438l-2.125-2.125q-0.438-0.438-0.438-1.062t0.438-1.062l4.594-4.594-4.594-4.594q-0.438-0.438-0.438-1.062t0.438-1.062l2.125-2.125q0.438-0.438 1.062-0.438t1.062 0.438l4.594 4.594 4.594-4.594q0.438-0.438 1.062-0.438t1.062 0.438l2.125 2.125q0.438 0.438 0.438 1.062t-0.438 1.062l-4.594 4.594 4.594 4.594q0.438 0.438 0.438 1.062z"/></svg></i><input type="hidden" name="<%= data.resultInputName %>"<% _.each(data.resultDataStore, function(value, key) { %>data-<%= key %>="<%= value %>" <% }) %> value="<%= data.resultInputValue %>"></span></script><script id="js-template-autocomplete-results" type="text/template"><div class="dropdown--autocomplete"><ul class="js-autocomplete-list autocomplete-list bordered-list"><% if (data.showNotificationBar) { %><li class="js-autocomplete-notification-bar notification-bar color-tertiary"><span class="js-autocomplete-notification-text notification-text">Searching for</span> &quot;<span class="js-autocomplete-notification-term notification-term"></span>&quot;</li><% } %></ul><div class="js-loader loader "><div class="loader-animation"><div class="loading"></div></div></div></div></script><script id="js-template-autocomplete-results-legacy" type="text/template"><div class="dropdown-menu typeahead typeahead-full"><ul class="js-autocomplete-list autocomplete-list"><% if (data.showNotificationBar) { %><li class="js-autocomplete-notification-bar notificationBar"><span class="js-autocomplete-notification-text notification-text">Searching for</span> &quot;<span class="js-autocomplete-notification-term notification-term"></span>&quot;</li><% } %></ul><div class="js-loader loader "><div class="loader-animation"><div class="loading"></div></div></div></div></script><script id="js-template-autocomplete-result-item" type="text/template"><li><% if (data.hasResult) { %><% if (data.resultUrl) { %><a class="flexbox-row <% if (data.resultClass) { print(data.resultClass); } %>" href="<%= data.resultUrl %>" data-id="<%= data.resultUrlDataId %>" data-key="<%= data.resultUrlDataKey %>" data-type="<%= data.resultUrlDataType %>"><% } else { %><div class="flexbox-row <% if (data.resultClass) { print(data.resultClass); } %>"><% } %><% if (data.resultImage) { %><div class="link-img"><img src="<%= data.resultImage %>"></div><% } %><div class="flexbox-row flexbox-justify-between"><p><%= data.resultName %></p><% if (data.resultType) { %><span class="result-type"><%= data.resultType %></span><% } %></div><% if (data.resultUrl) { %></a><% } else { %></div><% } %><% } else { %><% if (data.emptyText) { %><div class="noResults"><%= data.emptyText %></div><% } %><% } %></li></script><script id="js-template-autocomplete-result-item-legacy" type="text/template"><li><% if (data.hasResult) { %><% if (data.resultUrl) { %><a class=" <% if (data.resultClass) { print(data.resultClass); } %>" href="<%= data.resultUrl %>" data-id="<%= data.resultUrlDataId %>" data-key="<%= data.resultUrlDataKey %>" data-type="<%= data.resultUrlDataType %>"><% } else { %><div class=" <% if (data.resultClass) { print(data.resultClass); } %>"><% } %><% if (data.resultImage) { %><img src="<%= data.resultImage %>"><% } %><div class="flexbox-row flexbox-justify-between"><p><%= data.resultName %></p><% if (data.resultType) { %><span class="result-type"><%= data.resultType %></span><% } %></div><% if (data.resultUrl) { %></a><% } else { %></div><% } %><% } else { %><% if (data.emptyText) { %><div class="noResults"><%= data.emptyText %></div><% } %><% } %></li></script><script id="js-template-autocomplete-pagination" type="text/template"><li class="js-autocomplete-page <%= data.direction %>" data-direction="<%= data.direction %>"><% if (data.direction === "next") { %>See more results<% } else { %>See previous results<% } %></li></script> <script id="js-underscore-template-small-buylink" type="text/template"><% var linkText = link.text %><% var linkUrl = link.url %><a target="_blank" href=<%= linkUrl %> class="js-lead-click-event-tracking" data-event-tracking='{"lead_type":"deal","merchant":"","link_location":"Buy Button","lead_dest_url":"<%= linkUrl %>"}' data-vars-buy-link=<%= linkUrl %> ><%= linkText %></a></script><script id="js-underscore-template-medium-buylink" type="text/template"><div class="pod pod--carousel-strip carousel__standard"><div class="js-carousel-strip carousel-strip" data-viewport="3"><div class="flexbox-row flexbox-justify-between"><% if (collection.title) { %><h4 class="collection-title"><%= collection.title %></h4><% } %><div class="carousel-strip__control flexbox-justify-flex-end"><div class="js-carousel-strip__control--prev carousel-strip__control--prev"><button type="button" class="js-carousel-strip__control" data-control-dir="1"><i><svg version="1.1" width="10" height="28" viewBox="0 0 10 28" aria-hidden="true" class="symbol symbol-angle-left"><path d="M9.797 8.5q0 0.203-0.156 0.359l-6.141 6.141 6.141 6.141q0.156 0.156 0.156 0.359t-0.156 0.359l-0.781 0.781q-0.156 0.156-0.359 0.156t-0.359-0.156l-7.281-7.281q-0.156-0.156-0.156-0.359t0.156-0.359l7.281-7.281q0.156-0.156 0.359-0.156t0.359 0.156l0.781 0.781q0.156 0.156 0.156 0.359z"/></svg></i></button></div><div class="js-carousel-strip__control--next carousel-strip__control--next"><button type="button" class="js-carousel-strip__control" data-control-dir="-1"><i><svg version="1.1" width="10" height="28" viewBox="0 0 10 28" aria-hidden="true" class="symbol symbol-angle-right"><path d="M9.297 15q0 0.203-0.156 0.359l-7.281 7.281q-0.156 0.156-0.359 0.156t-0.359-0.156l-0.781-0.781q-0.156-0.156-0.156-0.359t0.156-0.359l6.141-6.141-6.141-6.141q-0.156-0.156-0.156-0.359t0.156-0.359l0.781-0.781q0.156-0.156 0.359-0.156t0.359 0.156l7.281 7.281q0.156 0.156 0.156 0.359z"/></svg></i></button></div></div></div><div class="js-carousel-strip__viewport carousel-strip__viewport"><div class="js-carousel-strip__body carousel-strip__body"><ul class="js-carousel-strip__strip carousel-strip__strip"><% _.each(collection.collection, function(buylink) { %><% var { itemDescription, linkText, linkUrl, "data-img-src" : imgSrc } = buylink %><li class="carousel-strip__slot" style="max-width: 33.333333333333%;flex:1 0 33.333333333333%;"><div class="buylink-item-container"><div class="image-container"><img class="overlay" src=<%= imgSrc %> /><img class="main-image" src=<%= imgSrc %>></div><div class="information-container"><p class="item-description"><%= itemDescription %></p><% var link = { text:linkText, url:linkUrl } %><% var linkText = link.text %><% var linkUrl = link.url %><a target="_blank" href=<%= linkUrl %> class="js-lead-click-event-tracking" data-event-tracking='{"lead_type":"deal","merchant":"","link_location":"Buy Button","lead_dest_url":"<%= linkUrl %>"}' data-vars-buy-link=<%= linkUrl %> ><%= linkText %></a></div></div></li><% }); %></ul></div></div></div></div></script><script id="js-underscore-template-large-buylink" type="text/template"><h4 class="collection-title"><%= collection.title %></h4><div class="buylink-container"><% _.each(collection.collection, function(buylink) { %><% var { itemDescription, linkText, linkUrl, "data-img-src" : imgSrc } = buylink %><div class="buylink-item-container"><div class="information-container"><p class="item-description"><%= itemDescription %></p><% var link = { text:linkText, url:linkUrl } %><% var linkText = link.text %><% var linkUrl = link.url %><a target="_blank" href=<%= linkUrl %> class="js-lead-click-event-tracking" data-event-tracking='{"lead_type":"deal","merchant":"","link_location":"Buy Button","lead_dest_url":"<%= linkUrl %>"}' data-vars-buy-link=<%= linkUrl %> ><%= linkText %></a></div><div class="image-container"><img class="overlay" src=<%= imgSrc %> /><img class="main-image" src=<%= imgSrc %>></div></div><% }); %></div></script> <script id="js-underscore-template-score-scale" type="text/template"><div class="score-scale__label text-small js-current-user-review-title" data-object-name="<%= templateData.name %>"> You rated <span class="block text-bold"><%= templateData.name %></span></div><div class="score-scale__score text-bold js-current-user-review-score"><div class="border-circle"><span class="block centered--absolute"><%= templateData.score %></span></div><div class="block"><%= _.propertyOf({"1":"Abysmal","2":"Terrible","3":"Bad","4":"Poor","5":"Mediocre","6":"Fair","7":"Good","8":"Great","9":"Superb","10":"Essential"})(templateData.score) %></div></div></script> </body> </html> <!-- FILE ARCHIVED ON 09:38:14 Jun 17, 2020 AND RETRIEVED FROM THE INTERNET ARCHIVE ON 09:06:46 Dec 20, 2024. JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). --> <!-- playback timings (ms): captures_list: 1.813 exclusion.robots: 0.128 exclusion.robots.policy: 0.097 esindex: 0.026 cdx.remote: 39.329 LoadShardBlock: 724.419 (3) PetaboxLoader3.datanode: 447.493 (4) PetaboxLoader3.resolve: 381.074 (2) load_resource: 213.41 -->

Pages: 1 2 3 4 5 6 7 8 9 10