Skip to content

Instantly share code, notes, and snippets.

View 987123879113's full-sized avatar
🐳

987123879113

🐳
View GitHub Profile
@987123879113
987123879113 / mamboagg.xml
Created March 31, 2021 09:18
Mambo a Go Go/Mambo Heaven/Mambo King MAME cheat
<mamecheat version="1">
<cheat desc="Mambo Heaven (Asia ver)">
<script state="run">
<action>maincpu.pb@8017A772=02</action> <!-- English -->
<action>maincpu.pw@80093B2C=0003</action> <!-- Mambo Heaven title -->
</script>
</cheat>
<cheat desc="Mambo King (Korean ver)">
<script state="run">
<action>maincpu.pb@8017A772=02</action> <!-- English, Korean images aren't available in game data -->
@987123879113
987123879113 / ddrs2k.xml
Created March 31, 2021 09:08
Dancing Stage Solo MAME cheat
<!-- Region flag:
8009A838 = ...
01 North/South America
02 Europe
04 Asia
Language flag:
80115786 = ...
01 = Japanese
02 = English
@987123879113
987123879113 / ddr5m.xml
Last active April 5, 2021 04:48
DDR 6 Panel Solo Mode Cheats
<mamecheat version="1">
<cheat desc="Enable 6 Panel/Solo Mode">
<script state="run">
<action>maincpu.pd@8001c174=34020001</action>
<action>maincpu.pb@80016128=0a</action>
</script>
<script state="off">
<action>maincpu.pd@8001c174=00001021</action>
<action>maincpu.pb@80016128=01</action>
</script>
<mamecheat version="1">
<cheat desc="Change region flag">
<parameter>
<item value="01">North/South America</item>
<item value="02">Europe</item>
<item value="03">Japan</item>
<item value="04">Asia</item>
</parameter>
<script state="run">
<action>maincpu.pb@8009A838=param</action>
See: https://github.com/987123879113/gobbletools/blob/master/other/ddrcharttool.py
using System.IO;
using System.Linq;
using NUnit.Framework;
using RhythmCodex.Ddr.Converters;
using RhythmCodex.Ddr.Models;
using RhythmCodex.Ddr.Processors;
using RhythmCodex.Ddr.Streamers;
using RhythmCodex.Meta.Models;
using RhythmCodex.Ssq.Converters;
using RhythmCodex.Ssq.Streamers;