Codes for HazeMD

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.
ShimaPong
Posts: 1063
Joined: Wed May 21, 2003 4:19 pm
Location: Japan

Post by ShimaPong »

I replaced by HazeMD 0.04a. It supports "real" Reset Button on Genesis/Megadrive. It enables "safe" reset. For example on Burning Force, MAME soft-reset causes the crash but real-reset is without problem.
And you can avoid ROM check in case of real-reset.

I have confirmed Round Select Mode on M.U.S.H.A / Musha Aleste on HazeMD.
But sorry, I have mistaken about how to enable it. Correct way is...
  1. Press Reset button 10 times.
  2. On title screen, hold Lower-Left then select Options.
  3. Confirm that "SOUND" item changes "ROUND".
  4. Select round you want to start then press Start button or exit Options.
Also Wani Wani World has the similar thing.
  1. When displayed "SEGA" logo, press Reset button.
  2. Start the game
  3. Life and Credit are 255 !!
But MAME 0.108 has still had a watchpoint bug so that it happens on HazeMD too...


I have tried to search for SMS/MarkIII game but...
- Aleste -

Code: Select all

; [ Aleste [!] (Master System) ]
:s_aleste:00000000:C818:00000001:FFFFFFFF:Rapid Fire - Main Shot
:s_aleste:00000000:C405:00000080:00000080:Invincibility
:s_aleste:00010000:C416:00000002:FFFFFFFF:Invincibility (2/2)
:s_aleste:00000000:C812:0000000A:FFFFFFFF:Infinite Lives
:s_aleste:00000000:C816:00000004:FFFFFFFF:Always Maximum Shot Power
:s_aleste:00000000:C83E:000000FF:FFFFFFFF:Infinite Extra Weapon Ammo
:s_aleste:00100000:C840:00000203:FFFFFFFF:Always Maximum Extra Weapon Power
:s_aleste:00000300:C83C:00000007:FFFFFFFF:Select Extra Weapon
:s_aleste:00001101:C881:00000006:FFFFFFFF:Select Round:Set on mode selection screen. Round 0 is secret.
:s_aleste:00300000:C0AC:04010201:FFFFFFFF:Unlock Sound Test Mode:Press a button on title screen
:s_aleste:00310000:C0B0:01080204:FFFFFFFF:Unlock Sound Test Mode (2/2)
If you use Round Selection and "Game Over" on the same round, "Continue Game" always gives starting with Round 1.
  • Start with Round 3 via Round Selection code
  • Game Over on Round 3
  • Select "Continue Game" on title screen
  • Start the game with Round 1 !
You need to copy a selected value into $C843 but current cheat engine doesn't support "Copy Previous Value"...
But correct value is stored into $C843 when you finish this round.

[TIPS]
- Round 0 -
Select "Continue Game" after you see the ending, the game start with Round 0.

- Sound Test -
On title screen, input "Up, Down, Up, Left, Left, Down, Right, Up" then press a button.

- Start with 10 lives -
On title screen, input "Down, Right, Down, Down, Left, Right, Left, Right, Up, Right" then press a button and start the game.

- Enable to continue with Round 6 -
Normally, "Continue Game" don't allow to start with Round 6.
If you do "Game Over" on Round 6 then re-start with "Continue Game", the game starts with Round 5.
But hold Left then select "Continue Game", you can start with Round 6.

- Cut FM sound -
When power-on, hold 1P Upper-Right and 2P Lower-Left.
the game has PSG sound only instead of FM.
But HazeMD doesn't have SMS/MarkIII FM sound emulation so that it is meaningless (always PSG).
My Master System which includes FM sound chip is dead now...


...It is main problem that I can't hack a program code.
I have tried to make "Always Start with Round 0" and "Unlimited Continue Round" with ROM code.

Code: Select all

0B8D: 21 00 00      ld   hl,$0000
0B90: 22 F8 CE      ld   ($CEF8),hl
0B93: 22 FA CE      ld   ($CEFA),hl
0B96: 22 F4 CE      ld   ($CEF4),hl
0B99: 2E 20         ld   l,$20
0B9B: 22 F6 CE      ld   ($CEF6),hl
// Check an item you selected (New Game or Continue Game ?)
0B9E: 3A 4F C8      ld   a,($C84F)
0BA1: A7            and  a
// Set default value as "1"
0BA2: 3E 01         ld   a,$01
// If "New Game", jump to $0BB4 (starting round = 1)
0BA4: 28 0E         jr   z,$0BB4
// Load continue round (starting round = continue round)
0BA6: DD 7E C3      ld   a,(ix-$3d)
// Check 1P control
0BA9: DD CB 80 56   bit  2,(ix-$80)
// If 1P Left is pressed, jump to $0BB4. (skip continue round check)
0BAD: 20 05         jr   nz,$0BB4
0BAF: FE 06         cp   $06
0BB1: 38 01         jr   c,$0BB4
// If the previous game has ended on Round 6, set a value as "5" (starting round = 5)
0BB3: 3D            dec  a
// Store new value into both starting and continue round
0BB4: DD 77 01      ld   (ix+$01),a
0BB7: DD 77 C3      ld   (ix-$3d),a
0BBA: C9            ret
If you select "New Game", 0x01 loaded on $0BA2 is stored into $C881.
So I want to change "ld a,$01" on $0BA2 to "ld a,$00".

Code: Select all

:s_aleste:20800000:0BA3:00000000:FFFFFFFF:Always Start with Round 0:Select "New Game Start" on title screen
And in case of "Continue Game", I want to kill "jr c,$0BB4" on $0BB1 (->"jr $0BB4).

Code: Select all

:s_aleste:20800000:0BB1:00000018:FFFFFFFF:Unlimited Continue Round:Enable to continue on Round 6
...Never work.

On sms.c

Code: Select all

ROM_START( s_aleste )
	ROM_REGION( 0x400000, REGION_USER1, 0 ) /* z80 Code */
	ROM_LOAD( "s_aleste.bin", 0x000000, 0x020000, CRC(d8c4165b) SHA1(cba75b0d54df3c9a8e399851a05c194c7a05fbfe) )
ROM_END
s_aleste seems to be loaded into USER1. But changing "20x00000" (Region-CPU1) to "39x00000" (Region-USER1) is meaningless. Also different address...
I have already checked these codes via Windows memory editor (works fine !) but I don't know how to confirm via the cheat engine.

Pugsy, can you hack any rom code on SMS ?
HazeMame
Posts: 15
Joined: Mon Aug 14, 2006 2:49 pm

Post by HazeMame »

>
> I wonder why this "wrong" sub-title has not been fixed...
> This is not "Asia Seimei Sensou" but "A-Seimei Sensou".


Names are taken from GoodGen, it's not always the most reliable database (and personally I hate it because it also encourages fake, merged dumps instead of presering the real chip information and labels) but sadly it's the best there is for now, I wasn't going to come up with names for 1600 sets myself ;-)

goodSMS is even worse, the region info is completely wrong which is why I stripped it off the SMS games.
User avatar
2wacked
Posts: 73
Joined: Tue Feb 11, 2003 11:28 pm
Location: Florida
Contact:

Post by 2wacked »

Thanks guys, these cheats are GREAT!
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:

Post by Pugsy »

Thanks for those ShimaPong
Pugsy, can you hack any rom code on SMS ?
Nope I'm having problems poking ROM locations too, the sms driver also contains the games hangonjr & transfrm which is identical to hangonjr & transfrm in MAME which you've done ROM cheats for in the past. In HazeMDD it doesn't poke the value at all but does poke it in MAME..odd.
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)
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:

