<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Video Game Cheats, Codes &amp; Walkthroughs | cheat-database.com</title>
    <!-- Favicons -->
    <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
    <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
    <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
    <link rel="manifest" href="/site.webmanifest">
    <link rel="icon" href="/favicon.ico" type="image/x-icon">
    <link rel="stylesheet" href="/format.css">

    <meta name="robots" content="index, follow">

    <meta name="description" content="Over 164900 free cheats, codes, hints and walkthroughs for PC and console video games. Nintendo Switch, PlayStation, Xbox and more.">
    <meta name="keywords"
          content="video game cheats, game codes, walkthroughs, hints, tricks, Nintendo Switch, PlayStation 5, Xbox Series X, PC gaming, cheat codes, game guides">

    <!-- Open Graph & Twitter Card meta tags -->
    <link rel="canonical" href="https://cheat-database.com" />
    <meta property="og:type" content="website" />
    <meta property="og:title" content="Video Game Cheats, Codes &amp; Walkthroughs | cheat-database.com" />
    <meta property="og:description" content="Over 164900 free cheats, codes, hints and walkthroughs for PC and console video games. Nintendo Switch, PlayStation, Xbox and more." />
    <meta property="og:site_name" content="cheat-database.com" />
    <meta property="og:url" content="https://cheat-database.com" />
    <meta property="og:image" content="https://cheat-database.com/images/foxy_banner_2026_transparent_2.png" />
    <meta property="og:locale" content="en_US" />
    <meta name="twitter:card" content="summary" />
    <meta name="twitter:title" content="Video Game Cheats, Codes &amp; Walkthroughs | cheat-database.com" />
    <meta name="twitter:description" content="Over 164900 free cheats, codes, hints and walkthroughs for PC and console video games. Nintendo Switch, PlayStation, Xbox and more." />
    <meta name="twitter:image" content="https://cheat-database.com/images/foxy_banner_2026_transparent_2.png" />

    <!-- Structured Data (JSON-LD) -->
    <script type="application/ld+json">
    {
    "@context": "https://schema.org",
    "@type": "WebSite",
    "name": "cheat-database.com",
    "url": "https://cheat-database.com",
    "description": "Over 164900 free cheats, codes, hints and walkthroughs for PC and console video games. Nintendo Switch, PlayStation, Xbox and more.",
    "potentialAction": {
        "@type": "SearchAction",
        "target": {
            "@type": "EntryPoint",
            "urlTemplate": "https://cheat-database.com/search.php?q={search_term_string}"
        },
        "query-input": "required name=search_term_string"
    }
}
    </script>

    <!-- Google Analytics 4 (GA4) -->
    <script async src="https://www.googletagmanager.com/gtag/js?id=G-PZEPDZBCGQ"></script>
    <script>
        window.dataLayer = window.dataLayer || [];
        function gtag(){dataLayer.push(arguments);}
        gtag('js', new Date());
        gtag('config', 'G-PZEPDZBCGQ');
    </script>

    <!-- Google Webmaster tools -->
    <meta name="verify-v1" content="J9fw5DXOKJVA1TytqHMozeiVCLPQWV3RgMck6OktvxM="/>

</head>
<script>
(function() {
    var CONSENT_COOKIE = 'cd_consent';
    var CONSENT_DAYS   = 365;

    function getCookie(name) {
        var m = document.cookie.match(new RegExp('(?:^|;\\s*)' + name + '=([^;]*)'));
        return m ? decodeURIComponent(m[1]) : null;
    }
    function setCookie(name, value, days) {
        var exp = new Date(Date.now() + days * 86400000).toUTCString();
        document.cookie = name + '=' + encodeURIComponent(value)
            + ';expires=' + exp + ';path=/;SameSite=Lax';
    }
    function getConsentStatus() {
        var v = getCookie(CONSENT_COOKIE);
        if (v === 'accepted') return true;
        if (v === 'declined') return false;
        return null; // undecided
    }

    /* ---------------------------------------------------------------
       Minimal TCF v2.2 API stub
       Ogury reads window.__tcfapi to determine ad personalisation consent.
    --------------------------------------------------------------- */
    var _listeners = {};

    function buildTcData(consented) {
        var p = {};
        if (consented) {
            [1,2,3,4,5,6,7,8,9,10].forEach(function(i){ p[i] = true; });
        }
        return {
            tcString:             '',
            gdprApplies:          true,
            cmpStatus:            'loaded',
            eventStatus:          'tcloaded',
            isServiceSpecific:    true,
            useNonStandardTexts:  false,
            purposeOneTreatment:  false,
            publisherCC:          'DE',
            addtlConsent:         '',
            purpose:              { consents: p, legitimateInterests: consented ? p : {} },
            vendor:               { consents: consented ? {31:true} : {}, legitimateInterests: consented ? {31:true} : {} },
            specialFeatureOptins: {},
            publisher: {
                consents: {}, legitimateInterests: {},
                customPurpose: { consents: {}, legitimateInterests: {} },
                restrictions: {}
            }
        };
    }

    var _listenerSeq = 0;
    window.__tcfapi = function(command, version, callback, parameter) {
        var status    = getConsentStatus();
        var consented = (status === true);

        if (command === 'ping') {
            callback({
                gdprApplies:   true,
                cmpLoaded:     true,
                cmpStatus:     status !== null ? 'loaded' : 'loading',
                displayStatus: status === null ? 'visible' : 'hidden',
                apiVersion:    '2.2',
                cmpVersion:    1,
                cmpId:         0,
                gvlVersion:    3
            }, true);

        } else if (command === 'getTCData') {
            callback(buildTcData(consented), status !== null);

        } else if (command === 'addEventListener') {
            var id = ++_listenerSeq;
            _listeners[id] = callback;
            if (status !== null) {
                var td = buildTcData(consented);
                td.listenerId = id;
                callback(td, true);
            }
            return id;

        } else if (command === 'removeEventListener') {
            delete _listeners[parameter];
            callback(true, true);
        }
    };

    /* Fire all waiting listeners once user makes a choice */
    function fireListeners(consented) {
        var td = buildTcData(consented);
        Object.keys(_listeners).forEach(function(id) {
            td.listenerId = parseInt(id, 10);
            _listeners[id](td, true);
        });
    }

    /* ---------------------------------------------------------------
       Public API – called by banner buttons
    --------------------------------------------------------------- */
    window.OGY_setConsent = function(accepted) {
        setCookie(CONSENT_COOKIE, accepted ? 'accepted' : 'declined', CONSENT_DAYS);
        fireListeners(accepted);
        var banner = document.getElementById('cd-consent-banner');
        if (banner) banner.style.display = 'none';
    };

    /* Show banner on first visit */
    document.addEventListener('DOMContentLoaded', function() {
        if (getConsentStatus() === null) {
            var banner = document.getElementById('cd-consent-banner');
            if (banner) banner.style.display = 'flex';
        }
    });
})();
</script>

