Killer Instinct 2 (v1.4) [MAME]
I made these codes to be able to rip sprites from the game easily, though for some reason there is still one more layer I have yet to disable which is still overlaying a very fine light grey grid over the removed background elements that will have to be removed in your photo editor of choice. It may cause a tab bit of slowdown when enabled, but it's intended for sprite ripping only and not actual play. You can see some sprites I ripped (sorry if they suck!) for certain unused moves using this code here (I didn't rip the Orchid ones).
Code:
<cheat desc="Hide Kim Wu Dojo Stage">
<comment>Only works on Dojo stage. May cause a small bit of slowdown.</comment>
<script state="run">
<action>maincpu.pb@887FEB83=49</action>
<action>maincpu.pb@887FEB09=01</action>
<action>maincpu.pb@887FEB28=0F</action>
</script>
<script state="off">
<action>maincpu.pb@887FEB83=43</action>
<action>maincpu.pb@887FEB09=00</action>
<action>maincpu.pb@887FEB28=00</action>
</script>
</cheat>
<cheat desc="Hide Player 1 Shadow">
<comment>Works on all stages.</comment>
<script state="run">
<action>maincpu.pb@887FC145=02</action>
</script>
<script state="off">
<action>maincpu.pb@887FC145=00</action>
</script>
</cheat>
<cheat desc="Hide Player 2 Shadow">
<comment>Works on all stages.</comment>
<script state="run">
<action>maincpu.pb@887FC245=02</action>
</script>
<script state="off">
<action>maincpu.pb@887FC245=00</action>
</script>
</cheat>



Comment