Post by Pugsy »

Some quickies

Code: Select all

; [ James Pond - Underwater Agent (UE) [!] ]
:g_jp:00000000:E088AF:00000064:FFFFFFFF:Infinite Time
:g_jp:00000000:E087D3:00000003:FFFFFFFF:Infinite Lives
:g_jp:00000000:E087EB:00000000:FFFFFFFF:Infinite Energy
:g_jp:00000000:E087DF:00000002:FFFFFFFF:Invincibility

; [ James Pond II - Codename RoboCod (UE) [!] ]
:g_jp2:00000000:E0B3F9:00000003:FFFFFFFF:Infinite Lives
:g_jp2:00000000:E0B3FD:00000005:FFFFFFFF:Infinite Energy
:g_jp2:00000000:E0B3EF:00000002:FFFFFFFF:Invincibility

; [ James Pond II - Codename RoboCod (J) [!] ]
:g_jp2j:00000000:E0B3FB:00000003:FFFFFFFF:Infinite Lives
:g_jp2j:00000000:E0B3FF:00000005:FFFFFFFF:Infinite Energy
:g_jp2j:00000000:E0B3F1:00000002:FFFFFFFF:Invincibility

; [ James Pond 3 ]
:g_jp3:00000000:E0FA9F:00000009:FFFFFFFF:Infinite Lives
:g_jp3:00000000:E0FAA1:00000005:FFFFFFFF:Infinite Energy
:g_jp3:00000000:E0FA9D:00000002:FFFFFFFF:Invincibility

; [ Ooze, The (JU) [!] ]
:g_ooze:00000000:E0CA8F:00000009:FFFFFFFF:Infinite Lives

; [ Ooze, The (E) [!] ]
:g_oozee:00000000:E0CA8F:00000009:FFFFFFFF:Infinite Lives

; [ Risky Woods (UE) [!] ]
:g_rwoo:00300000:E01116:393A3539:FFFFFFFF:Infinite Time
:g_rwoo:00000000:E011A5:0000006D:FFFFFFFF:Infinite Energy
:g_rwoo:00000000:E01144:00000000:FFFFFFFF:Invincibility

; [ After Burner  [!] (Master System) ]
:s_aburn:00000000:C018:00000009:FFFFFFFF:Infinite Lives
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)
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:

Post by Pugsy »

Right here's the cheat file for HazeMD 0.05a as it currently stands. Obviously don't expect miracles there's something like 1700 games and the cheat file has cheats for just over 100 - we need a LOT of help to get to a respectable amount of games covered I haven't got that amount of free time and I seriously doubt even ShimaPong has either.

Anyway here's the cheat file for what it's worth - don't get too excited about the filesize though as it's mainly the skeleton structure to make adding cheats easier :-

http://cheat.retrogames.com/HazeMD27AUG2006Cheat.zip
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)
HazeMame
Posts: 15
Joined: Mon Aug 14, 2006 2:49 pm

Post by HazeMame »

Not the most useful cheats.. but hmm, interesting ;-)

Code: Select all


:Icon display won't update once you're in a level, however the effect still will
:g_lem2:00000000:E042B7:00000001:000000FF:Slot 1 - Jumper
:g_lem2:00000000:E042B7:00000002:000000FF:Slot 1 - Runner
:g_lem2:00000000:E042B7:00000003:000000FF:Slot 1 - Filler
:g_lem2:00000000:E042B7:00000004:000000FF:Slot 1 - Ballooner
:g_lem2:00000000:E042B7:00000005:000000FF:Slot 1 - Archer
:g_lem2:00000000:E042B7:00000006:000000FF:Slot 1 - Attractor
:g_lem2:00000000:E042B7:00000007:000000FF:Slot 1 - Bomber
:g_lem2:00000000:E042B7:00000008:000000FF:Slot 1 - Scooper
:g_lem2:00000000:E042B7:00000009:000000FF:Slot 1 - Hopper
:g_lem2:00000000:E042B7:0000000a:000000FF:Slot 1 - Skater
:g_lem2:00000000:E042B7:0000000b:000000FF:Slot 1 - Kayaker
:g_lem2:00000000:E042B7:0000000c:000000FF:Slot 1 - Swimmer
:g_lem2:00000000:E042B7:0000000d:000000FF:Slot 1 - Roller
:g_lem2:00000000:E042B7:0000000e:000000FF:Slot 1 - Magic Carpet
:g_lem2:00000000:E042B7:0000000f:000000FF:Slot 1 - Club Basher
:g_lem2:00000000:E042B7:00000010:000000FF:Slot 1 - Thrower
:g_lem2:00000000:E042B7:00000011:000000FF:Slot 1 - Digger
:g_lem2:00000000:E042B7:00000012:000000FF:Slot 1 - Climber
:g_lem2:00000000:E042B7:00000013:000000FF:Slot 1 - Builder
:g_lem2:00000000:E042B7:00000014:000000FF:Slot 1 - Basher
:g_lem2:00000000:E042B7:00000015:000000FF:Slot 1 - Miner
:g_lem2:00000000:E042B7:00000016:000000FF:Slot 1 - Floater
:g_lem2:00000000:E042B7:00000017:000000FF:Slot 1 - Laser Blaster
:g_lem2:00000000:E042B7:00000018:000000FF:Slot 1 - Exploder
:g_lem2:00000000:E042B7:00000019:000000FF:Slot 1 - Magno Boots
:g_lem2:00000000:E042B7:0000001a:000000FF:Slot 1 - Bazooker
:g_lem2:00000000:E042B7:0000001b:000000FF:Slot 1 - Spearer
:g_lem2:00000000:E042B7:0000001c:000000FF:Slot 1 - Fencer
:g_lem2:00000000:E042B7:0000001d:000000FF:Slot 1 - Stomper
:g_lem2:00000000:E042B7:0000001e:000000FF:Slot 1 - Skier
:g_lem2:00000000:E042B7:0000001f:000000FF:Slot 1 - Stacker
:g_lem2:00000000:E042B7:00000020:000000FF:Slot 1 - Pole Vaulter
:g_lem2:00000000:E042B7:00000021:000000FF:Slot 1 - Mortar
:g_lem2:00000000:E042B7:00000022:000000FF:Slot 1 - Platformer
:g_lem2:00000000:E042B7:00000023:000000FF:Slot 1 - Diver
:g_lem2:00000000:E042B7:00000024:000000FF:Slot 1 - Flame Thrower
:g_lem2:00000000:E042B7:00000025:000000FF:Slot 1 - Super Lem!
:g_lem2:00000000:E042B7:00000026:000000FF:Slot 1 - Surfer
:g_lem2:00000000:E042B7:00000027:000000FF:Slot 1 - Planter
:g_lem2:00000000:E042B7:00000028:000000FF:Slot 1 - Parachute
:g_lem2:00000000:E042B7:00000029:000000FF:Slot 1 - Slider
:g_lem2:00000000:E042B7:0000002a:000000FF:Slot 1 - Rock Climber
:g_lem2:00000000:E042B7:0000002b:000000FF:Slot 1 - Jet Pack
:g_lem2:00000000:E042B7:0000002c:000000FF:Slot 1 - Shimmier
:g_lem2:00000000:E042B7:0000002d:000000FF:Slot 1 - Roper
:g_lem2:00000000:E042B7:0000002e:000000FF:Slot 1 - Twister
:g_lem2:00000000:E042B7:0000002f:000000FF:Slot 1 - Sand Pourer
:g_lem2:00000000:E042B7:00000030:000000FF:Slot 1 - Glue Pourer
:g_lem2:00000000:E042B7:00000031:000000FF:Slot 1 - Icarus Wings
:g_lem2:00000000:E042B7:00000032:000000FF:Slot 1 - Hang Glider
:g_lem2:00000000:E042B7:00000033:000000FF:Slot 1 - Blocker