<!-- GDPR Consent Banner -->
<div id="cd-consent-banner" style="
    display:none; position:fixed; bottom:0; left:0; right:0;
    background:#1a1a2e; color:#ddd;
    padding:14px 20px;
    z-index:99999;
    box-shadow:0 -2px 12px rgba(0,0,0,.45);
    font-family:Arial,Helvetica,sans-serif; font-size:13px;
    align-items:center; gap:16px; flex-wrap:wrap;">
    <div style="flex:1; min-width:220px; line-height:1.5;">
        <strong style="color:#fff;">We use cookies &amp; personalised ads</strong>
        to keep this site free. We and our advertising partners (including
        <a href="https://ogury.com/privacy-policy/" target="_blank" rel="noopener"
           style="color:#5aa3b1;">Ogury</a>) process data for personalised ads and
        analytics. You can accept or decline below.
        <a href="/privacy" style="color:#5aa3b1; margin-left:6px;">Privacy Policy</a>
    </div>
    <div style="display:flex; gap:10px; flex-shrink:0;">
        <button onclick="OGY_setConsent(false)"
                style="padding:8px 16px; background:transparent; border:1px solid #666;
                       color:#aaa; cursor:pointer; border-radius:4px; font-size:13px;">
            Decline
        </button>
        <button onclick="OGY_setConsent(true)"
                style="padding:8px 20px; background:#5aa3b1; border:none;
                       color:#fff; cursor:pointer; border-radius:4px;
                       font-size:13px; font-weight:bold;">
            Accept All
        </button>
    </div>
</div>

<body id="basic">

<div style="display: inline-block; width: 160px;">&nbsp;</div>
<div style="display: inline-block; align: center; width: 800px; vertical-align: top;">
    <header role="banner">
    <table class="outer_invisible">
        <tr>
            <td style="width: 300px;" rowspan="2"><a href="/"><img src="/images/foxy_banner_2026_transparent_2.png" alt="cheat-database.com - Video Game Cheats, Codes and Walkthroughs" style="width: 350px;"> </a></td>
            <td id="header_total_cheats" style="padding-top: 40px;">Over 164'900 cheats in our database</td>
        </tr>
        <tr>
            <td style="vertical-align: bottom;">
                <nav aria-label="Main navigation">
                <div style="padding-right: 20px; text-align: right;">
                    <div id="nifty">
							<span class="rtop"> <span class="r1"></span> <span class="r2"></span> <span
                                        class="r3"></span> <span class="r4"></span>
							</span> <a id="intab" href="/submit">Submit A Cheat</a>
                    </div>
                    <div id="nifty">
							<span class="rtop"> <span class="r1"></span> <span class="r2"></span> <span
                                        class="r3"></span> <span class="r4"></span>
							</span> <a id="intab" href="/members">Member Area</a>
                    </div>
                    <div id="nifty">
							<span class="rtop"> <span class="r1"></span> <span class="r2"></span> <span
                                        class="r3"></span> <span class="r4"></span>
							</span> <a id="intab" href="/contact">Contact</a>
                    </div>

                                            <div id="nifty">
							<span class="rtop"> <span class="r1"></span> <span class="r2"></span> <span
                                        class="r3"></span> <span class="r4"></span>
							</span> <a id="intab" href="/register">Register</a>
                        </div>
                                        </div>
                </nav>
            </td>
        </tr>
        <tr>
            <td align="center" colspan="2">
                <table class="invisible">
                    <tr>
                        <td class="top-left-white"></td>
                        <td class="top-middle-white"></td>
                        <td class="top-right-white">
                            <div id="skyscraper">
                                <script type="text/javascript">
                                    (function () {
                                        if (window.CHITIKA === undefined) {
                                            window.CHITIKA = {'units': []};
                                        }
                                        ;
                                        var unit = {
                                            "calltype": "async[2]",
                                            "publisher": "taar1",
                                            "width": 550,
                                            "height": 250,
                                            "sid": "Chitika Default"
                                        };
                                        var placement_id = window.CHITIKA.units.length;
                                        window.CHITIKA.units.push(unit);
                                        document.write('<div id="chitikaAdBlock-' + placement_id + '"></div>');
                                    }());
                                </script>

                                <br/>
                                <script type="text/javascript" src="//cdn.chitika.net/getads.js" async></script>

                            </div>
                        </td>
                    </tr>

                    <tr>
                        <td style="background-image: url(/pics/tables/left.gif);"></td>
                        <td bgcolor="#FFFFFF">

                            <table class="invisible">
                                <tr>
                                    <td style="horiz-align: left; width: 300px;">
                                        <div id="search_header_title">Search Games:</div>
                                        <div style="margin-top: 8px; margin-bottom: 8px; position: relative;">
                                            <form action="/search.php" method="GET" id="searchForm" role="search" aria-label="Search games and cheats">
                                                <label for="searchInput" style="position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;">Search for games or cheats</label>
                                                <input type="search"
                                                       id="searchInput"
                                                       name="q"
                                                       placeholder="Search for games or cheats..."
                                                       autocomplete="off"
                                                       style="width: 280px; padding: 6px 10px; border: 1px solid #5aa3b1; border-radius: 4px; font-size: 13px;">
                                                <div id="searchResults" class="search-autocomplete"></div>
                                            </form>
                                        </div>
                                    </td>
                                    <td style="horiz-align: center; width: 200px; padding-left: 20px;">
                                        <div id="search_header_title">Jump to platform:</div>
                                        <div style="margin-top: 8px; margin-bottom: 8px">
                                            <form action="/find.php" method="GET" target="searchWindow">
                                                <select size="1" name="system"
                                                        onChange="window.open(this.options[this.selectedIndex].value,'_top')"
                                                        style="width: 180px;">
                                                    <OPTION value="" selected>Select platform...
                                                    </OPTION>
                                                    <OPTION value="">- - - - - - - - -
                                                    </OPTION>

                                                    <OPTION value="/systems/index.php?s=c64">C64</OPTION>
