[a5200/zonerngr] Zone Ranger

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
mezdap
Posts: 117
Joined: Sun Feb 04, 2018 5:16 am
Has thanked: 2 times
Been thanked: 2 times

[a5200/zonerngr] Zone Ranger

Post by mezdap »

[a5200] zonerngr.xml

Code: Select all

  <cheat desc="Infinite Lives">
    <script state="run">
      <action>maincpu.pb@0083=03</action>
    </script>
  </cheat>

Code: Select all

  <cheat desc="Infinite Time">
    <script state="run">
      <action condition="maincpu.pb@009B != FF">maincpu.pb@008A=99</action>
      <action condition="maincpu.pb@009B != FF">maincpu.pb@008B=09</action>
    </script>
  </cheat>

Code: Select all

  <cheat desc="Finish This Level Now!">
    <script state="on">
      <action condition="maincpu.pb@00E3 == 0">
       maincpu.pq@3380=0000000000000000, maincpu.pq@3388=0000000000000000</action> <!-- finish level -->
      <action condition="maincpu.pb@3380 == 0">maincpu.pw@008A=0000</action> <!-- erase time -->
    </script>
  </cheat>

Code: Select all

  <cheat desc="Two Player Version"> <comment>Turn it On for P2 and Press Start Button</comment>
    <script state="run">
      <action>maincpu.pb@0060=01</action>
    </script>
    <script state="off">
      <action>maincpu.pb@0060=00</action>
    </script>
  </cheat>
Last edited by mezdap on Sat Jan 01, 2022 12:38 pm, edited 3 times in total.
mezdap
Posts: 117
Joined: Sun Feb 04, 2018 5:16 am
Has thanked: 2 times
Been thanked: 2 times

Re: [a5200] Zone Ranger "Select Starting Level"

Post by mezdap »

Code: Select all

  <cheat desc="Select Starting Level"> <comment>Bonus Round: After Every 2 Levels.</comment>
    <parameter min="1" max="30" step="1"/>
    <script state="run">
      <action condition="maincpu.pb@0085 == 1">maincpu.pb@0084=(param-1), maincpu.pb@0085=tobcd(param)</action>
    </script>
  </cheat>
Last edited by mezdap on Wed Dec 22, 2021 2:53 pm, edited 2 times in total.
mezdap
Posts: 117
Joined: Sun Feb 04, 2018 5:16 am
Has thanked: 2 times
Been thanked: 2 times

Re: [a5200] Zone Ranger ''Invincibility''

Post by mezdap »

There are two 'Invincibility' options for this game.

According to the manual, this one is called ''Sonic Sparklers. Touch them and you'll be invincible for as long as their music plays.''
So I can't stop the music!

Code: Select all

  <cheat desc="Invincibility (Sonic Sparklers)"> <comment>Caution: nonstop music is on!</comment>
    <script state="run">
      <action>maincpu.pb@0097=FF</action>
    </script>
  </cheat>
This one is similar to 'Demo Play' but with unstoppable noise!!!

Code: Select all

  <cheat desc="Invincibility (Full)"> <comment>Caution: nonstop noise is on!</comment>
    <script state="run">
      <action>maincpu.pb@00BA=FF</action>
    </script>
  </cheat>
Last edited by mezdap on Wed Dec 22, 2021 2:54 pm, edited 1 time in total.
mezdap
Posts: 117
Joined: Sun Feb 04, 2018 5:16 am
Has thanked: 2 times
Been thanked: 2 times

Re: [a5200] Zone Ranger "Destroy Satellite(s)"

Post by mezdap »

Code: Select all

 <cheat desc="Destroy Satellite(s)"> <comment>Knock Off by Skyway Patrol.(NOT for Bonus Round)</comment>
    <parameter>
      <item value="0x01">1 Satellite</item>
      <item value="0x02">2 Satellites</item>
      <item value="0x03">3 Satellites</item>
      <item value="0x04">4 Satellites</item>
      <item value="0x05">5 Satellites</item>
      <item value="0x06">6 Satellites</item>
      <item value="0x07">7 Satellites</item>
      <item value="0x08">8 Satellites</item>
      <item value="0x09">9 Satellites</item>
      <item value="0x0A">10 Satellites</item>
      <item value="0x0B">11 Satellites</item>
      <item value="0x0C">12 Satellites</item>
      <item value="0x0D">13 Satellites</item>
      <item value="0x0E">14 Satellites</item>
      <item value="0x0F">15 Satellites</item>
      <item value="0x10">16 Satellites (Finishes Level)</item>
    </parameter>
    <script state="change">
      <action>
      maincpu.pb@0054=param</action>
    </script>
  </cheat>
Post Reply