/* You get the idea, fill in the other slots ;-) */
:g_lem2:00000000:E042B9:00000004:000000FF:Slot 2 - Ballooner
:g_lem2:00000000:E042BB:00000004:000000FF:Slot 3 - Ballooner
:g_lem2:00000000:E042BD:00000004:000000FF:Slot 4 - Ballooner
:g_lem2:00000000:E042BF:00000004:000000FF:Slot 5 - Ballooner
:g_lem2:00000000:E042C1:00000004:000000FF:Slot 6 - Ballooner
:g_lem2:00000000:E042C3:00000004:000000FF:Slot 7 - Ballooner
:g_lem2:00000000:E042C5:00000004:000000FF:Slot 8 - Ballooner

:g_lem2:00000000:E042C7:00000063:000000FF:Infinite Slot 1
:g_lem2:00000000:E042C9:00000063:000000FF:Infinite Slot 2
:g_lem2:00000000:E042CB:00000063:000000FF:Infinite Slot 3
:g_lem2:00000000:E042CD:00000063:000000FF:Infinite Slot 4
:g_lem2:00000000:E042CF:00000063:000000FF:Infinite Slot 5
:g_lem2:00000000:E042D1:00000063:000000FF:Infinite Slot 6
:g_lem2:00000000:E042D3:00000063:000000FF:Infinite Slot 7
:g_lem2:00000000:E042D5:00000063:000000FF:Infinite Slot 8
[/code]
User avatar
2wacked
Posts: 73
Joined: Tue Feb 11, 2003 11:28 pm
Location: Florida
Contact:

Post by 2wacked »

Thanks for the cheat.dat I'm gonna try and see if I can help convert GG codes. Hope it's not too hard.
ShimaPong
Posts: 1063
Joined: Wed May 21, 2003 4:19 pm
Location: Japan

Post by ShimaPong »

I'm discouraged now because I have known that HazeMD doesn't allow to hack ROM code on SMS/Mark III via the cheat engine.
So I have tried to analyze cheat.c but it's too hard...
I fixed watchpoint bug a bit with a BORKED way though.
But I don't know how to access to a "custom handled" region via the cheat engine at all.

- Fantasy Zone for SMS/Mark III -

Code: Select all

; [ Fantasy Zone (Master System) ]
:s_fzone:00000000:C31F:00000001:FFFFFFFF:Rapid Fire - Shot
:s_fzone:00000000:C31E:00000001:FFFFFFFF:Rapid Fire - Bomb
:s_fzone:20900000:248E:000037C9:FFFFFFFF:Invincibility [NOT WORK]
:s_fzone:20810000:24BC:00000037:FFFFFFFF:Invincibility [NOT WORK] (2/2):1st = Object, 2nd = Base
:s_fzone:00000000:C086:0000009A:FFFFFFFF:Infinite Weapon Time
:s_fzone:00000000:C065:00000007:FFFFFFFF:Infinite Lives
:s_fzone:00200000:C066:00999999:FFFFFFFF:Infinite Gold
:s_fzone:60000000:0000:00000000:00000000:--------------------------------------------------------
:s_fzone:60000000:0000:00000000:00000000: You need to set an item in the selection screen to use
:s_fzone:60000000:0000:00000000:00000000:--------------------------------------------------------
:s_fzone:00000000:C0C2:00000001:FFFFFFFF:Always Have Big Wings
:s_fzone:00000000:C0C3:00000001:FFFFFFFF:Always Have Jet Engine
:s_fzone:00000000:C0C4:00000001:FFFFFFFF:Always Have Turbo Engine
:s_fzone:00000000:C0C5:00000001:FFFFFFFF:Always Have Rocket Engine
:s_fzone:00000000:C0C7:00000001:FFFFFFFF:Always Have Wide Beam
:s_fzone:00000000:C0C8:00000001:FFFFFFFF:Always Have Laser
:s_fzone:00000000:C0C9:00000001:FFFFFFFF:Always Have 7-way
:s_fzone:00000000:C0CB:00000001:FFFFFFFF:Always Have Twin Bomb
:s_fzone:00000000:C0CC:00000009:FFFFFFFF:Always Have Smart Bomb
:s_fzone:00000000:C0CD:00000009:FFFFFFFF:Always Have Fire Bomb
:s_fzone:00000000:C0CE:00000009:FFFFFFFF:Always Have Heavy Bomb
:s_fzone:00001501:C064:00000007:FFFFFFFF:Select Starting Stage PL1:Set on title screen
:s_fzone:00001501:C044:00000007:FFFFFFFF:Select Starting Stage PL2:Set on title screen
Invincibility (ROM) doesn't work via the cheat engine. But I have already confirmed that it works fine via Windows memory editor.
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:

Post by Pugsy »

Here's some more basic cheats..

Code: Select all