<OPTION value="/systems/index.php?s=dreamcast">Dream Cast</OPTION>
<OPTION value="/systems/index.php?s=gameboy">Game Boy</OPTION>
<OPTION value="/systems/index.php?s=gameboyadvance">Game Boy Advance</OPTION>
<OPTION value="/systems/index.php?s=gamegear">Game Gear</OPTION>
<OPTION value="/systems/index.php?s=gamecube">GameCube</OPTION>
<OPTION value="/systems/index.php?s=jaguar">Jaguar</OPTION>
<OPTION value="/systems/index.php?s=lynx">Lynx</OPTION>
<OPTION value="/systems/index.php?s=mac">Macintosh</OPTION>
<OPTION value="/systems/index.php?s=mastersystem">Master System</OPTION>
<OPTION value="/systems/index.php?s=megadrive">Mega Drive / Sega Genesis</OPTION>
<OPTION value="/systems/index.php?s=ngage">N-Gage</OPTION>
<OPTION value="/systems/index.php?s=neogeo">Neo Geo</OPTION>
<OPTION value="/systems/index.php?s=neogeopocket">Neo Geo Pocket</OPTION>
<OPTION value="/systems/index.php?s=nes">NES</OPTION>
<OPTION value="/systems/index.php?s=nintendo3ds">Nintendo 3DS</OPTION>
<OPTION value="/systems/index.php?s=nintendo64">Nintendo 64</OPTION>
<OPTION value="/systems/index.php?s=nintendods">Nintendo DS</OPTION>
<OPTION value="/systems/index.php?s=switch">Nintendo Switch</OPTION>
<OPTION value="/systems/index.php?s=switch2">Nintendo Switch 2</OPTION>
<OPTION value="/systems/index.php?s=pc">PC</OPTION>
<OPTION value="/systems/index.php?s=playstation1">PlayStation 1</OPTION>
<OPTION value="/systems/index.php?s=playstation2">PlayStation 2</OPTION>
<OPTION value="/systems/index.php?s=playstation3">PlayStation 3</OPTION>
<OPTION value="/systems/index.php?s=playstation4">PlayStation 4</OPTION>
<OPTION value="/systems/index.php?s=playstation5">PlayStation 5</OPTION>
<OPTION value="/systems/index.php?s=playstationportable">PlayStation Portable</OPTION>
<OPTION value="/systems/index.php?s=playstationvita">PlayStation Vita</OPTION>
<OPTION value="/systems/index.php?s=segasaturn">Sega Saturn</OPTION>
<OPTION value="/systems/index.php?s=snes">SNES</OPTION>
<OPTION value="/systems/index.php?s=virtualboy">Virtual Boy</OPTION>
<OPTION value="/systems/index.php?s=wii">Wii</OPTION>
<OPTION value="/systems/index.php?s=wiiu">Wii U</OPTION>
<OPTION value="/systems/index.php?s=wonderswan">Wonderswan</OPTION>
<OPTION value="/systems/index.php?s=xbox">Xbox</OPTION>
<OPTION value="/systems/index.php?s=xbox360">Xbox 360</OPTION>
<OPTION value="/systems/index.php?s=xboxone">Xbox One</OPTION>
<OPTION value="/systems/index.php?s=xboxseriesx">Xbox Series X/S</OPTION>
                                                </select>
                                            </form>
                                        </div>
                                    </td>
                                    <td style="horiz-align: right; width: 200px;">
                                        <div id="search_header_title">Quick Jump:</div>

                                        <div style="margin-top: 8px">
                                        <a href="/systems/index.php?s=switch"><img width="70" height="33" src="/systems/img/39.jpg" alt="Nintendo Switch Cheats"></a>&nbsp;&nbsp;
                                        <a href="/systems/index.php?s=playstation4"><img width="50" height="44" src="/systems/img/37.jpg" alt="PlayStation 4 Cheats"></a>&nbsp;&nbsp;
                                        <a href="/systems/index.php?s=xboxone"><img width="50" height="27" src="/systems/img/38.jpg" alt="Xbox One Cheats"></a>
                                        </div>
                                    </td>
                                </tr>
                            </table>

                            <script>
                            // Live search autocomplete
                            (function() {
                                var searchInput = document.getElementById('searchInput');
                                var searchResults = document.getElementById('searchResults');
                                var searchTimeout;

                                searchInput.addEventListener('input', function() {
                                    clearTimeout(searchTimeout);
                                    var query = this.value.trim();

                                    if (query.length < 2) {
                                        searchResults.style.display = 'none';
                                        return;
                                    }

                                    searchTimeout = setTimeout(function() {
                                        fetch('/search_autocomplete.php?q=' + encodeURIComponent(query))
                                            .then(response => response.json())
                                            .then(data => {
                                                if (data.results && data.results.length > 0) {
                                                    var html = '';
                                                    data.results.forEach(function(item) {
                                                        html += '<div class="search-result-item" onclick="window.location=\'' +
                                                                '/display/family.php?gameid=' + item.id + '\'">' +
                                                                '<strong>' + item.name + '</strong> <span class="search-system">(' + item.system + ')</span>' +
                                                                '</div>';
                                                    });
                                                    searchResults.innerHTML = html;
                                                    searchResults.style.display = 'block';
                                                } else {
                                                    searchResults.style.display = 'none';
                                                }
                                            });
                                    }, 300);
                                });

                                // Hide results when clicking outside
                                document.addEventListener('click', function(e) {
                                    if (!searchInput.contains(e.target) && !searchResults.contains(e.target)) {
                                        searchResults.style.display = 'none';
                                    }
                                });
                            })();
                            </script>


                        </td>
                        <td style="background-image: url(/pics/tables/right.gif);"></td>
                    </tr>

                    <tr>
                        <td class="bottom-left-white"></td>
                        <td class="bottom-middle-white">&nbsp;</td>
                        <td class="bottom-right-white"></td>
                    </tr>
                </table>
                </header>

                <main role="main" id="main-content">
                <table class="invisible">
                    <tr>
                        <td class="top-left-gray"></td>
                        <td class="top-middle-gray"></td>
                        <td class="top-right-gray"></td>
                    </tr>

                    <tr>
                        <td style="background-image: url(/pics/tables/left-gray.gif);"></td>
                        <td bgcolor="#CADECA">

