[nbajamte] unlock jam team and other cheats
Posted: Sat May 23, 2015 2:08 pm
first, current "P1+P2 Select Team 1" and "P3+P4 Select Team 2" probably doesn't work... i tried to select Team NBA Jam from there, it didn't work... it needs to be corrected...
first cheat(s) unlock Jam Team for all players...
remaining cheats are initially found for [nbajam] by Abystus, i only adapted those cheats for [nbajamte]. i don't think those cheats can be 1:1 adapted for other nba jam games (hangtime, max. hangtime etc.) because afaik [nbajam] and [nbajamte] uses nearly same code in code area, that's why it was easy to adapt them & find same routines...
some tests would be fine, especially the cheats adapted from [nbajam] by Abystus.
[nbajamte]
first cheat(s) unlock Jam Team for all players...
remaining cheats are initially found for [nbajam] by Abystus, i only adapted those cheats for [nbajamte]. i don't think those cheats can be 1:1 adapted for other nba jam games (hangtime, max. hangtime etc.) because afaik [nbajam] and [nbajamte] uses nearly same code in code area, that's why it was easy to adapt them & find same routines...
some tests would be fine, especially the cheats adapted from [nbajam] by Abystus.
[nbajamte]
Code: Select all
<cheat desc="Unlock All-Star Jam Team"> <comment>For all players. At team select screen, "?" is Jam Team.</comment>
<script state="on">
<action>temp0=maincpu.mb@00392EB</action>
<action>temp1=maincpu.mb@00393D5</action>
<action>temp2=maincpu.mb@0039351</action>
<action>temp3=maincpu.mb@0038535</action>
<action>temp4=maincpu.mb@0038ADB</action>
</script>
<script state="run">
<action>maincpu.mb@00392EB=C0</action>
<action>maincpu.mb@00393D5=C0</action>
<action>maincpu.mb@0039351=C0</action>
<action>maincpu.mb@0038535=C0</action>
<action>maincpu.mb@0038ADB=C0</action>
</script>
<script state="off">
<action>maincpu.mb@00392EB=temp0</action>
<action>maincpu.mb@00393D5=temp1</action>
<action>maincpu.mb@0039351=temp2</action>
<action>maincpu.mb@0038535=temp3</action>
<action>maincpu.mb@0038ADB=temp4</action>
</script>
</cheat>
<cheat desc="Disable In-Game Play Tip Popups">
<script state="run">
<action>maincpu.mw@0027CB6=C032</action>
<action>maincpu.mw@0028512=C01D</action>
</script>
<script state="off">
<action>maincpu.mw@0027CB6=CA08</action>
<action>maincpu.mw@0028512=C41D</action>
</script>
</cheat>
<cheat desc="Never Miss A Shot"> <comment>All players. Ball must hit the rim at some point during the shot.</comment>
<script state="run">
<action>maincpu.mw@001407E=CB76</action>
<action>maincpu.mw@00145F2=C400</action>
</script>
<script state="off">
<action>maincpu.mw@001407E=C676</action>
<action>maincpu.mw@00145F2=C600</action>
</script>
</cheat>
<cheat desc="Dunk/Glide Shot/Layup From Anywhere"> <comment>All players. Which one you get will be random. You will not be able to perform normal shots with this code active.</comment>
<script state="run">
<action>maincpu.mw@0010462=C001</action>
<action>maincpu.mw@001046A=C001</action>
<action>maincpu.mw@00104F0=C01C</action>
<action>maincpu.mw@0010594=C00F</action>
<action>maincpu.mw@0010604=C00E</action>
<action>maincpu.mw@001063C=C001</action>
</script>
<script state="off">
<action>maincpu.mw@0010462=C500</action>
<action>maincpu.mw@001046A=C500</action>
<action>maincpu.mw@00104F0=C61C</action>
<action>maincpu.mw@0010594=C40F</action>
<action>maincpu.mw@0010604=C40E</action>
<action>maincpu.mw@001063C=CB00</action>
</script>
</cheat>
<cheat desc="Dunks Always Break Backboard"> <comment>Works on any quarter and for both teams.</comment>
<script state="run">
<action>maincpu.mw@00147F4=C023</action>
</script>
<script state="off">
<action>maincpu.mw@00147F4=C957</action>
</script>
</cheat>
<cheat desc="Team Scores All Points">
<parameter>
<item value="0x00">Team 1</item>
<item value="0x01">Team 2</item>
</parameter>
<script state="run">
<!-- Team 1 -->
<action condition="(param==0x00)">maincpu.mw@0014622=0300</action>
<!-- Team 2 -->
<action condition="(param==0x01)">maincpu.mw@0014622=C002</action>
</script>
<script state="off">
<action>maincpu.mw@0014622=C402</action>
</script>
</cheat>