[a2600/pacman+] Pac-Man

This forum is for posting cheats for any non-arcade game in M.A.M.E. ( aka the M.E.S.S. games ) including any softwarelist game. Requests will be fulfilled here....but please keep the requests to the requests forum.
Post Reply
einstein95
Posts: 17
Joined: Sun Aug 16, 2015 1:15 pm

[a2600/pacman+] Pac-Man

Post by einstein95 »

I put more work into this than I needed to.

pacman, pacmanc, pacmanc1, pacmand, pacmane

Code: Select all

  <cheat desc="Infinite Lives">
    <script state="run">
      <action>maincpu.pb@0098=09</action>
    </script>
  </cheat>

  <cheat desc="Invincibility">
    <script state="on">
      <action>temp0=maincpu.pb@00E7</action>
    </script>
    <script state="run">
      <action>maincpu.pb@00E7=20</action>
    </script>
    <script state="off">
      <action>maincpu.pb@00E7=temp0</action>
    </script>
  </cheat>

  <cheat desc="Keep Ghosts in Box"> <comment>Do NOT use with the Make Ghosts Edible cheat.</comment>
    <script state="on">
      <action>temp0=maincpu.pb@00B2</action>
      <action>temp1=maincpu.pb@00B3</action>
      <action>temp2=maincpu.pb@00B4</action>
      <action>temp3=maincpu.pb@00B5</action>
      <action>temp4=maincpu.pb@00B7</action>
      <action>temp5=maincpu.pb@00B8</action>
      <action>temp6=maincpu.pb@00B9</action>
      <action>temp7=maincpu.pb@00BA</action>
    </script>
    <script state="run">
      <action>maincpu.pb@00B2=4C</action> <!-- Ghost 1 X -->
      <action>maincpu.pb@00B3=4C</action> <!-- Ghost 2 X -->
      <action>maincpu.pb@00B4=4C</action> <!-- Ghost 3 X -->
      <action>maincpu.pb@00B5=4C</action> <!-- Ghost 4 X -->

      <action>maincpu.pb@00B7=1E</action> <!-- Ghost 1 Y -->
      <action>maincpu.pb@00B8=1E</action> <!-- Ghost 2 Y -->
      <action>maincpu.pb@00B9=1E</action> <!-- Ghost 3 Y -->
      <action>maincpu.pb@00BA=1E</action> <!-- Ghost 4 Y -->
    </script>
    <script state="off">
      <action>maincpu.pb@00B2=temp0</action>
      <action>maincpu.pb@00B3=temp1</action>
      <action>maincpu.pb@00B4=temp2</action>
      <action>maincpu.pb@00B5=temp3</action>

      <action>maincpu.pb@00B7=temp4</action>
      <action>maincpu.pb@00B8=temp5</action>
      <action>maincpu.pb@00B9=temp6</action>
      <action>maincpu.pb@00BA=temp7</action>
    </script>
  </cheat>

  <cheat desc="Make Ghosts Edible">
    <script state="on">
      <action>temp0=maincpu.pb@009A</action>
    </script>
    <script state="run">
      <action>maincpu.pb@009A=C0+temp0</action>
    </script>
    <script state="off">
      <action>maincpu.pb@009A=temp0</action>
    </script>
  </cheat>
User avatar
Pugsy
Posts: 3638
Joined: Fri Aug 17, 2001 12:59 am
Location: North Wales, UK.
Has thanked: 1 time
Been thanked: 12 times
Contact:

Re: [a2600/pacman+] Pac-Man

Post by Pugsy »

Thanks, added.
Pugsy

Servicing your cheating needs since 1985 8)

Grab the latest cheat collection:
MAME 0.259 XML cheat collection (6 OCTOBER 2023) from http://www.mamecheat.co.uk or direct from:-
https://mega.nz/file/q4dHGZ6K#i-EUiqIjH ... KMz7hnbTfw (ZIP Archive 3.76MB)
Post Reply