<h1 style="position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;">Video Game Cheats, Codes &amp; Walkthroughs - cheat-database.com</h1>
<div style="text-align:center;">
    <table cellspacing="2" class="invisible">
        <tr>
            <td colspan="2">
                                    
<!-- Table Head -->
<table cellspacing="0" cellpadding="0" border="0" width="600">
<tr>
<td class="top-left-cyanbubble"></td>
<td class="top-middle-cyanbubble">
    <table id="inbubble">
    <tr>
        <td style="text-align:left;">
            <h2 style="font-size: inherit; margin: 0;">:: Xbox One Cheats ::</h2>
        </td>
    </tr>
    </table>
</td>
<td class="top-right-cyanbubble"></td>
</tr>

<!-- Spacer Row -->
<tr>
<td height="8" style="background-image: url(/pics/tables/left.gif);"></td>
<td height="8" style="background-color:#FFFFFF;"></td>
<td height="8" style="background-image: url(/pics/tables/right.gif);"></td>
</tr>

<!-- Table Body -->
<tr>
<td style="background-image: url(/pics/tables/left.gif);"></td>
<td style="background-color:#FFFFFF;text-align:left;">

    <!-- Actual Cheats Content -->
    <table id="inbubble-left">
        <tr>
                <td width="50%">
                    <span id="new_cheats_game">
                        <a href="/display/family.php?gameid=48119">
                            0 Degrees                        </a>
                    </span><br>
                    <span id="new_cheats_cheat">
                        <a href="/display/cheat.php?id=179166">
                            Various Achievements                        </a>
                    </span>
                                    </td>
                        <td width="50%">
                    <span id="new_cheats_game">
                        <a href="/display/family.php?gameid=48120">
                            2 Synchro Hedgehogs                        </a>
                    </span><br>
                    <span id="new_cheats_cheat">
                        <a href="/display/cheat.php?id=179165">
                            Various Achievements                        </a>
                    </span>
                                    </td>
            </tr>
        <tr>
                <td width="50%">
                    <span id="new_cheats_game">
                        <a href="/display/family.php?gameid=48121">
                            9 Monkeys of Shaolin                        </a>
                    </span><br>
                    <span id="new_cheats_cheat">
                        <a href="/display/cheat.php?id=179164">
                            Various Achievement                        </a>
                    </span>
                                    </td>
                        <td width="50%">
                    <span id="new_cheats_game">
                        <a href="/display/family.php?gameid=48122">
                            A Day Without Me                        </a>
                    </span><br>
                    <span id="new_cheats_cheat">
                        <a href="/display/cheat.php?id=179163">
                            Various Achievements                        </a>
                    </span>
                                    </td>
            </tr>
        <tr>
                <td width="50%">
                    <span id="new_cheats_game">
                        <a href="/display/family.php?gameid=48123">
                            A Little Lily Princess                        </a>
                    </span><br>
                    <span id="new_cheats_cheat">
                        <a href="/display/cheat.php?id=179162">
                            Various Achievements                        </a>
                    </span>
                                    </td>
                        <td width="50%">
                    <span id="new_cheats_game">
                        <a href="/display/family.php?gameid=48124">
                            A Short Hike                        </a>
                    </span><br>
                    <span id="new_cheats_cheat">
                        <a href="/display/cheat.php?id=179161">
                            Various Achievements                        </a>
                    </span>
                                    </td>
            </tr>
        <tr>
                <td width="50%">
                    <span id="new_cheats_game">
                        <a href="/display/family.php?gameid=48125">
                            A Western Drama                        </a>
                    </span><br>
                    <span id="new_cheats_cheat">
                        <a href="/display/cheat.php?id=179160">
                            Various Achievements                        </a>
                    </span>
                                    </td>
                        <td width="50%">
                    <span id="new_cheats_game">
                        <a href="/display/family.php?gameid=48126">
                            Acalesia                        </a>
                    </span><br>
                    <span id="new_cheats_cheat">
                        <a href="/display/cheat.php?id=179159">
                            Various Achievements                        </a>
                    </span>
                                    </td>
            </tr>
            </table>

