[apple2\junghunt] Jungle Hunt

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
baco
Posts: 3
Joined: Sat Apr 25, 2020 9:00 am

[apple2\junghunt] Jungle Hunt

Post by baco »

Code: Select all

 <mamecheat version="1">
  <cheat desc="Infinite Lives">
  <comment>Always set to '9'</comment>
  	<script state="on">
		<action>temp0 =maincpu.pb@42</action>
	</script>
    <script state="run">
		<action>maincpu.pb@42=0a</action>
    </script>
	<script state="off">
		<action>maincpu.pb@42=temp0</action>
	</script>
  </cheat>	
  <cheat desc="Infinite Time">
  <comment> Always set to '5000'
(except for last level)</comment>
	<script state="on">
		<action>temp0 =maincpu.pb@A5</action>
		<action>temp1 =maincpu.pb@A4</action>
		<action>temp2 =maincpu.pb@A3</action>
	</script>
	<script state="run">
		<action condition="(maincpu.pb@1A!=04)">maincpu.pb@A5=0</action>
		<action condition="(maincpu.pb@1A!=04)">maincpu.pb@A4=0</action>
		<action condition="(maincpu.pb@1A!=04)">maincpu.pb@A3=5</action>
	</script>	
	<script state="off">
		<action>maincpu.pb@A5=temp0</action>
		<action>maincpu.pb@A4=temp1</action>
		<action>maincpu.pb@A3=temp2</action>
	</script>
  </cheat>
</mamecheat>
this cheat works for both [apple2_flop_orig\junghunt] and [apple2_flop_clcracked\junghunt]
-baco
baco
Posts: 3
Joined: Sat Apr 25, 2020 9:00 am

Re: [apple2\junghunt] Jungle Hunt

Post by baco »

better cheat file below

Code: Select all

 <mamecheat version="1">
  <cheat desc="Infinite Lives">  
  <comment>Both Player</comment>
  	<script state="run">
		<action>maincpu.pb@42=9</action>
		<action>maincpu.pb@43=9</action> 
	</script>	
  </cheat>	
 
  <cheat desc="Infinite Time">
  <comment>No Decremetation</comment>
	<script state="on">
		<action>maincpu.pb@D79=0xEA</action>
		<action>maincpu.pb@D7A=0xEA</action>
	</script>	
	<script state="off">	
		<action>maincpu.pb@D79=0xD6</action>
		<action>maincpu.pb@D7A=0xA6</action>
	</script>		
  </cheat>	
</mamecheat>
Post Reply