; [ Pac-Mania (U) [!] ]
:g_pacm:00000000:E0428B:00000005:FFFFFFFF:Infinite Lives PL1
:g_pacm:00000000:E0428D:00000005:FFFFFFFF:Infinite Lives PL2

; [ Ghostbusters (W) (REV01) [!] ]
:g_gbus:00000000:E0FE2B:00000063:FFFFFFFF:Infinite Lives
:g_gbus:00000000:E0FE2C:00000010:FFFFFFFF:Infinite Life
:g_gbus:00000000:E0FE32:00000006:FFFFFFFF:Infinite Energy
:g_gbus:00000000:E00049:00000001:FFFFFFFF:Invincibility:FLicker Invincibility - doesn't protect against everything though
:g_gbus:00000000:E0FE1D:00000063:FFFFFFFF:Infinite Bombs

; [ Ghostbusters (W) (REV00) [!] ]
:g_gbus00:00000000:E0FE2B:00000063:FFFFFFFF:Infinite Lives
:g_gbus00:00000000:E0FE2C:00000010:FFFFFFFF:Infinite Life
:g_gbus00:00000000:E0FE32:00000006:FFFFFFFF:Infinite Energy
:g_gbus00:00000000:E00049:00000001:FFFFFFFF:Invincibility:FLicker Invincibility - doesn't protect against everything though
:g_gbus00:00000000:E0FE1D:00000063:FFFFFFFF:Infinite Bombs

; [ LHX Attack Chopper (UE) [!] ]
:g_lhx:60000000:000000:00000000:00000000:------------------------------
:g_lhx:60000000:000000:00000000:00000000:Cheats for the LHX Chopper
:g_lhx:60000000:000000:00000000:00000000:Don't Enable for the Apache!
:g_lhx:60000000:000000:00000000:00000000:------------------------------
:g_lhx:00100000:E0F1BC:0000270F:FFFFFFFF:Infinite 20mm Chain Gun Ammo
:g_lhx:00100000:E0F1BE:0000270F:FFFFFFFF:Infinite Sidewinders
:g_lhx:00100000:E0F1C0:0000270F:FFFFFFFF:Infinite Hellfires
:g_lhx:60000000:000000:00000000:00000000:-------------------------------
:g_lhx:60000000:000000:00000000:00000000:Cheats for the Apache Chopper
:g_lhx:60000000:000000:00000000:00000000:Don't Enable for the LHX!
:g_lhx:60000000:000000:00000000:00000000:-------------------------------
:g_lhx:00100000:E0F1BC:0000270F:FFFFFFFF:Infinite 30mm Chain Gun Ammo
:g_lhx:00300000:E0F1BE:00630063:FFFFFFFF:Infinite Hellfires
:g_lhx:00100000:E0F1C2:00000063:FFFFFFFF:Infinite Sidewinders

; [ LHX Attack Chopper (J) [!] ]
:g_lhxj:60000000:000000:00000000:00000000:------------------------------
:g_lhxj:60000000:000000:00000000:00000000:Cheats for the LHX Chopper
:g_lhxj:60000000:000000:00000000:00000000:Don't Enable for the Apache!
:g_lhxj:60000000:000000:00000000:00000000:------------------------------
:g_lhxj:00100000:E0F1BC:0000270F:FFFFFFFF:Infinite 20mm Chain Gun Ammo
:g_lhxj:00100000:E0F1BE:0000270F:FFFFFFFF:Infinite Sidewinders
:g_lhxj:00100000:E0F1C0:0000270F:FFFFFFFF:Infinite Hellfires
:g_lhxj:60000000:000000:00000000:00000000:-------------------------------
:g_lhxj:60000000:000000:00000000:00000000:Cheats for the Apache Chopper
:g_lhxj:60000000:000000:00000000:00000000:Don't Enable for the LHX!
:g_lhxj:60000000:000000:00000000:00000000:-------------------------------
:g_lhxj:00100000:E0F1BC:0000270F:FFFFFFFF:Infinite 30mm Chain Gun Ammo
:g_lhxj:00300000:E0F1BE:00630063:FFFFFFFF:Infinite Hellfires
:g_lhxj:00100000:E0F1C2:00000063:FFFFFFFF:Infinite Sidewinders

; [ Flintstones, The (U) [c][!] ]
:g_flin:00000000:E00155:00000009:FFFFFFFF:Infinite Lives
:g_flin:00000000:E02F00:00000006:FFFFFFFF:Infinite Energy
:g_flin:20900000:00A466:00004E75:FFFFFFFF:Invincibility:Either enable this when you are flickering or the first time you get hit it will be enabled

; [ Flintstones, The (E) [c][!] ]
:g_flinte:00000000:E00155:00000009:FFFFFFFF:Infinite Lives
:g_flinte:00000000:E02F00:00000006:FFFFFFFF:Infinite Energy
:g_flinte:20900000:00A42C:00004E75:FFFFFFFF:Invincibility:Either enable this when you are flickering or the first time you get hit it will be enabled

; [ Flintstones, The (J) [c][!] ]
:g_flintj:00000000:E00155:00000009:FFFFFFFF:Infinite Lives
:g_flintj:00000000:E02F00:00000006:FFFFFFFF:Infinite Energy
:g_flintj:20900000:00A050:00004E75:FFFFFFFF:Invincibility:Either enable this when you are flickering or the first time you get hit it will be enabled

; [ Mega Turrican (U) [!] ]
:g_mtur:00100000:E0BF28:00000999:FFFFFFFF:Infinite Time
:g_mtur:00000000:E0BF26:00000099:FFFFFFFF:Infinite Lives
:g_mtur:00000000:E0BF20:00000040:FFFFFFFF:Infinite Energy
:g_mtur:00000000:E0BCF3:00000003:FFFFFFFF:Invincibility

; [ Mega Turrican (E) [!] ]
:g_mturre:00100000:E0BF28:00000999:FFFFFFFF:Infinite Time
:g_mturre:00000000:E0BF26:00000099:FFFFFFFF:Infinite Lives
:g_mturre:00000000:E0BF20:00000040:FFFFFFFF:Infinite Energy
:g_mturre:00000000:E0BCF3:00000003:FFFFFFFF:Invincibility

