Search found 3360 matches
- Sun Jun 26, 2022 3:13 pm
- Forum: M.A.M.E. "Arcade" Cheats
- Topic: [polynetw] basic cheats
- Replies: 0
- Views: 44
[polynetw] basic cheats
Some quick RAM cheats for this game that was recently fixed: polynetw.xml <mamecheat version="1"> <cheat desc="Infinite Credits"> <script state="run"> <action>maincpu.ppb@FF9FEA=63</action> </script> </cheat> <cheat desc="Infinite Time"> <script state="on...
- Wed Jun 15, 2022 11:59 pm
- Forum: Cheat Related Announcements
- Topic: 0.221 XML Cheat Collection is OUT!
- Replies: 6
- Views: 1517
Re: 0.221 XML Cheat Collection is OUT!
Thanks for the spot, I've fixed them for the next release.
- Sun Jun 05, 2022 4:53 pm
- Forum: M.A.M.E. "Arcade" Cheats
- Topic: [megrescu] cheats
- Replies: 0
- Views: 80
[megrescu] cheats
Just noticed cheats for this have been posted already (doh!)...but these do differ, the firemen "invincibility" here is simpler and there's a cheat to stop fire spreading and cheats for the 3 ways of finishing the level. megrescu.xml:- <mamecheat version="1"> <cheat desc="In...
- Mon May 23, 2022 12:37 am
- Forum: Cheat Related Announcements
- Topic: cheat lua plugins
- Replies: 99
- Views: 72638
Re: cheat lua plugins
Thanks, that's sorted it.
- Sun May 22, 2022 6:44 pm
- Forum: M.A.M.E. "Arcade" Cheat Requests
- Topic: [combatsc] sound test cheats
- Replies: 3
- Views: 84
Re: [combatsc] sound test cheats
Quick one, try this: <cheat desc="Sound Test Timer Stop"> <comment>Press the P2 button to increase the sound number</comment> <script state="on"> <action>temp0 =maincpu.mb@27ECD</action> </script> <script state="run"> <action>maincpu.mb@27ECD=B6</action> </script> <scri...
- Sun May 15, 2022 9:28 pm
- Forum: M.A.M.E. "Arcade" Cheat Requests
- Topic: [umk3] Need Help with Ultimate Mortal Kombat 3 Galaga Mini Game Cheat Search
- Replies: 6
- Views: 149
Re: [umk3] Need Help with Ultimate Mortal Kombat 3 Galaga Mini Game Cheat Search
85C7480/8 or simply 10B8E90 is the lives address - 85C7480 is the address you posted above.
59F38 is the program code address for invincibility (not what you asked for - and unrelated to infinite lives).
59F38 is the program code address for invincibility (not what you asked for - and unrelated to infinite lives).
- Sat May 14, 2022 2:26 pm
- Forum: Cheat Related Announcements
- Topic: cheat lua plugins
- Replies: 99
- Views: 72638
Re: cheat lua plugins
@crazyc I am running through some tests for the next cheat file update, there seems to be a problem with 'height' in the json/lua hitbox viewer cheats. error cheat script error: "Hitbox viewer" [string "Hitbox vieweron"]:223: attempt to call a number value (method 'height') So fa...
- Sat May 14, 2022 12:49 am
- Forum: M.A.M.E. "Arcade" Cheat Requests
- Topic: [umk3] Need Help with Ultimate Mortal Kombat 3 Galaga Mini Game Cheat Search
- Replies: 6
- Views: 149
Re: [umk3] Need Help with Ultimate Mortal Kombat 3 Galaga Mini Game Cheat Search
Midway games memory can be odd for sure
Try dividing the address found by 8...
Try :-
And as a side note, just knocked up a quick ROM Invincibility for what it's worth...
Try dividing the address found by 8...
Try :-
Code: Select all
maincpu.pb@(85C7480/8)=09
And as a side note, just knocked up a quick ROM Invincibility for what it's worth...
Code: Select all
maincpu.mw@59F38=c001
- Sun Apr 17, 2022 9:11 pm
- Forum: M.A.M.E. "Arcade" Cheats
- Topic: [timetrv]+ lives and auto complete
- Replies: 0
- Views: 105
[timetrv]+ lives and auto complete
These will make the game a breeze to complete:- timetrv.xml:- <mamecheat version="1"> <cheat desc="Infinite Lives"> <script state="run"> <action>maincpu.ppb@00794=09</action> </script> </cheat> <cheat desc="Auto Complete"> <comment>You don't have to do anythin...
- Mon Apr 11, 2022 12:22 am
- Forum: M.A.M.E. "Arcade" Cheat Requests
- Topic: Needed cheat codes that make easy the special moves for KoF
- Replies: 4
- Views: 268
Re: Needed cheat codes that make easy the special moves for KoF
I'm sorry if you are using cheat.dat then the version of MAME you are using was released over 13 years ago (at least). The reason you are missing lots of files is because you are missing lots of files. Lots of games have been dumped/redumped over the last 13 years and romsets have changed names. The...
- Sun Apr 10, 2022 3:06 pm
- Forum: M.A.M.E. "Arcade" Cheat Requests
- Topic: Needed cheat codes that make easy the special moves for KoF
- Replies: 4
- Views: 268
Re: Needed cheat codes that make easy the special moves for KoF
KelvSYC made a load of movelist cheats years ago, I converted them into XML format back in 2010. I've said before as they stand they are not going to get readded to the cheat file. You can of course just add cheatmlc to the cheat path In mame.ini change cheatpath cheat; to cheatpath cheat;cheatmlc a...
- Sat Apr 09, 2022 1:42 pm
- Forum: Cheat Related Announcements
- Topic: 0.221 XML Cheat Collection is OUT!
- Replies: 6
- Views: 1517
Re: 0.221 XML Cheat Collection is OUT!
I've been busy/occupied with real life stuff unfortunately. I was planning on a release before christmas but I lost interest due to a one sided discussion which made me question why I bother - so I didn't. I'm still considering what the best way forward is. Spambots got through as I'd left the gmail...
- Sat Mar 19, 2022 8:30 pm
- Forum: M.A.M.E. "Arcade" Cheat Requests
- Topic: [samsho2] Enable debug dip 2-7 (sprite viewer)
- Replies: 2
- Views: 181
Re: [samsho2] Enable debug dip 2-7 (sprite viewer)
DIP switches are bit related so you'd need to poke it with a mask, so something like this:-
maincpu.pb@100001=40|(maincpu.pb@100001 BAND ~40)
However, if it doesn't work with universe bios it's probably wont work with a MAME cheat either.
maincpu.pb@100001=40|(maincpu.pb@100001 BAND ~40)
However, if it doesn't work with universe bios it's probably wont work with a MAME cheat either.
- Wed Feb 02, 2022 12:15 am
- Forum: Duckstation PS1 Cheats
- Topic: Duckstation Cheats
- Replies: 2
- Views: 7926
Re: Duckstation Cheats
No, the cheat collection is included as part of Duckstation. If you have Duckstation then you already have the cheats.
- Thu Dec 30, 2021 9:25 pm
- Forum: M.A.M.E. "SoftwareList" Cheats
- Topic: [a5200/riveraid] River Raid
- Replies: 4
- Views: 464
Re: [a5200] River Raid
I've added the capability of firing over land and fixed a bug so you to die when you run out of fuel to the above. There's no need to add Infinite Energy to it as it exists seperately.
- Thu Dec 30, 2021 9:01 pm
- Forum: M.A.M.E. "SoftwareList" Cheats
- Topic: [a2600/riveraid+] River Raid
- Replies: 3
- Views: 293
Re: [a2600] + River Raid
Here's a better ROM Invincibility, you can still pick up fuel with this cheat. Whoever hacked the ROM did a dirty hack for that cheat as it just changes the zero page address stores to another address. <cheat desc="Invincibility"> <comment>Don't run out of fuel/energy - so enable the infin...
- Thu Dec 30, 2021 8:18 pm
- Forum: M.A.M.E. "SoftwareList" Cheats
- Topic: [a5200/riveraid] River Raid
- Replies: 4
- Views: 464
Re: [a5200] River Raid
Ok, had a look at Invincibility. Sprite/sprite collision code is around a3b6 and sprite background is around a3fc. <cheat desc="Invincibility"> <comment>Don't run out of fuel/energy - so enable the infinite cheat for the best effect</comment> <script state="on"> <action>temp0 =ca...
- Thu Dec 30, 2021 6:14 pm
- Forum: M.A.M.E. "Arcade" Cheat Requests
- Topic: Dodonpachi Saidaioujou Knuckles
- Replies: 5
- Views: 1045
Re: Dodonpachi Saidaioujou Knuckles
Knocked up some quick cheats, use these in the cheat.simple file with the plugin cheat engine. I will convert them into XML cheats for the next release. ddpsdoj,:maincpu,C1E112F,b,9,Infinite Credits ddpsdoj,:maincpu,C5F9973,b,8,P1 Infinite Lives ddpsdoj,:maincpu,C5F9976,b,6,P1 Infinite Bombs ddpsdoj...
- Thu Dec 30, 2021 2:36 pm
- Forum: M.A.M.E. "SoftwareList" Cheats
- Topic: [a5200/megmania] MegaMania
- Replies: 2
- Views: 117
Re: [a5200] MegaMania
A quick glance at the cheats and notice that you are Binary ANDing a word value with byte value, this wont work as you may have intended..
eg 140 is wrong for pb value, it should be between 01 to FF
maincpu.pb@00AF BAND 140
eg 140 is wrong for pb value, it should be between 01 to FF
maincpu.pb@00AF BAND 140
- Thu Dec 30, 2021 2:10 pm
- Forum: M.A.M.E. "SoftwareList" Cheats
- Topic: [a5200/vanguard] Vanguard
- Replies: 2
- Views: 107
Re: [a5200] Vanguard
Sorry about hijacking the thread, the notes about the Invincibility tickled my interest.... <cheat desc="Invincibility"> <comment>Dont run out of energy with this enabled or you will get stuck</comment> <script state="on"> <action>temp0 =cartleft:cart:rom.mb@5EC0</action> <action...