[apple2gs/taskfrce] Task Force

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/taskfrce] Task Force

Post by harakari2 »

These cheats are for Player 1. I don't think it should be that hard to find the locations for Player 2, so I might follow up with this later if I have time. But at least now you can actually finish the game!

Code: Select all

  <cheat desc="Infinite Health">
  <comment>Turn this cheat off before finishing a scene or else it will keep asking for a disk</comment>
  <script state="on">
    <action>temp1=maincpu.pb@00040</action>
    <action>temp2=maincpu.pb@00041</action>
  </script>
  <script state="run">
    <action>maincpu.pb@00040=00</action>
    <action>maincpu.pb@00041=50</action>
  </script>
  <script state="off">
    <action>maincpu.pb@00040=temp1 </action>
    <action>maincpu.pb@00041=temp2 </action>
  </script>
  </cheat>

Code: Select all

  <cheat desc="Infinite Pistol/Uzi Ammo">
  <script state="on">
    <action>temp0=maincpu.pb@2C306</action>
  </script>
  <script state="run">
    <action>maincpu.pb@2C306=64</action>
  </script>
  <script state="off">
    <action>maincpu.pb@2EC306=temp0</action>
  </script>
  </cheat>

Code: Select all

  <cheat desc="Infinite Tazer Ammo">
  <script state="on">
    <action>temp0=maincpu.pb@2C308</action>
  </script>
  <script state="run">
    <action>maincpu.pb@2C308=64</action>
  </script>
  <script state="off">
    <action>maincpu.pb@2C308=temp0</action>
  </script>
  </cheat>
  

Code: Select all

  <cheat desc="Infinite Rocket Ammo">
  <script state="on">
    <action>temp0=maincpu.pb@2C30A</action>
  </script>
  <script state="run">
    <action>maincpu.pb@2C30A=64</action>
  </script>
  <script state="off">
    <action>maincpu.pb@2C30A=temp0</action>
  </script>
  </cheat>
  

Code: Select all

  <cheat desc="Infinite Flamethrower Ammo">
  <script state="on">
    <action>temp0=maincpu.pb@2C30C</action>
  </script>
  <script state="run">
    <action>maincpu.pb@2C30C=64</action>
  </script>
  <script state="off">
    <action>maincpu.pb@2C30C=temp0</action>
  </script>
  </cheat>
  

Code: Select all

  <cheat desc="Infinite Missile Launcher Ammo">
  <script state="on">
    <action>temp0=maincpu.pb@2C30E</action>
  </script>
  <script state="run">
    <action>maincpu.pb@2C30E=64</action>
  </script>
  <script state="off">
    <action>maincpu.pb@2C30E=temp0</action>
  </script>
  </cheat>
  
Post Reply