{"id":270,"date":"2025-05-04T14:40:29","date_gmt":"2025-05-04T14:40:29","guid":{"rendered":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/?p=270"},"modified":"2025-05-04T14:40:29","modified_gmt":"2025-05-04T14:40:29","slug":"pre-season-1-coupon-giveaway","status":"publish","type":"post","link":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/","title":{"rendered":"Pre-Season 1 Coupon Giveaway \u2013 Grab Yours Now!"},"content":{"rendered":"\r\n<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 20px auto; color: #fff;\">\r\n<p style=\"text-align: center;\">Get ready for Game of Thrones: Kingsroad Pre-Season 1 with this exclusive coupon giveaway! We\u2019re excited to share 55 limited coupon codes on a first-come, first-served basis. Each code can only be used once, with a limit of one per account, so act fast to claim yours!<\/p>\r\n<p style=\"text-align: center;\"><strong>Rewards:<\/strong><br \/><strong>30 RP Recharge Ticket x1<\/strong>: Instantly recharge 30 RP to keep your adventures going.<br \/><strong>Ruin Runner x2<\/strong>: Expeditions, nice and fast with these.<br \/><strong>Copper x3,000<\/strong>: A handy boost to your in-game resources.<\/p>\r\n<p style=\"text-align: center; font-style: italic;\">Scroll down to claim your coupon code!<\/p>\r\n<\/div>\r\n<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 20px auto; padding: 20px; background-color: #232323; border: 1px solid #ccc; border-radius: 5px; box-sizing: border-box;\">\r\n<h2 style=\"text-align: center; color: #fff; margin-top: 0;\">Available Coupon Codes<\/h2>\r\n<p style=\"text-align: center; color: #fff; margin-bottom: 20px;\">Click &#8220;Copy&#8221; to copy a code or &#8220;Already Claimed?&#8221; if a code is used.<\/p>\r\n<ul id=\"coupon-list\" style=\"list-style: none; padding: 0; margin: 0;\"><\/ul>\r\n<\/div>\r\n<p><script type=\"text\/javascript\">\r\n    (function() {\r\n        \/\/ List of coupon codes\r\n        var couponCodes = [\r\n            \"09P5OFDK3MPX\", \"09ROO8LCBI3W\", \"09RUPXHGO9L2\", \"09SMZD7JJTGK\", \"09TT4HXBCKF9\",\r\n            \"09TZQMR2CUON\", \"09UVIEM45QC5\", \"09VGXQCUDYOT\", \"09WMU1NU2DSG\", \"09XK6QPSZY9W\",\r\n            \"09YGA0DSS2PZ\", \"09ZHF9KUJ1KK\", \"0A0COVCMAETH\", \"0A0LM1Z2C6I3\", \"0A1KKK4TEAAW\",\r\n            \"0A3RCEZ396UH\", \"0A49KQMIKKOL\", \"0A4KDFL5UVW7\", \"0A885DO7WXAO\", \"0A8QMRR0DGMV\",\r\n            \"0A8TGNN4SQAJ\", \"0A96BGRPIYJU\", \"0AAQ0XSDBSQ8\", \"0AB3L6008BFT\", \"0ABZBKNE8BLN\",\r\n            \"0ACQBALOFECC\", \"0ADC49GHJ2ZT\", \"0ADLD1GG3QUF\", \"0AEJEWWOTDAN\", \"0AELIHMWHKYD\",\r\n            \"0AEQVCGOJR0G\", \"0AGLAGUHPCD4\", \"0AGO8KZBEA0D\", \"0AHDJDBJC8F5\", \"0AIP3MQGPBQA\",\r\n            \"0AIVD6G1W33N\", \"0AKJEVN9RBTN\", \"0AKUGBGZHVRP\", \"0ALUPOWSIDGY\", \"0ANEX3JCMICN\",\r\n            \"0ANYZLIDKPPA\", \"0AOFC9PFC423\", \"0AOSOMZXU2C5\", \"0APKHCQRYBG4\", \"0APSBIAGE9CB\",\r\n            \"0AQBBND89XAQ\", \"0AQPS7WXXANJ\", \"0AQS4ZO5PDCE\", \"0AQTAQZMPBC7\", \"0AR5YR3VTXD1\",\r\n            \"0ARSGFLSWSXF\", \"0ATFWSL3YTQI\", \"0AU3NS1OI0U3\", \"0AUF86USUYNU\", \"0AUFAJBKXAUY\",\r\n            \"0AUFJ0ZRTLIC\"\r\n        ];\r\n\r\n        \/\/ Function to get claimed codes from local storage\r\n        function getClaimedCodes() {\r\n            try {\r\n                var claimed = localStorage.getItem('claimedCoupons');\r\n                return claimed ? JSON.parse(claimed) : [];\r\n            } catch (e) {\r\n                console.error('Error accessing localStorage:', e);\r\n                return [];\r\n            }\r\n        }\r\n\r\n        \/\/ Function to save claimed codes to local storage\r\n        function saveClaimedCode(code) {\r\n            try {\r\n                var claimed = getClaimedCodes();\r\n                if (!claimed.includes(code)) {\r\n                    claimed.push(code);\r\n                    localStorage.setItem('claimedCoupons', JSON.stringify(claimed));\r\n                }\r\n            } catch (e) {\r\n                console.error('Error saving to localStorage:', e);\r\n            }\r\n        }\r\n\r\n        \/\/ Function to copy code to clipboard\r\n        function copyCode(code, button) {\r\n            try {\r\n                navigator.clipboard.writeText(code).then(function() {\r\n                    button.textContent = 'Copied!';\r\n                    button.style.backgroundColor = '#28a745';\r\n                    setTimeout(function() {\r\n                        button.textContent = 'Copy';\r\n                        button.style.backgroundColor = '#007BFF';\r\n                    }, 2000);\r\n                }).catch(function(err) {\r\n                    console.error('Copy failed:', err);\r\n                    alert('Failed to copy code. Please copy it manually.');\r\n                });\r\n            } catch (e) {\r\n                console.error('Clipboard error:', e);\r\n                alert('Failed to copy code. Please copy it manually.');\r\n            }\r\n        }\r\n\r\n        \/\/ Function to mark code as claimed\r\n        function markAsClaimed(code, claimedLink, statusSpan) {\r\n            saveClaimedCode(code);\r\n            claimedLink.style.display = 'none';\r\n            statusSpan.textContent = 'Claimed';\r\n            statusSpan.style.color = '#ff0000';\r\n        }\r\n\r\n        \/\/ Function to render the coupon list\r\n        function renderCouponList() {\r\n            var list = document.getElementById('coupon-list');\r\n            if (!list) {\r\n                console.error('Coupon list element not found');\r\n                return;\r\n            }\r\n\r\n            var claimedCodes = getClaimedCodes();\r\n\r\n            couponCodes.forEach(function(code) {\r\n                var li = document.createElement('li');\r\n                li.style.display = 'flex';\r\n                li.style.justifyContent = 'space-between';\r\n                li.style.alignItems = 'center';\r\n                li.style.padding = '10px';\r\n                li.style.margin = '5px 0';\r\n                li.style.backgroundColor = '#333';\r\n                li.style.borderRadius = '3px';\r\n                li.style.border = '1px solid #ccc';\r\n\r\n                var codeSpan = document.createElement('span');\r\n                codeSpan.textContent = code;\r\n                codeSpan.style.fontWeight = 'bold';\r\n                codeSpan.style.color = '#fff';\r\n                codeSpan.style.flex = '1';\r\n\r\n                var copyButton = document.createElement('button');\r\n                copyButton.textContent = 'Copy';\r\n                copyButton.style.backgroundColor = '#007BFF';\r\n                copyButton.style.color = 'white';\r\n                copyButton.style.border = 'none';\r\n                copyButton.style.borderRadius = '3px';\r\n                copyButton.style.padding = '5px 10px';\r\n                copyButton.style.cursor = 'pointer';\r\n                copyButton.style.marginRight = '10px';\r\n                copyButton.addEventListener('click', function() {\r\n                    copyCode(code, copyButton);\r\n                });\r\n\r\n                var statusSpan = document.createElement('span');\r\n                statusSpan.style.minWidth = '60px';\r\n                statusSpan.style.textAlign = 'right';\r\n\r\n                var claimedLink = document.createElement('a');\r\n                claimedLink.href = '#';\r\n                claimedLink.textContent = 'Already Claimed?';\r\n                claimedLink.style.color = '#dc3545';\r\n                claimedLink.style.textDecoration = 'none';\r\n                claimedLink.style.marginRight = '10px';\r\n                claimedLink.addEventListener('click', function(e) {\r\n                    e.preventDefault();\r\n                    markAsClaimed(code, claimedLink, statusSpan);\r\n                });\r\n\r\n                if (claimedCodes.includes(code)) {\r\n                    claimedLink.style.display = 'none';\r\n                    statusSpan.textContent = 'Claimed';\r\n                    statusSpan.style.color = '#ff0000';\r\n                }\r\n\r\n                var actionsDiv = document.createElement('div');\r\n                actionsDiv.style.display = 'flex';\r\n                actionsDiv.style.alignItems = 'center';\r\n                actionsDiv.appendChild(copyButton);\r\n                actionsDiv.appendChild(claimedLink);\r\n                actionsDiv.appendChild(statusSpan);\r\n\r\n                li.appendChild(codeSpan);\r\n                li.appendChild(actionsDiv);\r\n                list.appendChild(li);\r\n            });\r\n        }\r\n\r\n        \/\/ Run when DOM is ready\r\n        try {\r\n            if (document.readyState === 'loading') {\r\n                document.addEventListener('DOMContentLoaded', renderCouponList);\r\n            } else {\r\n                renderCouponList();\r\n            }\r\n        } catch (e) {\r\n            console.error('Error initializing coupon list:', e);\r\n        }\r\n    })();\r\n<\/script><\/p>\r\n<div style=\"font-family: Arial, sans-serif; max-width: 600px; margin: 20px auto; color: #fff;\">\r\n<h3 style=\"text-align: center; color: #fff;\">How to Redeem Your Coupon<\/h3>\r\n<p style=\"text-align: center;\">To use your coupon code in Game of Thrones: Kingsroad, head to the in-game settings menu, select the &#8220;Redeem Code&#8221; option, and enter your code. Enjoy your rewards!<\/p>\r\n<h3 style=\"text-align: center; color: #fff;\">Support DaOpa via the Netmarble Creator Program<\/h3>\r\n<p style=\"text-align: center;\">If you enjoy this content, please consider supporting DaOpa through the Netmarble Creator Program. By signing up as a supporter and making in-game purchases, a small percentage of your purchase will help fund more guides, giveaways, and content for Game of Thrones: Kingsroad.<\/p>\r\n<p style=\"text-align: center;\"><a style=\"color: #dc3545; text-decoration: none;\" href=\"https:\/\/gamingwithdaopa.ellatha.com\/ext\/got-support-coupons\">Sign up to support DaOpa here<\/a><br \/><small style=\"color: #ccc;\">(Disclosure: This is an affiliate link. I may earn a small commission on purchases made through this partner program, at no extra cost to you.)<\/small><\/p>\r\n<p style=\"text-align: center;\">Thank you for being part of the Kingsroad community! Stay tuned for more updates and giveaways.<\/p>\r\n<\/div>\r\n","protected":false},"excerpt":{"rendered":"<p>Get ready for Game of Thrones: Kingsroad Pre-Season 1 with this exclusive coupon giveaway! We\u2019re excited to share 55 limited coupon codes on a first-come, first-served basis. Each code can only be used once, with a limit of one per account, so act fast to claim yours! Rewards:30 RP Recharge Ticket x1: Instantly recharge 30 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":279,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-270","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-guides"],"yoast_head":"<!-- Meta Tags -->\r\n<title>Pre-Season 1 Coupon Giveaway \u2013 Grab Yours Now! - Game of Thrones Kingsroad<\/title>\r\n<meta name=\"description\" content=\"Get ready for Game of Thrones: Kingsroad Pre-Season 1 with this exclusive coupon giveaway! We\u2019re excited to share 55 limited coupon codes on a first-come,\" \/>\r\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\r\n<link rel=\"canonical\" href=\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/\" \/>\r\n<meta property=\"og:locale\" content=\"en_US\" \/>\r\n<meta property=\"og:type\" content=\"article\" \/>\r\n<meta property=\"og:title\" content=\"Pre-Season 1 Coupon Giveaway \u2013 Grab Yours Now! - Game of Thrones Kingsroad\" \/>\r\n<meta property=\"og:description\" content=\"Get ready for Game of Thrones: Kingsroad Pre-Season 1 with this exclusive coupon giveaway! We\u2019re excited to share 55 limited coupon codes on a first-come,\" \/>\r\n<meta property=\"og:url\" content=\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/\" \/>\r\n<meta property=\"og:site_name\" content=\"Game of Thrones Kingsroad\" \/>\r\n<meta property=\"article:publisher\" content=\"facebook.com\/gamingwithdaopa\/\" \/>\r\n<meta property=\"article:author\" content=\"facebook.com\/gamingwithdaopa\/\" \/>\r\n<meta property=\"article:published_time\" content=\"2025-05-04T14:40:29+00:00\" \/>\r\n<meta property=\"og:image\" content=\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-content\/uploads\/sites\/36\/2025\/05\/game-of-thrones-kingsroad-coupon-codes.jpg\" \/>\r\n\t<meta property=\"og:image:width\" content=\"400\" \/>\r\n\t<meta property=\"og:image:height\" content=\"263\" \/>\r\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\r\n<meta name=\"author\" content=\"daopa\" \/>\r\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\r\n<meta name=\"twitter:creator\" content=\"@gamingwithdaopa\" \/>\r\n<meta name=\"twitter:site\" content=\"@gamingwithdaopa\" \/>\r\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"daopa\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\r\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/\"},\"author\":{\"name\":\"daopa\",\"@id\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/#\/schema\/person\/fb03a927907d90f409fac550ba375638\"},\"headline\":\"Pre-Season 1 Coupon Giveaway \u2013 Grab Yours Now!\",\"datePublished\":\"2025-05-04T14:40:29+00:00\",\"dateModified\":\"2025-05-04T14:40:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/\"},\"wordCount\":237,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/#\/schema\/person\/fb03a927907d90f409fac550ba375638\"},\"image\":{\"@id\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-content\/uploads\/sites\/36\/2025\/05\/game-of-thrones-kingsroad-coupon-codes.jpg\",\"articleSection\":[\"Guides\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/\",\"url\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/\",\"name\":\"Pre-Season 1 Coupon Giveaway \u2013 Grab Yours Now! - Game of Thrones Kingsroad\",\"isPartOf\":{\"@id\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-content\/uploads\/sites\/36\/2025\/05\/game-of-thrones-kingsroad-coupon-codes.jpg\",\"datePublished\":\"2025-05-04T14:40:29+00:00\",\"dateModified\":\"2025-05-04T14:40:29+00:00\",\"description\":\"Get ready for Game of Thrones: Kingsroad Pre-Season 1 with this exclusive coupon giveaway! We\u2019re excited to share 55 limited coupon codes on a first-come,\",\"breadcrumb\":{\"@id\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/#primaryimage\",\"url\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-content\/uploads\/sites\/36\/2025\/05\/game-of-thrones-kingsroad-coupon-codes.jpg\",\"contentUrl\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-content\/uploads\/sites\/36\/2025\/05\/game-of-thrones-kingsroad-coupon-codes.jpg\",\"width\":400,\"height\":263,\"caption\":\"game of thrones kingsroad coupon codes\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Pre-Season 1 Coupon Giveaway \u2013 Grab Yours Now!\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/#website\",\"url\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/\",\"name\":\"Game of Thrones Kingsroad\",\"description\":\"DaOpa&#039;s Game of Thrones Kingsroad fansite offers a treasure trove of content, featuring an extensive video collection, comprehensive guides, intricately detailed maps, and a rich array of insightful articles and game-related resources.\",\"publisher\":{\"@id\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/#\/schema\/person\/fb03a927907d90f409fac550ba375638\"},\"alternateName\":\"GOTK\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/#\/schema\/person\/fb03a927907d90f409fac550ba375638\",\"name\":\"daopa\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-content\/uploads\/sites\/36\/2025\/02\/gp.jpg\",\"contentUrl\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-content\/uploads\/sites\/36\/2025\/02\/gp.jpg\",\"width\":116,\"height\":172,\"caption\":\"daopa\"},\"logo\":{\"@id\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/#\/schema\/person\/image\/\"},\"description\":\"DaOpa has been variety streamer since 2009 with game focuses on primarily MMOs, Sandbox, RPG and FPS genres. For inquires comment in the comments sections. This channel is syndicated across various micro niche gaming related blogs operated by DaOpa. He creates fansites, guides, tools for gamers\",\"sameAs\":[\"https:\/\/gamingwithdaopa.ellatha.com\",\"facebook.com\/gamingwithdaopa\/\",\"https:\/\/x.com\/gamingwithdaopa\",\"youtube.com\/@daopa\"],\"url\":\"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/author\/daopa\/\"}]}<\/script>","yoast_head_json":{"title":"Pre-Season 1 Coupon Giveaway \u2013 Grab Yours Now! - Game of Thrones Kingsroad","description":"Get ready for Game of Thrones: Kingsroad Pre-Season 1 with this exclusive coupon giveaway! We\u2019re excited to share 55 limited coupon codes on a first-come,","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/","og_locale":"en_US","og_type":"article","og_title":"Pre-Season 1 Coupon Giveaway \u2013 Grab Yours Now! - Game of Thrones Kingsroad","og_description":"Get ready for Game of Thrones: Kingsroad Pre-Season 1 with this exclusive coupon giveaway! We\u2019re excited to share 55 limited coupon codes on a first-come,","og_url":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/","og_site_name":"Game of Thrones Kingsroad","article_publisher":"facebook.com\/gamingwithdaopa\/","article_author":"facebook.com\/gamingwithdaopa\/","article_published_time":"2025-05-04T14:40:29+00:00","og_image":[{"width":400,"height":263,"url":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-content\/uploads\/sites\/36\/2025\/05\/game-of-thrones-kingsroad-coupon-codes.jpg","type":"image\/jpeg"}],"author":"daopa","twitter_card":"summary_large_image","twitter_creator":"@gamingwithdaopa","twitter_site":"@gamingwithdaopa","twitter_misc":{"Written by":"daopa","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/#article","isPartOf":{"@id":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/"},"author":{"name":"daopa","@id":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/#\/schema\/person\/fb03a927907d90f409fac550ba375638"},"headline":"Pre-Season 1 Coupon Giveaway \u2013 Grab Yours Now!","datePublished":"2025-05-04T14:40:29+00:00","dateModified":"2025-05-04T14:40:29+00:00","mainEntityOfPage":{"@id":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/"},"wordCount":237,"commentCount":1,"publisher":{"@id":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/#\/schema\/person\/fb03a927907d90f409fac550ba375638"},"image":{"@id":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/#primaryimage"},"thumbnailUrl":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-content\/uploads\/sites\/36\/2025\/05\/game-of-thrones-kingsroad-coupon-codes.jpg","articleSection":["Guides"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/","url":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/","name":"Pre-Season 1 Coupon Giveaway \u2013 Grab Yours Now! - Game of Thrones Kingsroad","isPartOf":{"@id":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/#website"},"primaryImageOfPage":{"@id":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/#primaryimage"},"image":{"@id":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/#primaryimage"},"thumbnailUrl":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-content\/uploads\/sites\/36\/2025\/05\/game-of-thrones-kingsroad-coupon-codes.jpg","datePublished":"2025-05-04T14:40:29+00:00","dateModified":"2025-05-04T14:40:29+00:00","description":"Get ready for Game of Thrones: Kingsroad Pre-Season 1 with this exclusive coupon giveaway! We\u2019re excited to share 55 limited coupon codes on a first-come,","breadcrumb":{"@id":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/#primaryimage","url":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-content\/uploads\/sites\/36\/2025\/05\/game-of-thrones-kingsroad-coupon-codes.jpg","contentUrl":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-content\/uploads\/sites\/36\/2025\/05\/game-of-thrones-kingsroad-coupon-codes.jpg","width":400,"height":263,"caption":"game of thrones kingsroad coupon codes"},{"@type":"BreadcrumbList","@id":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/pre-season-1-coupon-giveaway\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/"},{"@type":"ListItem","position":2,"name":"Pre-Season 1 Coupon Giveaway \u2013 Grab Yours Now!"}]},{"@type":"WebSite","@id":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/#website","url":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/","name":"Game of Thrones Kingsroad","description":"DaOpa&#039;s Game of Thrones Kingsroad fansite offers a treasure trove of content, featuring an extensive video collection, comprehensive guides, intricately detailed maps, and a rich array of insightful articles and game-related resources.","publisher":{"@id":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/#\/schema\/person\/fb03a927907d90f409fac550ba375638"},"alternateName":"GOTK","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/#\/schema\/person\/fb03a927907d90f409fac550ba375638","name":"daopa","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/#\/schema\/person\/image\/","url":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-content\/uploads\/sites\/36\/2025\/02\/gp.jpg","contentUrl":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-content\/uploads\/sites\/36\/2025\/02\/gp.jpg","width":116,"height":172,"caption":"daopa"},"logo":{"@id":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/#\/schema\/person\/image\/"},"description":"DaOpa has been variety streamer since 2009 with game focuses on primarily MMOs, Sandbox, RPG and FPS genres. For inquires comment in the comments sections. This channel is syndicated across various micro niche gaming related blogs operated by DaOpa. He creates fansites, guides, tools for gamers","sameAs":["https:\/\/gamingwithdaopa.ellatha.com","facebook.com\/gamingwithdaopa\/","https:\/\/x.com\/gamingwithdaopa","youtube.com\/@daopa"],"url":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/author\/daopa\/"}]}},"_links":{"self":[{"href":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-json\/wp\/v2\/posts\/270","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-json\/wp\/v2\/comments?post=270"}],"version-history":[{"count":3,"href":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-json\/wp\/v2\/posts\/270\/revisions"}],"predecessor-version":[{"id":280,"href":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-json\/wp\/v2\/posts\/270\/revisions\/280"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-json\/wp\/v2\/media\/279"}],"wp:attachment":[{"href":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-json\/wp\/v2\/media?parent=270"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-json\/wp\/v2\/categories?post=270"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/gamingwithdaopa.ellatha.com\/gotkingsroad\/wp-json\/wp\/v2\/tags?post=270"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}