Page 1 of 1

[jockeyc][inttoote2] Time Money

Posted: Thu Nov 15, 2018 9:31 am
by Slade1972
Two sets of cheats in two days. I have a new found interest in MAME again... The debugger has changed a tonne from the old, old days. And trying to remember that some cpu's are big endian...

Here's a few from some horse racing game I stumble upon. The second is a clone of the first.

jockeyc.xml

Code: Select all

<mamecheat version="1">

  <cheat desc="PL1 9,999 Credits Now!">
    <script state="on">
      <action>:maincpu.pw@FFD04A=270F</action>
    </script>
  </cheat>

  <cheat desc="PL2 9,999 Credits Now!">
    <script state="on">
      <action>:maincpu.pw@FFD04E=270F</action>
    </script>
  </cheat>

  <cheat desc=" Infinite Timer">
    <script state="run">
      <action>:maincpu.pw@FFD28C=1FFC</action>
    </script>
  </cheat>

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

inttoote2.xml

Code: Select all

<mamecheat version="1">

  <cheat desc="PL1 9,999 Credits Now!">
    <script state="on">
      <action>:maincpu.pw@FFD04A=270F</action>
    </script>
  </cheat>

  <cheat desc="PL2 9,999 Credits Now!">
    <script state="on">
      <action>:maincpu.pw@FFD04E=270F</action>
    </script>
  </cheat>

  <cheat desc=" Infinite Timer">
    <script state="run">
      <action>:maincpu.pw@FFD28C=1FFC</action>
    </script>
  </cheat>

</mamecheat>
<!-- Cheat file downloaded from http://www.mamecheat.co.uk, see cheat.txt for list of contributors. -->
You can have more credit than provided, but no need to be greedy. I also opted for an "on" cheat, rather than a run cheat. No reason why, just seemed novel. The timer is the count down on the main screen after you start betting.

Re: [jockeyc][inttoote2] Time Money

Posted: Sat Jan 26, 2019 7:33 pm
by Pugsy
Thanks, added