</td>
<td style="background-image: url(/pics/tables/right.gif);"></td>
</tr>

<!-- Table Footer -->
<tr>
<td class="bottom-left-white"></td>
<td class="bottom-middle-white">&nbsp;</td>
<td class="bottom-right-white"></td>
</tr>
</table>
                                    
<!-- Table Head -->
<table cellspacing="0" cellpadding="0" border="0" width="600">
<tr>
<td class="top-left-cyanbubble"></td>
<td class="top-middle-cyanbubble">
    <table id="inbubble">
    <tr>
        <td style="text-align:left;">
            <h2 style="font-size: inherit; margin: 0;">:: Nintendo 3DS Cheats ::</h2>
        </td>
    </tr>
    </table>
</td>
<td class="top-right-cyanbubble"></td>
</tr>

<!-- Spacer Row -->
<tr>
<td height="8" style="background-image: url(/pics/tables/left.gif);"></td>
<td height="8" style="background-color:#FFFFFF;"></td>
<td height="8" style="background-image: url(/pics/tables/right.gif);"></td>
</tr>

<!-- Table Body -->
<tr>
<td style="background-image: url(/pics/tables/left.gif);"></td>
<td style="background-color:#FFFFFF;text-align:left;">

    <!-- Actual Cheats Content -->
    <table id="inbubble-left">
        <tr>
                <td width="50%">
                    <span id="new_cheats_game">
                        <a href="/display/family.php?gameid=44440">
                            50 Classic Games 3D                        </a>
                    </span><br>
                    <span id="new_cheats_cheat">
                        <a href="/display/cheat.php?id=174963">
                            Air Hockey And Battle On The Sea                        </a>
                    </span>
                                    </td>
                        <td width="50%">
                    <span id="new_cheats_game">
                        <a href="/display/family.php?gameid=44443">
                            Battleminerz                        </a>
                    </span><br>
                    <span id="new_cheats_cheat">
                        <a href="/display/cheat.php?id=174960">
                            Three &apos;missing&apos; Blocks                        </a>
                    </span>
                                    </td>
            </tr>
        <tr>
                <td width="50%">
                    <span id="new_cheats_game">
                        <a href="/display/family.php?gameid=30019">
                            Chain Blaster                        </a>
                    </span><br>
                    <span id="new_cheats_cheat">
                        <a href="/display/cheat.php?id=174958">
                            Boss Battles                        </a>
                    </span>
                                    </td>
                        <td width="50%">
                    <span id="new_cheats_game">
                        <a href="/display/family.php?gameid=44450">
                            Disney Planes                        </a>
                    </span><br>
                    <span id="new_cheats_cheat">
                        <a href="/display/cheat.php?id=174951">
                            Basic Strategy Hints                        </a>
                    </span>
                                    </td>
            </tr>
        <tr>
                <td width="50%">
                    <span id="new_cheats_game">
                        <a href="/display/family.php?gameid=27094">
                            Fractured Soul: Deep Void                        </a>
                    </span><br>
                    <span id="new_cheats_cheat">
                        <a href="/display/cheat.php?id=174946">
                            General Gameplay Tips                        </a>
                    </span>
                                    </td>
                        <td width="50%">
                    <span id="new_cheats_game">
                        <a href="/display/family.php?gameid=44456">
                            Gyakuten Saiban 5                        </a>
                    </span><br>
                    <span id="new_cheats_cheat">
                        <a href="/display/cheat.php?id=174944">
                            Animation Gallery                        </a>
                    </span>
                                    </td>
            </tr>
        <tr>
                <td width="50%">
                    <span id="new_cheats_game">
                        <a href="/display/family.php?gameid=27711">
                            Johnny Kung Fu                        </a>
                    </span><br>
                    <span id="new_cheats_cheat">
                        <a href="/display/cheat.php?id=174937">
                            Boss Battles And Lasers                        </a>
                    </span>
                                    </td>
                        <td width="50%">
                    <span id="new_cheats_game">
                        <a href="/display/family.php?gameid=44473">
                            New Art Academy                        </a>
                    </span><br>
                    <span id="new_cheats_cheat">
                        <a href="/display/cheat.php?id=174925">
                            Various Gameplay Tips                        </a>
                    </span>
                                    </td>
            </tr>
            </table>

</td>
<td style="background-image: url(/pics/tables/right.gif);"></td>
</tr>

<!-- Table Footer -->
<tr>
<td class="bottom-left-white"></td>
<td class="bottom-middle-white">&nbsp;</td>
<td class="bottom-right-white"></td>
</tr>
</table>
                                    
<!-- Table Head -->
<table cellspacing="0" cellpadding="0" border="0" width="600">
<tr>
<td class="top-left-cyanbubble"></td>
<td class="top-middle-cyanbubble">
    <table id="inbubble">
    <tr>
        <td style="text-align:left;">
            <h2 style="font-size: inherit; margin: 0;">:: Nintendo Switch Cheats ::</h2>
        </td>
    </tr>
    </table>
</td>
<td class="top-right-cyanbubble"></td>
</tr>

<!-- Spacer Row -->
<tr>
<td height="8" style="background-image: url(/pics/tables/left.gif);"></td>
<td height="8" style="background-color:#FFFFFF;"></td>
<td height="8" style="background-image: url(/pics/tables/right.gif);"></td>
</tr>