; [ Ghouls 'N Ghosts (UE) (REV02) [!] ]
:g_gng:00100000:E0B048:00000959:FFFFFFFF:Infinite Time
:g_gng:62000000:000000:00000000:00000000:Invincibility
:g_gng:00010000:E0B317:000000FF:FFFFFFFF:Enabled
:g_gng:00010000:E0B317:00000000:FFFFFFFF:Disabled
:g_gng:00000000:E0B213:00000003:FFFFFFFF:Infinite Lives PL1
:g_gng:00000000:E0B273:00000003:FFFFFFFF:Infinite Lives PL2

; [ Ghouls 'N Ghosts (UE) (REV01) [!] ]
:g_gng01:00100000:E0B048:00000959:FFFFFFFF:Infinite Time
:g_gng01:62000000:000000:00000000:00000000:Invincibility
:g_gng01:00010000:E0B317:000000FF:FFFFFFFF:Enabled
:g_gng01:00010000:E0B317:00000000:FFFFFFFF:Disabled
:g_gng01:00000000:E0B213:00000003:FFFFFFFF:Infinite Lives PL1
:g_gng01:00000000:E0B273:00000003:FFFFFFFF:Infinite Lives PL2

; [ Super Airwolf (J) [!] ]
:g_sair:00000000:E02E50:0000000B:FFFFFFFF:Infinite Lives
:g_sair:00000000:E00442:0000000A:FFFFFFFF:Invincibility:You may get an exploded sprite on first turning this cheat ON or at the start of levels or after calling for Airwolf but it quickly returns to normal.
:g_sair:00010000:E00418:00000000:00000001:Invincibility (2/2):Part 2 is the flicker address, 0=Visible, 1 = Invisible
:g_sair:00000000:E02E16:0000000A:FFFFFFFF:Infinite Bombs
:g_sair:00000000:E02E14:00000009:FFFFFFFF:Infinite Shields

; [ Devil Crash MD (J) [!] ]
:g_dcmd:00000000:E0F637:00000063:FFFFFFFF:Infinite Lives PL1
:g_dcmd:00000000:E0F63D:00000063:FFFFFFFF:Infinite Lives PL2

; [ Escape From Mars Starring Taz (U) [!] ]
:g_taz2:00000000:E0D04F:00000009:FFFFFFFF:Infinite Lives
:g_taz2:00000000:E0CCAC:0000000C:FFFFFFFF:Infinite Energy
:g_taz2:00000000:E0CC3B:00000002:00000002:Invincibility

; [ Escape From Mars Starring Taz (E) [!] ]
:g_taz2e:00000000:E0D04F:00000009:FFFFFFFF:Infinite Lives
:g_taz2e:00000000:E0CCAC:0000000C:FFFFFFFF:Infinite Energy
:g_taz2e:00000000:E0CC3B:00000002:00000002:Invincibility

; [ Robocop 3 (UE) [!] ]
:g_robo3:00100000:E00906:00000959:FFFFFFFF:Infinite Time
:g_robo3:00000000:E009AB:00000004:FFFFFFFF:Infinite Lives
:g_robo3:00000000:E00921:00000040:FFFFFFFF:Infinite Energy

; [ Chuck Rock (E) [c][!] ]
:g_chkrke:00000000:E006D1:00000009:FFFFFFFF:Infinite Lives
:g_chkrke:00000000:E006D5:00000007:FFFFFFFF:Infinite Energy
:g_chkrke:00000000:E00657:00000003:FFFFFFFF:Invincibility

; [ Chuck Rock (U) [c][!] ]
:g_chuk:00000000:E006D1:00000009:FFFFFFFF:Infinite Lives
:g_chuk:00000000:E006D5:00000007:FFFFFFFF:Infinite Energy
:g_chuk:00000000:E00657:00000003:FFFFFFFF:Invincibility

; [ Chuck Rock  [!] (Master System) ]
:s_chuck:00000000:C08E:0000000A:FFFFFFFF:Infinite Lives
:s_chuck:00000000:C08F:00000006:FFFFFFFF:Infinite Energy
:s_chuck:00000000:C111:00000002:FFFFFFFF:Invincibility

; [ Chuck Rock 2  [!] (Master System) ]
:s_chuck2:00000000:DD5C:00000009:FFFFFFFF:Infinite Lives
:s_chuck2:00000000:DD5D:00000007:FFFFFFFF:Infinite Energy
:s_chuck2:00000000:DD5E:00000003:FFFFFFFF:Invincibility

; [ Zero the Kamikaze Squirrel (U) [!] ]
:g_ztks:00000000:E00135:00000099:FFFFFFFF:Infinite Lives
:g_ztks:00000000:E00139:00000006:FFFFFFFF:Infinite Energy
:g_ztks:00000000:E00621:00000002:FFFFFFFF:Invincibility
:g_ztks:00100000:E0013A:00000999:FFFFFFFF:Infinite Ammo

; [ Zero the Kamikaze Squirrel (E) [!] ]
:g_ztkse:00000000:E00135:00000099:FFFFFFFF:Infinite Lives
:g_ztkse:00000000:E00139:00000006:FFFFFFFF:Infinite Energy
:g_ztkse:00000000:E00621:00000002:FFFFFFFF:Invincibility
:g_ztkse:00100000:E0013A:00000999:FFFFFFFF:Infinite Ammo

; [ Zero Wing (E) [c][!] ]
:g_zwin:00000000:E000FD:00000063:FFFFFFFF:Infinite Lives
:g_zwin:20900000:002AFC:00006000:FFFFFFFF:Invincibility
:g_zwin:20910000:002B52:00000002:FFFFFFFF:Invincibility (2/2):Part 1 is for sprite-sprite/Part 2 is for sprite/background

; [ Zero Wing (J) ]
:g_zwingj:00000000:E000FD:00000063:FFFFFFFF:Infinite Lives
:g_zwingj:20900000:002B0E:00006000:FFFFFFFF:Invincibility
:g_zwingj:20910000:002B64:00000002:FFFFFFFF:Invincibility (2/2):Part 1 is for sprite-sprite/Part 2 is for sprite/background
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)
User avatar
Gaius_4
Posts: 138
Joined: Sun Oct 26, 2003 2:27 pm

Post by Gaius_4 »

Pugsy, or anyone that knows: I was trying to find cheats for Gaiares [g_gaia], but when I went to view the last (19) results, I wanted to Watch them by pressing 'W' when each one was highlighted. But instead of getting a column of numbers I could watch when things changed in the game - it kept only one number there.... :-?

Is this something that was changed (and if so -why?) or is it a 'bug' in the cheat dat?

I'm using the one you had for download a few posts up.
____________________________
52 posts w00t! eh, Nevermind. :)
As always, your patients is appreciated. :cool:
HazeMame
Posts: 15
Joined: Mon Aug 14, 2006 2:49 pm

Post by HazeMame »

It's a bug in the current versions of MAME, and it doesn't look like Aaron is very interested in fixing it.
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:

Post by Pugsy »

It's a bug caused by some of the variables being changed from int to float, ShimaPong has included a temp fix for it in his modified cheat.c here:

viewtopic.php?t=2461
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)
EmuZoneAD
Posts: 32
Joined: Wed Jan 28, 2004 7:37 am

Post by EmuZoneAD »

Code: Select all

