Page 1 of 1

[blzntrnd] Free player selection

Posted: Wed Jul 28, 2010 11:39 pm
by walterh78
Please active this cheat only after screen selection. If you activated in screen selection and select Ludwig character then after the first match the game freezes. :(

Code: Select all

  <cheat desc="Character Select PL1"> <comment>Free player selection - Activate after selection. Some glitches when fights Ludwig vs. Ludwig.</comment>
    <parameter>
      <item value="0x02">Daijiro Zama</item>
      <item value="0x00">Baron Firebird</item>
      <item value="0x04">Wolf Mcschneider</item>
      <item value="0x03">John Bantline Saigo</item>
      <item value="0x05">Hayate</item>
      <item value="0x06">Ho Yin-Long</item>
      <item value="0x07">Jailbreaker Bullnoi</item>
      <item value="0x01">Eric Starback</item>
      <item value="0x08">#Hizelshustat von Ludwig</item>
    </parameter>
    <script state="run">
      <action>maincpu.pb@FF8DA7=param|(maincpu.pb@FF8DA7 BAND ~0F)</action>
    </script>
  </cheat>
  
  <cheat desc="Character Select PL2"> <comment>Free player selection - Activate after selection. Some glitches when fights Ludwig vs. Ludwig.</comment>
    <parameter>
      <item value="0x02">Daijiro Zama</item>
      <item value="0x00">Baron Firebird</item>
      <item value="0x04">Wolf Mcschneider</item>
      <item value="0x03">John Bantline Saigo</item>
      <item value="0x05">Hayate</item>
      <item value="0x06">Ho Yin-Long</item>
      <item value="0x07">Jailbreaker Bullnoi</item>
      <item value="0x01">Eric Starback</item>
      <item value="0x08">#Hizelshustat von Ludwig</item>
    </parameter>
    <script state="run">
      <action>maincpu.pb@FF8DAB=param|(maincpu.pb@FF8DAB BAND ~0F)</action>
    </script>
  </cheat>
  
  <cheat desc="Character Select PL3"> <comment>Free player selection - Activate after selection. Some glitches when fights Ludwig vs. Ludwig.</comment>
    <parameter>
      <item value="0x02">Daijiro Zama</item>
      <item value="0x00">Baron Firebird</item>
      <item value="0x04">Wolf Mcschneider</item>
      <item value="0x03">John Bantline Saigo</item>
      <item value="0x05">Hayate</item>
      <item value="0x06">Ho Yin-Long</item>
      <item value="0x07">Jailbreaker Bullnoi</item>
      <item value="0x01">Eric Starback</item>
      <item value="0x08">#Hizelshustat von Ludwig</item>
    </parameter>
    <script state="run">
      <action>maincpu.pb@FF8DAF=param|(maincpu.pb@FF8DAF BAND ~0F)</action>
    </script>
  </cheat>

  <cheat desc="Character Select PL4"> <comment>Free player selection - Activate after selection. Some glitches when fights Ludwig vs. Ludwig.</comment>
    <parameter>
      <item value="0x02">Daijiro Zama</item>
      <item value="0x00">Baron Firebird</item>
      <item value="0x04">Wolf Mcschneider</item>
      <item value="0x03">John Bantline Saigo</item>
      <item value="0x05">Hayate</item>
      <item value="0x06">Ho Yin-Long</item>
      <item value="0x07">Jailbreaker Bullnoi</item>
      <item value="0x01">Eric Starback</item>
      <item value="0x08">#Hizelshustat von Ludwig</item>
    </parameter>
    <script state="run">
      <action>maincpu.pb@FF8DB3=param|(maincpu.pb@FF8DB3 BAND ~0F)</action>
    </script>
  </cheat>

Re: [blzntrnd] Free player selection

Posted: Thu Jul 29, 2010 6:07 pm
by Pugsy
Thanks, you could possibly fix that little issue by only poking the 0x08 for ludwig when a character has been chosen?

This seems to work..though I've only done a single test - didn't crash on the second match, let me know if does work:-

Code: Select all

  <cheat desc="Select Character PL1"> <comment>Some glitches when fights Ludwig vs. Ludwig.</comment>
    <parameter>
      <item value="0x02">Daijiro Zama</item>
      <item value="0x00">Baron Firebird</item>
      <item value="0x04">Wolf Mcschneider</item>
      <item value="0x03">John Bantline Saigo</item>
      <item value="0x05">Hayate</item>
      <item value="0x06">Ho Yin-Long</item>
      <item value="0x07">Jailbreaker Bullnoi</item>
      <item value="0x01">Eric Starback</item>
      <item value="0x08">#Hizelshustat von Ludwig</item>
    </parameter>
    <script state="run">
      <action condition="maincpu.pb@FF8DA7!=1F">maincpu.pb@FF8DA7=param|(maincpu.pb@FF8DA7 BAND ~0F)</action>
    </script>
  </cheat>