[hngmnjpm] requested

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
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:

[hngmnjpm] requested

Post by Pugsy »

Infinite Time is tricky as the timer is used throughout the game, so I've changed two of the routines in the ROM so that it doesn't do anything when the time runs out. Was going to look at nulling out the Letter Selection timeout and sort the hangman out but I've ran out of the time I'm willing to spend on this game. Besides which I've added display cheats that actually give you the phrase so you don't need rush to guess the letters.

hngmnjpm.xml:

Code: Select all

<mamecheat version="1">

  <cheat desc="Never have to rush Phrase Selection">
    <script state="on">
      <action>temp0 =maincpu.mb@002C9C</action>
    </script>
    <script state="run">
      <action>maincpu.mb@002C9C=60</action>
    </script>
    <script state="off">
      <action>maincpu.mb@002C9C=temp0 </action>
    </script>
  </cheat>

  <cheat desc="Never get Out of Time on Answer Selection">
    <script state="on">
      <action>temp0 =maincpu.mb@000C50</action>
    </script>
    <script state="run">
      <action>maincpu.mb@000C50=60</action>
    </script>
    <script state="off">
      <action>maincpu.mb@000C50=temp0 </action>
    </script>
  </cheat>

  <cheat desc="Infinite Try Agains">
    <script state="run">
      <action>maincpu.pb@40063A=03</action>
    </script>
  </cheat>

  <cheat desc="Display Word for Option 1">
    <script state="run">
      <output format="Word1 : %c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c">
        <argument count="32">maincpu.pb@(4001C0 + argindex)</argument>
      </output>
    </script>
  </cheat>  

  <cheat desc="Display Word for Option 2">
    <script state="run">
      <output format="Word2 : %c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c">
        <argument count="32">maincpu.pb@(4001E0 + argindex)</argument>
      </output>
    </script>
  </cheat>  

  <cheat desc="Display Word for Option 3">
    <script state="run">
      <output format="Word3 : %c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c">
        <argument count="32">maincpu.pb@(400200 + argindex)</argument>
      </output>
    </script>	
  </cheat>  

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