; [ 16 Tiles Mahjong (Unl) ] 
:g_16tile:00000000:00E00431:00000031:FFFFFFFF:Always winning hand
:g_16tile:00010000:00E00433:00000031:FFFFFFFF:Always winning hand
:g_16tile:00010000:00E00435:00000031:FFFFFFFF:Always winning hand
:g_16tile:00010000:00E00437:00000033:FFFFFFFF:Always winning hand
:g_16tile:00010000:00E00439:00000033:FFFFFFFF:Always winning hand
:g_16tile:00010000:00E0043B:00000033:FFFFFFFF:Always winning hand
:g_16tile:00010000:00E0043D:00000035:FFFFFFFF:Always winning hand
:g_16tile:00010000:00E0043F:00000035:FFFFFFFF:Always winning hand
:g_16tile:00010000:00E00441:00000035:FFFFFFFF:Always winning hand
:g_16tile:00010000:00E00443:00000037:FFFFFFFF:Always winning hand
:g_16tile:00010000:00E00445:00000037:FFFFFFFF:Always winning hand
:g_16tile:00010000:00E00447:00000037:FFFFFFFF:Always winning hand
:g_16tile:00010000:00E00449:00000001:FFFFFFFF:Always winning hand
:g_16tile:00010000:00E0044B:00000001:FFFFFFFF:Always winning hand
:g_16tile:00010000:00E0044D:00000001:FFFFFFFF:Always winning hand
:g_16tile:00010000:00E0044F:00000002:FFFFFFFF:Always winning hand
:g_16tile:00010000:00E00451:00000002:FFFFFFFF:Always winning hand
:g_16tile:00010000:00E00217:00000002:FFFFFFFF:Always winning hand

; [ 16 Tiles Mahjong (Unl) ] 
:g_16ton:00000000:00E0C960:00000009:FFFFFFFF:Infinite Lives
:g_16ton:00000000:00E0C95F:00000009:FFFFFFFF:Infinite Ammo
:g_16ton:00000100:00E0C967:00000014:FFFFFFFF:Select Starting Stage

; [ Super Baseball 2020 (UE) [!] ] 
:g_2020:00000000:00E09940:00000000:FFFFFFFF:Infinite Strikes
:g_2020:00000000:00E09941:00000000:FFFFFFFF:Infinite Balls
:g_2020:00000000:00E09942:00000000:FFFFFFFF:Infinite Outs

; [ Super Baseball 2020 (J) [!] ] 
:g_2020j:00000000:00E09940:00000000:FFFFFFFF:Infinite Strikes
:g_2020j:00000000:00E09941:00000000:FFFFFFFF:Infinite Balls
:g_2020j:00000000:00E09942:00000000:FFFFFFFF:Infinite Outs

; [ Phantom 2040 (U) [!] ] 
:g_2040:00000000:E0804D:00000040:FFFFFFFF:Infinite Energy
:g_2040:00000000:E08045:00000008:FFFFFFFF:Infinite Lives
:g_2040:00000000:E08047:0000000F:FFFFFFFF:Infinite Bullets

; [ Phantom 2040 (E) [!] ] 
:g_2040e:00000000:E0804D:00000040:FFFFFFFF:Infinite Energy
:g_2040e:00000000:E08045:00000008:FFFFFFFF:Infinite Lives
:g_2040e:00000000:E08047:0000000F:FFFFFFFF:Infinite Bullets

; [ Two Crude Dudes (U) [!] ] 
:g_2cd:00000000:E046CB:00000009:FFFFFFFF:Infinite Lives PL1
:g_2cd:00000000:E04757:00000032:FFFFFFFF:Infinite Energy PL1
:g_2cd:00000000:E0477B:00000009:FFFFFFFF:Infinite Lives PL2
:g_2cd:00000000:E04807:00000032:FFFFFFFF:Infinite Energy PL2

; [ Second Samurai, The (E) ] 
:g_2sam:00000000:E0553B:00000009:FFFFFFFF:Infinite Lives PL1
:g_2sam:00000000:E05537:00000064:FFFFFFFF:Infinite Energy PL1
:g_2sam:00000000:E055BC:00000005:FFFFFFFF:Always have sword PL1
:g_2sam:00000000:E055BD:00000005:FFFFFFFF:Always have super slash PL1
:g_2sam:00000000:E05453:00000009:FFFFFFFF:Infinite Lives PL2
:g_2sam:00000000:E0544F:00000064:FFFFFFFF:Infinite Energy PL2
:g_2sam:00000000:E054D4:00000005:FFFFFFFF:Always have sword PL2
:g_2sam:00000000:E054D5:00000005:FFFFFFFF:Always have super slash PL2

; [ 3 Ninjas Kick Back (U) [!] ] 
:g_3nin:00000000:E0A375:00000099:FFFFFFFF:Infinite Time
:g_3nin:00000000:E0A3BF:00000099:FFFFFFFF:Infinite Lives PL1
:g_3nin:00000000:E0A3C5:00000006:FFFFFFFF:Infinite Energy PL1
:g_3nin:00000000:E0A3CB:00000099:FFFFFFFF:Infinite Bombs PL1
:g_3nin:00000000:E0A3C3:00000099:FFFFFFFF:Infinite Money PL1
:g_3nin:00000000:E0A40D:000000FF:FFFFFFFF:Always Max Shot Power PL1
:g_3nin:00000000:E0A47F:00000099:FFFFFFFF:Infinite Lives PL2
:g_3nin:00000000:E0A485:00000006:FFFFFFFF:Infinite Energy PL2
:g_3nin:00000000:E0A48B:00000099:FFFFFFFF:Infinite Bombs PL2
:g_3nin:00000000:E0A483:00000099:FFFFFFFF:Infinite Money PL2
:g_3nin:00000000:E0A40D:000000FF:FFFFFFFF:Always Max Shot Power PL2
:g_3nin:00000100:E0F245:00000011:FFFFFFFF:Select Starting Stage

; [ Darwin 4081 (J) [!] ] 
:g_4081:00000000:E01009:00000009:FFFFFFFF:Infinite Lives
:g_4081:00000100:E0203A:0000000B:FFFFFFFF:Select speed
:g_4081:00000100:E0203C:000000FF:FFFFFFFF:Select DNA
:g_4081:00000100:E0043F:00000009:FFFFFFFF:Select Starting Stage

