Disable or Allow Unlimited Taunts [Vega] This code will allow you to choose to disable character taunts or allow the characters to taunt at any time when they are idle (usually each character can only do 1 taunt total per match). NTSC-U 0404D8EC XXXXXXXX X values: 60000000 = Unlimited Taunts 48000038 = Disable Taunts Source: At 0x8004D8EC, the instruction is 'bgt- 0x38' is replaced with 'nop' or 'b 0x38'. Above this isntruction the taunt tracker byte (of said character) is checked against 0. By nopping the bgt branch, it tells the game the character has not done a taunt yet and thus is allowed to taunt. Changing the bgt branch to an unconditional branch, it tells the game taunt limit has been reached already. Code creator: Vega