[apple2gs/rastan] Rastan

This forum is for posting cheats for any non-arcade game in M.A.M.E. ( aka the M.E.S.S. games ) including any softwarelist game. Requests will be fulfilled here....but please keep the requests to the requests forum.
Post Reply
harakari2
Posts: 3
Joined: Fri Dec 23, 2022 8:50 am

[apple2gs/rastan] Rastan

Post by harakari2 »

The best arcade port for the Apple IIGS!

Code: Select all

  <cheat desc="Infinite health">
  <script state="on">
    <action>temp0 =maincpu.pb@22bb1</action>
  </script>
  <script state="run">
    <action>maincpu.pb@022bb1=30</action>
  </script>
  <script state="off">
    <action>maincpu.pb@22bb1=temp0 </action>
  </script>
  </cheat>

Code: Select all

  <cheat desc="Infinite lives">
  <script state="on">
    <action>temp0 =maincpu.pb@22a37</action>
  </script>
  <script state="run">
    <action>maincpu.pb@022a37=09</action>
  </script>
  <script state="off">
    <action>maincpu.pb@22a37=temp0 </action>
  </script>
  </cheat>

Code: Select all

  <cheat desc="Selected weapon">
  <parameter>
    <item value="0x00">Sword</item>
    <item value="0x01">Axe</item>
    <item value="0x02">Mace</item>
    <item value="0x03">Flame Sword</item>
  </parameter>
  <script state="on">
    <action>temp0 =maincpu.pb@22fe9</action>
  </script>
  <script state="run">
   <action>maincpu.pb@022fe9=param</action>
  </script>
  <script state="off">
    <action>maincpu.pb@22fe9=temp0 </action>
  </script>
  </cheat>
  

Code: Select all

  <cheat desc="Fast strikes">
  <comment>Same effect as Ring item</comment>
  <script state="on">
    <action>temp0 =maincpu.pb@245e7</action>
	    <action>temp0 =maincpu.pb@245e8</action>
  </script>
  <script state="run">
    <action>maincpu.pb@0245e7=00</action>
	<action>maincpu.pb@0245e8=00</action>
  </script>
  <script state="off">
    <action>maincpu.pb@245e7=temp0 </action>
    <action>maincpu.pb@245e8=temp0 </action>	
  </script>
  </cheat>
  
Post Reply