; [ Darwin 4081 (J) [!] ] 
:g_4in1:60000000:00000000:00000000:00000000:[   01 REAL DEAL BOXING ]
:g_4in1:00000000:E0F01F:00000009:FFFFFFFF:Infinite Time
:g_4in1:00000000:E0F1A5:00000033:FFFFFFFF:Infinite Energy PL1
:g_4in1:60000000:00000000:00000000:00000000:[     02 BARE KNUCKLE   ]
:g_4in1:00000000:E0FB01:00000040:FFFFFFFF:Infinite Time
:g_4in1:00000000:E0FF20:00000009:FFFFFFFF:Infinite Lives PL1
:g_4in1:00000000:E0B833:00000050:FFFFFFFF:Infinite Energy PL1
:g_4in1:00000000:E0FF21:00000009:FFFFFFFF:Infinite Bombs PL1
:g_4in1:00000000:E0FF21:00000009:FFFFFFFF:Infinite Lives PL2
:g_4in1:00000000:E0B8B3:00000050:FFFFFFFF:Infinite Energy PL2
:g_4in1:00000000:E0FF24:00000009:FFFFFFFF:Infinite Bombs PL2
:g_4in1:62000000:000000:00000000:00000000:Select Starting Stage:Set on character selection screen 
:g_4in1:00010000:E0FF03:00000000:FFFFFFFF:Stage 1
:g_4in1:00010000:E0FF03:00000001:FFFFFFFF:Stage 2
:g_4in1:00010000:E0FF03:00000002:FFFFFFFF:Stage 3
:g_4in1:00010000:E0FF03:00000003:FFFFFFFF:Stage 4
:g_4in1:00010000:E0FF03:00000004:FFFFFFFF:Stage 5
:g_4in1:00010000:E0FF03:00000005:FFFFFFFF:Stage 6
:g_4in1:00010000:E0FF03:00000006:FFFFFFFF:Stage 7
:g_4in1:00010000:E0FF03:00000007:FFFFFFFF:Stage 8
:g_4in1:60000000:00000000:00000000:00000000:[    03 Sunset Riders  ]
:g_4in1:00000000:E0B099:00000009:FFFFFFFF:Infinite Lives PL1
:g_4in1:00000000:E0CA42:00000003:FFFFFFFF:Always Max Shot Power PL1
:g_4in1:00000000:E0CA4F:00000046:FFFFFFFF:Invincibility PL1
:g_4in1:00000000:E0B09B:00000009:FFFFFFFF:Infinite Lives PL2
:g_4in1:00000000:E0CAC2:00000003:FFFFFFFF:Always Max Shot Power PL2
:g_4in1:00000000:E0CACF:00000046:FFFFFFFF:Invincibility PL2
:g_4in1:60000000:00000000:00000000:00000000:[    04 ROBOCOP III    ]
:g_4in1:00000000:E00907:00000009:FFFFFFFF:Infinite Time
:g_4in1:00000000:E009AB:00000004:FFFFFFFF:Infinite Lives
:g_4in1:00000000:E00921:00000040:FFFFFFFF:Infinite Energy
:g_4in1:00000000:E00927:00000099:FFFFFFFF:Always have 3 way gun
:g_4in1:00000000:E00937:00000099:FFFFFFFF:Infinite Ammo
:g_4in1:00010000:E00939:00000099:FFFFFFFF:Infinite Ammo

; [ 688 Attack Sub (UE) [!] ] 
:g_688a:00000000:E04692:00000000:FFFFFFFF:Infinite Time
:g_688a:00010000:E04693:00000000:FFFFFFFF:Infinite Time
:g_688a:00010000:E04694:00000000:FFFFFFFF:Infinite Time
:g_688a:00010000:E04695:00000000:FFFFFFFF:Infinite Time
:g_688a:00010000:E04696:00000000:FFFFFFFF:Infinite Time
:g_688a:00010000:E04697:00000000:FFFFFFFF:Infinite Time

; [ 777 Casino (Unl) ] 
:g_777cas:00000000:E09350:00000009:FFFFFFFF:Infinite Money PL1
:g_777cas:00010000:E09351:00000009:FFFFFFFF:Infinite Money PL1
:g_777cas:00010000:E09352:00000009:FFFFFFFF:Infinite Money PL1
:g_777cas:00010000:E09353:00000009:FFFFFFFF:Infinite Money PL1
:g_777cas:00010000:E09354:00000009:FFFFFFFF:Infinite Money PL1
:g_777cas:00010000:E09355:00000009:FFFFFFFF:Infinite Money PL1
:g_777cas:00010000:E09356:00000009:FFFFFFFF:Infinite Money PL1
:g_777cas:00010000:E09357:00000009:FFFFFFFF:Infinite Money PL1
:g_777cas:00000000:E093F0:00000009:FFFFFFFF:Infinite Money PL2
:g_777cas:00010000:E093F1:00000009:FFFFFFFF:Infinite Money PL2
:g_777cas:00010000:E093F2:00000009:FFFFFFFF:Infinite Money PL2
:g_777cas:00010000:E093F3:00000009:FFFFFFFF:Infinite Money PL2
:g_777cas:00010000:E093F4:00000009:FFFFFFFF:Infinite Money PL2
:g_777cas:00010000:E093F5:00000009:FFFFFFFF:Infinite Money PL2
:g_777cas:00010000:E093F6:00000009:FFFFFFFF:Infinite Money PL2
:g_777cas:00010000:E093F7:00000009:FFFFFFFF:Infinite Money PL2

; [ Aah! Harimanada (J) [!] ] 
:g_aahh:00000000:E02E62:00000064:FFFFFFFF:Infinite Energy PL1
:g_aahh:00000000:E02E62:00000080:FFFFFFFF:Drain All Energy PL1
:g_aahh:00000000:E03562:00000064:FFFFFFFF:Infinite Energy PL2
:g_aahh:00000000:E03562:00000080:FFFFFFFF:Drain All Energy PL2

; [ Altered Beast (UE) (REV02) [!] ] 
:g_abea:00000000:E0B120:00000005:FFFFFFFF:Infinite Lives
:g_abea:00000000:E0CF10:0000000C:FFFFFFFF:Infinite Lives
:g_abea:00000000:E0D02B:00000003:FFFFFFFF:Always Beast - wolf
:g_abea:00000000:E0D02B:00000004:FFFFFFFF:Always Beast - tiger
:g_abea:00000000:E0D02B:00000005:FFFFFFFF:Always Beast - bear
:g_abea:00000000:E0D02B:00000006:FFFFFFFF:Always Beast - dragon

; [ Altered Beast (UE) (REV02) [!] ] 
:g_abu2:00000000:E006C3:00000005:FFFFFFFF:Infinite Lives
:g_abu2:00000000:E006C5:0000003C:FFFFFFFF:Infinite Missiles

; [ After Burner II (J) [!] ] 
:g_abrn2j:00000000:E006C3:00000005:FFFFFFFF:Infinite Lives
:g_abrn2j:00000000:E006C5:0000003C:FFFFFFFF:Infinite Missiles

; [ Aero Blasters (J) [!] ] 
:g_abz2:00000000:E0001F:00000063:FFFFFFFF:Infinite Money