<!-- Table Body -->
<tr>
<td style="background-image: url(/pics/tables/left.gif);"></td>
<td style="background-color:#FFFFFF;text-align:left;">

    <!-- Actual Cheats Content -->
    <table id="inbubble-left">
        <tr>
                <td width="50%">
                    <span id="new_cheats_game">
                        <a href="/display/family.php?gameid=47213">
                            Travis Strikes Again: No More Heroes                        </a>
                    </span><br>
                    <span id="new_cheats_cheat">
                        <a href="/display/cheat.php?id=184805">
                            T-shirts                        </a>
                    </span>
                                    </td>
                        <td width="50%">
                    <span id="new_cheats_game">
                        <a href="/display/family.php?gameid=47212">
                            Street Fighter 30th Anniversary Collection                        </a>
                    </span><br>
                    <span id="new_cheats_cheat">
                        <a href="/display/cheat.php?id=184763">
                            Street Fighter Alpha - Unlock Final Battle Mode                        </a>
                    </span>
                                    </td>
            </tr>
        <tr>
                <td width="50%">
                    <span id="new_cheats_game">
                        <a href="/display/family.php?gameid=46006">
                            Q.U.B.E. 2                        </a>
                    </span><br>
                    <span id="new_cheats_cheat">
                        <a href="/display/cheat.php?id=184727">
                            Puzzle Solutions                        </a>
                    </span>
                                    </td>
                        <td width="50%">
                    <span id="new_cheats_game">
                        <a href="/display/family.php?gameid=46762">
                            Pokemon Shield                        </a>
                    </span><br>
                    <span id="new_cheats_cheat">
                        <a href="/display/cheat.php?id=184719">
                            Secret Charms                        </a>
                    </span>
                                    </td>
            </tr>
        <tr>
                <td width="50%">
                    <span id="new_cheats_game">
                        <a href="/display/family.php?gameid=46005">
                            Inside                        </a>
                    </span><br>
                    <span id="new_cheats_cheat">
                        <a href="/display/cheat.php?id=184627">
                            Alternate Ending                        </a>
                    </span>
                                    </td>
                        <td width="50%">
                    <span id="new_cheats_game">
                        <a href="/display/family.php?gameid=46003">
                            Creature in the Well                        </a>
                    </span><br>
                    <span id="new_cheats_cheat">
                        <a href="/display/cheat.php?id=184546">
                            P.f.s Thinking Cap A.k.a 215,000 Energy Door                        </a>
                    </span>
                                    </td>
            </tr>
        <tr>
                <td width="50%">
                    <span id="new_cheats_game">
                        <a href="/display/family.php?gameid=42051">
                            Harvest Moon: Light of Hope                        </a>
                    </span><br>
                    <span id="new_cheats_cheat">
                        <a href="/display/cheat.php?id=177739">
                            Bamboo Shoots                        </a>
                    </span>
                                    </td>
                        <td width="50%">
                    <span id="new_cheats_game">
                        <a href="/display/family.php?gameid=42059">
                            Overcooked! 2                        </a>
                    </span><br>
                    <span id="new_cheats_cheat">
                        <a href="/display/cheat.php?id=177738">
                            Clean Plates                        </a>
                    </span>
                                    </td>
            </tr>
            </table>

</td>
<td style="background-image: url(/pics/tables/right.gif);"></td>
</tr>

<!-- Table Footer -->
<tr>
<td class="bottom-left-white"></td>
<td class="bottom-middle-white">&nbsp;</td>
<td class="bottom-right-white"></td>
</tr>
</table>
                            </td>
            <td valign="top" align="right" rowspan="4">
                <table cellspacing="0" cellpadding="0" border="0" width="160">
<tr>
<td class="top-left-cyanbubble"></td>
<td class="top-middle-cyanbubble"><table id="inbubble"><tr><td style="text-align:left;"><h4>:: Trophies ::</h4></td></tr></table></td>
<td class="top-right-cyanbubble"></td>
</tr>
<tr>
<td height="8" width="10" style="width:10px;min-width:10px;max-width:10px;background-image:url(/pics/tables/left.gif);background-repeat:repeat-y;"></td>
<td height="8" style="background-color:#FFFFFF;"></td>
<td height="8" width="10" style="width:10px;min-width:10px;max-width:10px;background-image:url(/pics/tables/right.gif);background-repeat:repeat-y;"></td>
</tr>
<tr>
<td width="10" style="width:10px;min-width:10px;max-width:10px;background-image:url(/pics/tables/left.gif);background-repeat:repeat-y;"></td>
<td style="background-color:#FFFFFF;text-align:left;overflow:hidden;" >
<div style="padding:5px 6px 6px 6px; font-size:12px; line-height:1.4;">
    <label for="trophy_toggle" style="cursor:pointer; display:flex; align-items:center; gap:8px;">
        <input type="checkbox" id="trophy_toggle" checked               style="width:13px; height:13px; margin:0; cursor:pointer; flex-shrink:0; accent-color:#95CACA;">
        <span id="trophy_label">Show trophies &amp; achievements</span>
    </label>
</div>

