Enable World Tournament Stages in Team/DP [Vega] You can now play on both of the World Tourney Stages in Team & DP Modes! If a character of a team is defeated via ringout, said team loses the entire match regardless of how many characters are left to play for said team. NTSC-U C20AF1C8 00000003 80E73C5C 38000004 90070084 3800001B 90070088 00000000 Code creator: Vega Source~ #START ASSEMBLY #Address #NTSC-U = 800AF1C8 #NOTE about Hook Address: Only occurs for Team/DP when moving up/down the rows on map selection. #r0 = safe for use #Original Instruction, load Map Lookup Table Pointer from unknown level 1 pointer (pointer 1 loads from r13 level 0 pointer) lwz r7, 0x3C5C (r7) #Edit Map Slots 0x3 (4) and 0x4 (5) of Row 0x5 (6) on the Lookup Table to replace both 0x25 bytes with 0x4 and 0x1B. #This will enable both World Tournament Stages li r0, 0x4 #World Martial Arts Tournament Noon stw r0, 0x84 (r7) li r0, 0x1B #World martail Arts Tournament Evening stw r0, 0x88 (r7) #End code end_code: #END ASSEMBLY