; [ Aero Blasters (J) [!] ] 
:g_acr2:00000000:E00047:00000009:FFFFFFFF:Infinite Lives
:g_acr2:00000000:E00201:00000005:FFFFFFFF:Infinite Energy
:g_acr2:00000000:E00369:00000064:FFFFFFFF:Invincibility
:g_acr2:00000000:E00049:00000099:FFFFFFFF:Infinite stars

; [ Aero the Acro-Bat 2 (E) [!] ] 
:g_acro2e:00000000:E00047:00000009:FFFFFFFF:Infinite Lives
:g_acro2e:00000000:E00201:00000005:FFFFFFFF:Infinite Energy
:g_acro2e:00000000:E00369:00000064:FFFFFFFF:Invincibility
:g_acro2e:00000000:E00049:00000099:FFFFFFFF:Infinite stars
User avatar
Gaius_4
Posts: 138
Joined: Sun Oct 26, 2003 2:27 pm

Post by Gaius_4 »

Pugsy wrote:It's a bug caused by some of the variables being changed from int to float, ShimaPong has included a temp fix for it in his modified cheat.c here:

viewtopic.php?t=2461
You mean the 3rd update with the winzip file you download? It says I need a password to open the file. :-?
As always, your patients is appreciated. :cool:
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:

Post by Pugsy »

Thanks for those EmuZoneAD

Gaius_4, the password is mentioned in the very first post in that thread
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)
HazeMame
Posts: 15
Joined: Mon Aug 14, 2006 2:49 pm

Post by HazeMame »

works, but you'll have to select restart level manually when you die from falling..
:g_princ2:00000000:E04C4F:00000002:FFFFFFFF:Infinite Energy

very poor sequel, you can see why it was canned.
User avatar
Gaius_4
Posts: 138
Joined: Sun Oct 26, 2003 2:27 pm

Post by Gaius_4 »

Here's some codes for Gaiares [g_gaia]

:g_gaia:00000000:E09B41:00000044:FFFFFFFF:Infinite Lives
:g_gaia:00010000:E0F3E1:00000004:FFFFFFFF:Infinite Lives

:g_gaia:00000000:E0F5A1:00000002:FFFFFFFF:Maximum Weapon Level

:g_gaia:00010000:E0F565:0000000A:FFFFFFFF:weapon select
:g_gaia:00010000:E0F567:0000000A:FFFFFFFF:weapon select
:g_gaia:00000000:E0F5A0:00000003:FFFFFFFF:weapon select



This last one is NOT complete. In fact with those 3 lines more cheats could be made, or one 'select weapon type' (which I originally wanted) could be made.

For E0F5A0 the weapon types are these

00 I-VULCAN
01 P-CANNON
02 G-BEAM
03 S-LASER
04 T-MISSLE
05 H-LASER
06 V-LASER
07 R-COLLIDERE
08 E-SMASH
09 F-FORMATION
0A T-VULCAN
0B A-BULLET
0C T-BRASTER (Yes, surely it's Engrish :P )

and the addresses of EOF565 and EOF567 are...

00 I-VULCAN
08 P-CANNON
09 G-BEAM
0A S-LASER
0B T-MISSLE
0C H-LASER
0D V-LASER
0E R-COLLIDERE
0F E-SMASH
10 F-FORMATION
11 T-VULCAN
12 A-BULLET
13 T-BRASTER

If you switch to a different weapon during the game the graphics are buggy.

I forget how to make the different choices selectable so someone will need to fix this (if they want to/have the time).

BTW: the weapon select [bytes] are on the S.Laser.
As always, your patients is appreciated. :cool:
ShimaPong
Posts: 1063
Joined: Wed May 21, 2003 4:19 pm
Location: Japan

Post by ShimaPong »

I can't understand several Gaius_4's codes.
Anyway, the following is from my database.

Code: Select all

; [ Gaiares (JU) [!] ]
:g_gaia:00000000:E0F3E1:00000009:FFFFFFFF:Infinite Lives
:g_gaia:20800000:00331C:00000060:FFFFFFFF:Invincibility
:g_gaia:20810000:007415:00000022:FFFFFFFF:Invincibility (2/3):1st = Scenery, 2nd = Object
:g_gaia:20910000:00743E:00004E75:FFFFFFFF:Invincibility (3/3):Trap
:g_gaia:00300000:E0F5A1:02020202:FFFFFFFF:Maximum Shot Power
:g_gaia:00310000:E0F5A5:02020202:FFFFFFFF:Maximum Shot Power (2/3)
:g_gaia:00310000:E0F5A9:02020202:FFFFFFFF:Maximum Shot Power (3/3)
:g_gaia:62000000:000000:00000000:00000000:Select Weapon (Buggy):Gfx glitch
:g_gaia:00010000:E0F5A0:00000000:FFFFFFFF:I-Vulcan
:g_gaia:00010000:E0F5A0:00000001:FFFFFFFF:P-Cannon
:g_gaia:00010000:E0F5A0:00000002:FFFFFFFF:G-Beam
:g_gaia:00010000:E0F5A0:00000003:FFFFFFFF:S-Laser
:g_gaia:00010000:E0F5A0:00000004:FFFFFFFF:T-Missile
:g_gaia:00010000:E0F5A0:00000005:FFFFFFFF:H-Laser
:g_gaia:00010000:E0F5A0:00000006:FFFFFFFF:V-Laser
:g_gaia:00010000:E0F5A0:00000007:FFFFFFFF:R-Collidere
:g_gaia:00010000:E0F5A0:00000008:FFFFFFFF:E-Smash
:g_gaia:00010000:E0F5A0:00000009:FFFFFFFF:F-Formation
:g_gaia:00010000:E0F5A0:0000000A:FFFFFFFF:T-Vulcan
:g_gaia:00010000:E0F5A0:0000000B:FFFFFFFF:A-Bullet
:g_gaia:00010000:E0F5A0:0000000C:FFFFFFFF:T-Braster
:g_gaia:00000000:E0F5B4:00000002:FFFFFFFF:Maximum Missile Power
:g_gaia:00000000:E0F509:00000005:FFFFFFFF:Infinite Shield
User avatar
Gaius_4
Posts: 138
Joined: Sun Oct 26, 2003 2:27 pm

Post by Gaius_4 »

I was trying to say that for those 3 different addresses (which all changed when a new weapon was obtained) changed to those numbers/bytes. Using that information someone could make the proper codes. I didn't have time to make all those out and couldn't remember how to make it so that the player could choose whichever one he/she wanted.

Thanks. :-?

Edit: There might be one more cheat you want to get. You have maximum missle power, but there is also the homing missle. You can get it from the little pod things that are on the ground, they're in the area just before you get to the first stage's boss.
As always, your patients is appreciated. :cool:
Post Reply