<script>
(function () {
    var checkbox = document.getElementById('trophy_toggle');
    var endpoint = "\/set-trophy-pref.php";

    checkbox.addEventListener('change', function () {
        var isOn = checkbox.checked; // true = show, false = hide
        var body = new URLSearchParams();
        body.append('hide_trophies', isOn ? '1' : '0');

        fetch(endpoint, {
            method: 'POST',
            headers: {'Content-Type': 'application/x-www-form-urlencoded'},
            body: body.toString()
        }).then(function () {
            window.location.reload();
        }).catch(function () {
            window.location.reload();
        });
    });
}());
</script>
</td><td width="10" style="width:10px;min-width:10px;max-width:10px;background-image:url(/pics/tables/right.gif);background-repeat:repeat-y;"></td>
</tr>
<tr>
<td class="bottom-left-white"></td>
<td class="bottom-middle-white">&nbsp;</td>
<td class="bottom-right-white"></td>
</tr>
</table>
<table cellspacing="0" cellpadding="0" border="0" width="160">
<tr>
<td class="top-left-cyanbubble"></td>
<td class="top-middle-cyanbubble"><table id="inbubble"><tr><td style="text-align:left;"><h4>:: New members ::</h4></td></tr></table></td>
<td class="top-right-cyanbubble"></td>
</tr>
<tr>
<td height="8" width="10" style="width:10px;min-width:10px;max-width:10px;background-image:url(/pics/tables/left.gif);background-repeat:repeat-y;"></td>
<td height="8" style="background-color:#FFFFFF;"></td>
<td height="8" width="10" style="width:10px;min-width:10px;max-width:10px;background-image:url(/pics/tables/right.gif);background-repeat:repeat-y;"></td>
</tr>
<tr>
<td width="10" style="width:10px;min-width:10px;max-width:10px;background-image:url(/pics/tables/left.gif);background-repeat:repeat-y;"></td>
<td style="background-color:#FFFFFF;text-align:left;overflow:hidden;" >
<b>&#9642; <a href="/about?userid=39087" style="display:inline-block;max-width:130px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;vertical-align:bottom;">Jeanjeniff&hellip;</a></b><br><small>&nbsp;&nbsp;2026-02-19 - 04:25</small><br>
<b>&#9642; <a href="/about?userid=39086" style="display:inline-block;max-width:130px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;vertical-align:bottom;">qSdCcPjb</a></b><br><small>&nbsp;&nbsp;2026-02-17 - 06:07</small><br>
<b>&#9642; <a href="/about?userid=39085" style="display:inline-block;max-width:130px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;vertical-align:bottom;">Jessepaync</a></b><br><small>&nbsp;&nbsp;2026-02-14 - 06:12</small><br>
<b>&#9642; <a href="/about?userid=39084" style="display:inline-block;max-width:130px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;vertical-align:bottom;">JohnLarge</a></b><br><small>&nbsp;&nbsp;2026-02-10 - 10:45</small><br>
<b>&#9642; <a href="/about?userid=39083" style="display:inline-block;max-width:130px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;vertical-align:bottom;">BvhTGHHhmN&hellip;</a></b><br><small>&nbsp;&nbsp;2026-02-06 - 17:57</small><br>
</td><td width="10" style="width:10px;min-width:10px;max-width:10px;background-image:url(/pics/tables/right.gif);background-repeat:repeat-y;"></td>
</tr>
<tr>
<td class="bottom-left-white"></td>
<td class="bottom-middle-white">&nbsp;</td>
<td class="bottom-right-white"></td>
</tr>
</table>
<table cellspacing="0" cellpadding="0" border="0" width="160">
<tr>
<td class="top-left-cyanbubble"></td>
<td class="top-middle-cyanbubble"><table id="inbubble"><tr><td style="text-align:left;"><h4>:: Login ::</h4></td></tr></table></td>
<td class="top-right-cyanbubble"></td>
</tr>
<tr>
<td height="8" width="10" style="width:10px;min-width:10px;max-width:10px;background-image:url(/pics/tables/left.gif);background-repeat:repeat-y;"></td>
<td height="8" style="background-color:#FFFFFF;"></td>
<td height="8" width="10" style="width:10px;min-width:10px;max-width:10px;background-image:url(/pics/tables/right.gif);background-repeat:repeat-y;"></td>
</tr>
<tr>
<td width="10" style="width:10px;min-width:10px;max-width:10px;background-image:url(/pics/tables/left.gif);background-repeat:repeat-y;"></td>
<td style="background-color:#FFFFFF;text-align:left;overflow:hidden;" >
<form name="login" action="/" method="POST" class="login-form">
	<div class="login-field">
		<label>Username:</label>
		<input type="text" name="username" size="12">
	</div>
	<input type="hidden" name="login" value="login">
	<div class="login-field">
		<label>Password:</label>
		<input type="password" name="pw" size="12">
	</div>
	<div class="login-field">
		<input type="submit" name="login" value="Login">
	</div>
	<a href="/register">&#9642;&nbsp;Free Register</a><br>
	<a href="/members/sendpassword.php">&#9642;&nbsp;Forgot password?</a><br>
</form>
</td><td width="10" style="width:10px;min-width:10px;max-width:10px;background-image:url(/pics/tables/right.gif);background-repeat:repeat-y;"></td>
</tr>
<tr>
<td class="bottom-left-white"></td>
<td class="bottom-middle-white">&nbsp;</td>
<td class="bottom-right-white"></td>
</tr>
</table>
<table cellspacing="0" cellpadding="0" border="0" width="160">
<tr>
<td class="top-left-cyanbubble"></td>
<td class="top-middle-cyanbubble"><table id="inbubble"><tr><td style="text-align:left;"><h4>:: Affiliates ::</h4></td></tr></table></td>
<td class="top-right-cyanbubble"></td>
</tr>
<tr>
<td height="8" width="10" style="width:10px;min-width:10px;max-width:10px;background-image:url(/pics/tables/left.gif);background-repeat:repeat-y;"></td>
<td height="8" style="background-color:#FFFFFF;"></td>
<td height="8" width="10" style="width:10px;min-width:10px;max-width:10px;background-image:url(/pics/tables/right.gif);background-repeat:repeat-y;"></td>
</tr>
<tr>
<td width="10" style="width:10px;min-width:10px;max-width:10px;background-image:url(/pics/tables/left.gif);background-repeat:repeat-y;"></td>
<td style="background-color:#FFFFFF;text-align:left;overflow:hidden;" >

    <div align="center">
        <a href="http://www.zeldaeurope.de" target="_blank"><img src="http://www.zeldaeurope.de/include/images/newimages/ZE_Button_01.gif" style="border: 0px;" alt="Zelda Europe"> </a><br/>
    </div>

    <ul id="affiliates">
        <li><a href="http://www.wii-u-portal.de/" target="_blank" title="Wii-U News auf dem Wii-U-Portal Blog">Wii-U News</a></li>
        <li><a href="http://www.sega-portal.de/" target="_blank" title="SEGA News auf dem SEGA-Portal Blog">SEGA News</a></li>
        <li><a href="http://www.level80.co.uk/" target="_blank">Level 80 - Computer game cheats</a></li>
    </ul>

