Asterix ver EAD - swinging uppercut

This forum is for posting M.A.M.E. arcade cheats. Requests will be fulfilled here....but please keep the requests to the requests forum.
Post Reply
ckain
Posts: 2
Joined: Tue Nov 22, 2016 8:44 pm

Asterix ver EAD - swinging uppercut

Post by ckain »

These modify "swinging uppercut" - hold button 1 down to charge.

No exaustion time limit.
wpset 0x106dac,1,wr,,{maincpu.pb@0x106dac=0xff;g}

2x faster charge.
wpset 0x106d92,1,wr,,{maincpu.pb@0x106d91=0x00;g}

Tested with EAD version.
User avatar
Pugsy
Posts: 3638
Joined: Fri Aug 17, 2001 12:59 am
Location: North Wales, UK.
Has thanked: 1 time
Been thanked: 12 times
Contact:

Re: Asterix ver EAD - swinging uppercut

Post by Pugsy »

Thanks for pointing out the fact there was a swinging uppercut....the rapid fire cheat enabled hides it.

But as "debugger" cheats I can't use the above..

So I just did a quick branch check for the swinging uppercut time and charge time in the debugger (didn't need the above addresses but thanks anyway).

Code: Select all

  <cheat desc="Infinite Swinging Uppercut Time">
    <script state="on">
      <action>temp0 =maincpu.mb@00A8E4</action>
    </script>
    <script state="run">
      <action>maincpu.mb@00A8E4=60</action>
    </script>
    <script state="off">
      <action>maincpu.mb@00A8E4=temp0 </action>
    </script>
  </cheat>

  <cheat desc="Select Swinging Uppercut Charge Time">
    <parameter>
      <item value="0x10">Normal</item>
      <item value="0x04">4x Faster</item>
      <item value="0x08">2x Faster</item>
      <item value="0x20">2x Slower</item>
      <item value="0x40">4x Slower</item>
    </parameter>
    <script state="on">
      <action>temp0 =maincpu.mb@00C30D</action>
    </script>
    <script state="run">
      <action>maincpu.mb@00C30D=param</action>
    </script>
    <script state="off">
      <action>maincpu.mb@00C30D=temp0 </action>
    </script>
  </cheat>
Pugsy

Servicing your cheating needs since 1985 8)

Grab the latest cheat collection:
MAME 0.259 XML cheat collection (6 OCTOBER 2023) from http://www.mamecheat.co.uk or direct from:-
https://mega.nz/file/q4dHGZ6K#i-EUiqIjH ... KMz7hnbTfw (ZIP Archive 3.76MB)
Post Reply