[janyuki] Jong Yu Ki (Japan)
Posted: Sun Mar 24, 2013 11:50 pm
Here are the codes for a winning hand, and the watch player/CPU hands ones as well. Curiously enough, they're all the same as in "[jantouki] Jong Tou Ki (Japan)", tested and working. The last two tiles seem to look slightly odd in both games when used, but they're fine. In any case, here they are.
Code: Select all
<cheat desc="Get winning hand Now!">
<script state="on">
<action>maincpu.pd@7001=32313131</action>
<action>maincpu.pd@7005=33333232</action>
<action>maincpu.pd@7009=34343433</action>
<action>maincpu.pw@700D=3535</action>
</script>
</cheat>
<cheat desc="Always winning hand">
<script state="run">
<action>maincpu.pd@7001=32313131</action>
<action>maincpu.pd@7005=33333232</action>
<action>maincpu.pd@7009=34343433</action>
<action>maincpu.pw@700D=3535</action>
</script>
</cheat>
<cheat desc="Watch ALL 14 tiles - Player">
<script state="run">
<output format="%02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X">
<argument count="14">maincpu.pb@(7001 + argindex)</argument>
</output>
</script>
</cheat>
<cheat desc="Watch ALL 14 tiles - C.P.U.">
<script state="run">
<output format="%02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X %02X">
<argument count="14">maincpu.pb@(700F + argindex)</argument>
</output>
</script>
</cheat>