</td><td width="10" style="width:10px;min-width:10px;max-width:10px;background-image:url(/pics/tables/right.gif);background-repeat:repeat-y;"></td>
</tr>
<tr>
<td class="bottom-left-white"></td>
<td class="bottom-middle-white">&nbsp;</td>
<td class="bottom-right-white"></td>
</tr>
</table>
            </td>
        </tr>
    </table>
</div>

</td>
<td style="background-image: url(/pics/tables/right-gray.gif);">
</td>
</tr>

<tr>
    <td class="bottom-left-gray"></td>
    <td class="bottom-middle-gray">&nbsp;</td>
    <td class="bottom-right-gray"></td>
</tr>
</table>
</main>

<!-- unsichtbare tabelle -->
</td>
</tr>
<tr>
    <td colspan="2">
        <footer role="contentinfo">
        <div align="center">
            <div style="text-align: center; font-size: 13px;">
    <p class="white">&copy; 2026 cheat-database.com - Free Video Game Cheats, Codes &amp; Walkthroughs</p>
    
    <a class="white" href="/privacy-policy.php">Privacy Policy</a> |
    <a class="white" href="/terms-and-conditions.php">Terms &amp; Conditions</a> |
    <a class="white" href="/contact">Contact</a> |
    <a class="white" href="/links.php">Links</a> |
    <a class="white" href="/apk/" title="Download Android App"><svg width="14" height="14" viewBox="0 0 24 24" fill="#3ddc84" style="vertical-align: middle; margin-right: 3px;" xmlns="http://www.w3.org/2000/svg"><path d="M6 18c0 .55.45 1 1 1h1v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V19h2v3.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V19h1c.55 0 1-.45 1-1V8H6v10zM3.5 8C2.67 8 2 8.67 2 9.5v7c0 .83.67 1.5 1.5 1.5S5 17.33 5 16.5v-7C5 8.67 4.33 8 3.5 8zm17 0c-.83 0-1.5.67-1.5 1.5v7c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5v-7c0-.83-.67-1.5-1.5-1.5zm-4.97-5.84l1.3-1.3c.2-.2.2-.51 0-.71-.2-.2-.51-.2-.71 0l-1.48 1.48C13.85 1.23 12.95 1 12 1c-.96 0-1.86.23-2.66.63L7.85.15c-.2-.2-.51-.2-.71 0-.2.2-.2.51 0 .71l1.31 1.31C7.2 3.13 6 5.02 6 7h12c0-2.21-1.2-4.15-2.97-5.18-.15-.09-.3-.17-.46-.25 0 0-.01-.01-.04-.01zM10 5H9V4h1v1zm5 0h-1V4h1v1z"/></svg>Android App</a> <br/>
    <a class="white" href="http://www.ukon.ch" target="_blank" rel="noopener noreferrer">Ukon Shop</a> |
    <a class="white" href="https://soundcloud.com/e-nature/" target="_blank" rel="noopener noreferrer">E-Nature Trance</a>
    
</div>        </div>
        </footer>
    </td>
</tr>
</table>
<!-- unsichtbare tabelle -->
</div>
<div style="display: inline-block; width: 160px; vertical-align: top; padding-left: 10px; padding-top: 140px;">
    <!-- Adsterra Native Vertical Banner -->
    <script async="async" data-cfasync="false" src="https://pl28688378.effectivegatecpm.com/dbedf0df7857448a1d8b6c4d4d440c42/invoke.js"></script>
    <div id="container-dbedf0df7857448a1d8b6c4d4d440c42"></div>
</div>

<!-- Adsterra Popunder Ad (temporär deaktiviert) -->
<!-- <script src="https://pl28688344.effectivegatecpm.com/9c/d6/e5/9cd6e56c6effa943952791fc84e92d95.js"></script> -->

<!--
=============================================================================
  OGURY — FLOATING VIDEO THUMBNAIL AD (180×180)
=============================================================================
  Dashboard: https://console.ogury.com
             → Assets → OGY-9D832245FCA6 → Ad Units

  AD FORMAT — what it looks like on the site:
    A small square video player (max 180×180 px) that floats fixed in the
    BOTTOM-RIGHT corner of the viewport on EVERY page of the site (loaded
    via inc/foot.inc). It stays in the corner as the user scrolls.
    A close (×) button appears after 8 seconds or when 80% of the video
    has played — whichever comes first. Ogury controls that timing from
    their dashboard, not from our code.

  QUICK REFERENCE:
    Asset Key   : OGY-9D832245FCA6               (our site/property ID)
    Ad Unit ID  : wd-tg-vdeo-cheatd-domin-hp8dpv8wtxbw  (this video slot)
    Position    : bottom-right, 10px from each edge
=============================================================================
-->
<script type="text/javascript">
    // OG_ad_units is shared — both this file and ogury_banner.inc push to the
    // same array. The Presage SDK processes all entries when it loads.
    window.top.OG_ad_units = window.top.OG_ad_units || [];
    window.top.OG_ad_units.push({
        ad_unit_id: 'wd-tg-vdeo-cheatd-domin-hp8dpv8wtxbw', // floating video slot
        asset_key:  'OGY-9D832245FCA6',                      // our publisher/site ID
        params: {
            gravity:    'BOTTOM_RIGHT', // anchor corner of the viewport
            x_margin:   10,             // px from right edge
            y_margin:   10,             // px from bottom edge
            max_width:  180,            // thumbnail width cap in px
            max_height: 180             // thumbnail height cap in px
        }
    });
</script>
<!-- Ogury Presage SDK — loaded async so it doesn't block page rendering -->
<script type="text/javascript" src="https://mwtw.presage.io/v1/tag.js" async></script>

</body>
</html>
