Page 1 of 1

[deroon] Sound Test and Level Select

Posted: Tue Dec 13, 2011 4:01 pm
by Tafoid
Sound Test

Code: Select all

  <cheat desc="Sound Test">
  <parameter min="1" max="175" step="1"/>
    <script state="on">
      <action condition="maincpu.pb@202C61==00">maincpu.pb@202C61=01</action>
      <action condition="maincpu.pb@202E15==00">maincpu.pb@202E15=01</action>
    </script>
    <script state="change">
    <action>maincpu.pb@E00001=param</action>
    </script>
  </cheat>
Level Select

Code: Select all

  <cheat desc="Select Stage (0-D)">
  <comment>Best used on map screen after stage number introduction and fanfare but before actual play screen appears.</comment>
  <parameter min="0" max="13" step="1"/>
    <script state="change">
    <action>maincpu.pb@20683A=param</action>
    <action>maincpu.pb@20683B=param</action>
    <action>maincpu.pb@20683C=param</action>
    <action>maincpu.pb@209947=54+param</action>
    </script>
  </cheat>

Re: [deroon] No/Max Damage for Both Players

Posted: Tue Jan 31, 2012 4:14 am
by Tafoid

Code: Select all

  <cheat desc="No Damage - Player 1">
    <script state="run">
      <action>maincpu.pw@209196=0000</action>
      <action>maincpu.pw@209198=0000</action>
      <action>maincpu.pw@20919A=0000</action>
    </script>
  </cheat>
  <cheat desc="Full Damage - Player 1">
    <script state="run">
      <action>maincpu.pw@209196=FFFF</action>
      <action>maincpu.pw@209198=FFFF</action>
      <action>maincpu.pw@20919A=FFFF</action>
    </script>
  </cheat>
  <cheat desc="No Damage - Player 2">
    <script state="run">
      <action>maincpu.pw@2091AC=0000</action>
      <action>maincpu.pw@2091AE=0000</action>
      <action>maincpu.pw@2091B0=0000</action>
    </script>
  </cheat>
  <cheat desc="Full Damage - Player 2">
    <script state="run">
      <action>maincpu.pw@2091AC=FFFF</action>
      <action>maincpu.pw@2091AE=FFFF</action>
      <action>maincpu.pw@2091B0=FFFF</action>
    </script>
  </cheat>

Re: [deroon] Sound Test and Level Select

Posted: Fri Feb 10, 2012 11:50 am
by Pugsy
Thanks all added, I've changed the level select cheat into a ROM cheat though...I think it should work better (and there only seems to be 10 levels + 1 special):-

Code: Select all

  <cheat desc="Select Starting Stage">
    <parameter>
      <item value="0x103C0000">Lesson 1</item>
      <item value="0x103C0001">Lesson 2</item>
      <item value="0x103C0002">Lesson 3</item>
      <item value="0x103C0003">Stage 1</item>
      <item value="0x103C0004">Stage 2</item>
      <item value="0x103C0005">Stage 3</item>
      <item value="0x103C0006">Stage 4</item>
      <item value="0x103C0007">Stage 5</item>
      <item value="0x103C0008">Stage 6</item>
      <item value="0x103C0009">Stage 7</item>
      <item value="0x103C000A">Stage 8</item>
      <item value="0x103C000B">Stage 9</item>
      <item value="0x103C000C">Stage 10</item>
      <item value="0x103C000D">Special Stage</item>
    </parameter>
    <script state="on">
      <action>temp0 =maincpu.md@008C2C</action>
    </script>
    <script state="run">
      <action>maincpu.md@008C2C=param</action>
    </script>
    <script state="off">
      <action>maincpu.md@008C2C=temp0 </action>
    </script>
  </cheat>
Update: thanks for info. - added Lesson 1-3 to the above cheat

Re: [deroon] Sound Test and Level Select

Posted: Sat Feb 11, 2012 1:56 am
by Tafoid
There are actually is the Training course which consists of 3 levels. You can start on any of those if you want and your game will be 'carried over' into normal. Whatever works best is cool :)

Re: [deroon] Sound Test and Level Select

Posted: Sat Feb 11, 2012 10:41 am
by Pugsy
Thanks I missed that fact, updated the above to include those 3 levels