Page 1 of 1

[jockeygp] [jockeygpa] Time

Posted: Fri Nov 16, 2018 4:27 am
by Slade1972
Just a simple infinite time select cheat. Nothing worse than betting your virtual life savings away and having to rush it...
Works on both sets without changes.

jockeygp.xml / jockeygpa.xml

Code: Select all

  <cheat desc="Infinite Time">
    <script state="on">
      <action>temp0 =maincpu.rw@105A9E</action>
    </script>
    <script state="run">
      <action>maincpu.rw@105A9E=001E</action>
    </script>
    <script state="off">
      <action>maincpu.rw@105A9F=temp0</action>
    </script>
  </cheat>

Re: [jockeygp] [jockeygpa] Time

Posted: Sun Dec 30, 2018 5:42 pm
by Pugsy
Thanks, added & fixed it slightly as .rw and temp0 indicates a ROM cheat, it works but it actually only needs a RAM cheat.

Code: Select all

  <cheat desc="Infinite Time">
    <script state="run">
      <action>maincpu.pb@105A9F=3B</action>
    </script>
    <script state="off">
      <action>maincpu.pb@105A9F=01</action>
    </script>
  </cheat>