[wjammers] Select Point Goal / Select Round Length / MORE

This forum is the archive of arcade cheats that have already been added to the current or the next release of the cheat file.
Post Reply
dranore
Posts: 4
Joined: Sat Dec 25, 2010 3:56 am

[wjammers] Select Point Goal / Select Round Length / MORE

Post by dranore »

Here are some new cheats for Windjammers! I have it set up so the first two are at the top, then a section break, and then the second two followed by all of the existing cheats. That seems to work pretty set.

Code: Select all

  <cheat desc="Select Point Goal"> <comment>Select the score that you would like to play to. The round will end when a player reaches the point goal or the time is up, so use in conjunction with Infinite Time for the Best Effect.</comment>
    <parameter min="5" max="99" step="1"/>
    <script state="off">
      <action>temp0=maincpu.mb@1000FF</action>
    </script>
    <script state="run">
      <action>maincpu.pb@1000FF=tobcd(param)</action>
    </script>
    <script state="off">
      <action>maincpu.mb@1000FF=temp0</action>
    </script>
  </cheat>

Code: Select all

  <cheat desc="Select Round Length"> <comment>Select the length (in seconds) that you would like the round to last. The round will end when a player reaches the point goal or the time is up.</comment>
    <parameter min="10" max="99" step="1"/>
    <script state="on">
      <action>temp0=maincpu.mb@10fd88</action>
    </script>
    <script state="run">
      <action>maincpu.pb@10fd88=param</action>
    </script>
    <script state="off">
      <action>maincpu.mb@10fd88=temp0</action>
    </script>
  </cheat>

Code: Select all

  <cheat desc="Infinite Credit Insert Time"> <comment>Disables the timer which forces the player start button upon inserting a credit.</comment>
    <script state="run">
      <action>maincpu.pb@10FDDA=30</action>
    </script>
  </cheat>

Code: Select all

  <cheat desc="Infinite Selection Time Limit"> <comment>Disables the timer which forces selection on the VS. Type Select, Character Select, Court Select screens. You will need to disable this cheat on the VS. CPU Court Select, as the game relies on this timer running out to force selection.</comment>
    <script state="run">
      <action>maincpu.pb@100090=9</action>
    </script>
    <script state="off">
      <action>maincpu.pb@100090=0</action>
    </script>
  </cheat>
User avatar
Pugsy
Posts: 3675
Joined: Fri Aug 17, 2001 12:59 am
Location: North Wales, UK.
Has thanked: 1 time
Been thanked: 15 times
Contact:

Re: [wjammers] Select Point Goal / Select Round Length / MOR

Post by Pugsy »

Thanks added, though I've made some changes - mainly due to the fact you used maincpu.mb instead of maincpu.pb in some places.
Pugsy

Servicing your cheating needs since 1985 8)

Grab the latest cheat collection:
MAME 0.264 XML cheat collection (3 APRIL 2024) from http://www.mamecheat.co.uk or direct from:-
https://mega.nz/file/SxsQUJoT#jBdz6GLm_ ... QzFGSMms2c (ZIP Archive 3.8 MB)
Post Reply