Page 1 of 1

Any cheats for [cdi]?

Posted: Mon Sep 18, 2023 3:03 am
by SevenFalcons
Heyo, i know the Philips CD-I is a system so bad it kinda explains its lack of attention emulation-wise, but i think it would still be cool to see some cheats done for the most popular releases for the system in MAME, the 3 zelda games are too frustrating in their mechanics :cry:
Could these cheat codes be done for the following games?

-Link: The Faces of Evil [linkfoe] (Infinite Health, Infinite Rupees, Invincibility if possible)
-Zelda: The Wand of Gamelon [zeldgam] (Infinite Health, Infinite Rupees, Invincibility if possible)
-Zelda's Adventure [zeldaadv] (Infinite Health, Infinite Rupees, Invincibility if possible)
-Hotel Mario [hotmario] (Infinite Lives, Infinite Time, Invincibility if possible)

Cheers! :D :D :D

Re: Any cheats for [cdi]?

Posted: Sun Sep 24, 2023 2:50 pm
by orescify
...

Re: Any cheats for [cdi]?

Posted: Sun Sep 24, 2023 3:46 pm
by Pugsy
cdi is an awful system to play and make cheats for...

Here are some cheat for hotmario+hotmariou:-

Code: Select all

<mamecheat version="1">

  <cheat desc="Infinite Time">
  <script state="on">
    <action>temp0 =maincpu.pw@274234</action>
  </script>
  <script state="run">
    <action>maincpu.pw@274234=6002</action> <!-- Cheat made by Pugsy -->
  </script>
  <script state="off">
    <action>maincpu.pw@274234=temp0 </action>
  </script>
  </cheat>

  <cheat desc="Collision Invincibility (WIP)">
    <script state="on">
      <action>temp0 =maincpu.pw@272CD0</action>
      <action>temp1 =maincpu.pw@27368C</action>
      <action>temp2 =maincpu.pb@273190</action>
    </script>
    <script state="run">
      <action>maincpu.pw@272CD0=60FA</action> <!-- Cheat made by Pugsy, Walking -->
      <action>maincpu.pw@27368C=60FA</action> <!-- Jump from Platform Beneath -->
      <action>maincpu.pb@273190=60</action> <!-- Jump kills reqardless of takeoff point -->
    </script>
    <script state="off">
      <action>maincpu.pw@272CD0=temp0 </action>
      <action>maincpu.pw@27368C=temp1 </action>
      <action>maincpu.pb@273190=temp2 </action>
    </script>
  </cheat>

  <cheat desc="P1 Infinite Lives">
    <script state="run">
      <action>maincpu.pw@07FE8A=0063</action>
    </script>
  </cheat>

  <cheat desc="P2 Infinite Lives">
    <script state="run">
      <action>maincpu.pw@07FEA6=0063</action>
    </script>
  </cheat>

</mamecheat>
<!-- Cheat file downloaded from http://www.mamecheat.co.uk, see cheat.txt for list of contributors. -->