[agallet] Enable debug cheats + re-enable region select

This forum is for posting M.A.M.E. arcade cheats. Requests will be fulfilled here....but please keep the requests to the requests forum.
Post Reply
RyogaMasaki
Posts: 8
Joined: Sat Jan 24, 2015 2:18 am
Contact:

[agallet] Enable debug cheats + re-enable region select

Post by RyogaMasaki »

There are some debug cheats left over in the game: level select, invincibility, game pause. There's also a region select, which had a input code that was disabled. The cheat re-enables that input code for region select. I did all my testing on the Japanese version, but since this only changes RAM locations, it should work for all regions.

My work on the game: http://sudden-desu.net/2015/10/28/akuua ... -and-more/

Code: Select all

  <cheat desc="Enable level select">
    <comment>Level select will appear after inserting a coin and pressing start</comment>
    <script state="run">
      <action>maincpu.pw@100094=1</action>
    </script>
    <script state="off">
      <action>maincpu.pw@100094=0</action>
    </script>
  </cheat>
  
  <cheat desc="Enable invincibility">
    <script state="run">
      <action>maincpu.pw@100092=1</action>
    </script>
    <script state="off">
      <action>maincpu.pw@100092=0</action>
    </script>
  </cheat>
  
  <cheat desc="Enable pause">
    <comment>Pause game with P2 Start, unpause with P1 Start</comment>
    <script state="run">
      <action>maincpu.pw@100090=1</action>
    </script>
    <script state="off">
      <action>maincpu.pw@100090=0</action>
    </script>
  </cheat>
  <cheat desc="Enable reset">
    <comment>Reset game by pressing P2 A+B+C (This appears to be BROKEN! Game resets, but then locks up)</comment>
    <script state="run">
      <action>maincpu.pw@10008E=1</action>
    </script>
    <script state="off">
      <action>maincpu.pw@10008E=0</action>
    </script>
  </cheat>

  <cheat desc="Enable country select menu">
    <comment>While in the DIP-SW menu in Test Mode, highlight Factory Settings, hold P1 Right and press P1 Button 2</comment>
    <script state="run">
      <action>maincpu.pw@109722=0010</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: [agallet] Enable debug cheats + re-enable region select

Post by Pugsy »

Thanks, added. Nice write-up.
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