Page 1 of 1

[fantastc] cheats

Posted: Sun Jul 08, 2012 3:59 pm
by Pugsy
Looks like galaxian but cheat addresses have no similarity

fantastc.xml

Code: Select all

<mamecheat version="1">

  <cheat desc="Infinite Lives">
    <script state="run">
      <action>maincpu.pb@84FE=05</action>
    </script>
  </cheat>

  <cheat desc="Invincibility">
    <script state="on">
      <action>temp0 =maincpu.mb@015C</action>
      <action>temp1 =maincpu.mb@1EAF</action>
    </script>
    <script state="run">
      <action>maincpu.mb@015C=18</action> <!-- Bullets -->
      <action>maincpu.mb@1EAF=18</action> <!-- Ship 2 Collisions -->
    </script>
    <script state="off">
      <action>maincpu.mb@015C=temp0 </action>
      <action>maincpu.mb@1EAF=temp1 </action>
    </script>
  </cheat>

  <cheat desc="Rapid Fire"> <comment>This cheat enables continuous attack during by holding the fire button</comment>
    <script state="run">
      <action>maincpu.pb@8626=00|(maincpu.pb@8626 BAND ~01)</action>
    </script>
  </cheat>

</mamecheat>
<!-- Cheat file downloaded from http://www.mamecheat.co.uk, see cheat.txt for list of contributors. -->

Re: [fantastc] cheats

Posted: Mon Jul 30, 2012 10:20 pm
by Bugfinder
This one game from my childhood, I played it a lot here in Rio de Janeiro. Thanks, Pugs :) By the way, I don't know if you noticed but this game doesn't seem to have the "aliens don't fire" bug that Galaga had. Actually, after some stage alien shots become A LOT quicker!

Speaking of Galaga, do you happen to know how to fix the Aliens bug on Galaga? So they don't stop firing? Should require a ROM cheat, correct?

Re: [fantastc] cheats

Posted: Tue Jul 31, 2012 5:03 am
by Tafoid
Bugfinder wrote:This one game from my childhood, I played it a lot here in Rio de Janeiro. Thanks, Pugs :) By the way, I don't know if you noticed but this game doesn't seem to have the "aliens don't fire" bug that Galaga had. Actually, after some stage alien shots become A LOT quicker!

Speaking of Galaga, do you happen to know how to fix the Aliens bug on Galaga? So they don't stop firing? Should require a ROM cheat, correct?
http://computerarcheology.com/galaga/galaga.html#TOC-8 show the fix - which should be able to be adapted to a 'fix' cheat.

Re: [fantastc] cheats

Posted: Thu Aug 02, 2012 5:51 am
by Bugfinder
Great read, thanks a lot Tafoid!