[qbert] move faster and skip round

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
syndromtr
Posts: 232
Joined: Wed Sep 25, 2013 8:18 am
Been thanked: 1 time

[qbert] move faster and skip round

Post by syndromtr »

requested, "move faster" was a different cheat search approach for me :) i reduced wait counter after player movement is over, it seems this solves the problem...
in dipswitches, there's "demonstration mode" which supplies infinite lives + skip round but i pulled out "skip round" and added that cheat. player(s) can press Start button (1 or 2) to skip current round.

Code: Select all

	<cheat desc="Skip Round with Start key">
		<script state="on">
			<action>temp0 =maincpu.mw@C4E9</action>
		</script>
		<script state="run">
			<action>maincpu.mw@C4E9=9090</action>
		</script>
		<script state="off">
			<action>maincpu.mw@C4E9=temp0 </action>
		</script>
	</cheat>

	<cheat desc="Move Faster">
		<script state="on">
			<action>temp0 =maincpu.mb@B965</action>
		</script>
		<script state="run">
			<action>maincpu.mb@B965=10</action>
		</script>
		<script state="off">
			<action>maincpu.mb@B965=temp0 </action>
		</script>
	</cheat>
User avatar
Pugsy
Posts: 3675
Joined: Fri Aug 17, 2001 12:59 am
Location: North Wales, UK.
Has thanked: 1 time
Been thanked: 15 times
Contact:

Re: [qbert] move faster and skip round

Post by Pugsy »

Thanks, added and converted for clones
Pugsy

Servicing your cheating needs since 1985 8)

Grab the latest cheat collection:
MAME 0.264 XML cheat collection (3 APRIL 2024) from http://www.mamecheat.co.uk or direct from:-
https://mega.nz/file/SxsQUJoT#jBdz6GLm_ ... QzFGSMms2c (ZIP Archive 3.8 MB)
Post Reply