Instant Perfect Win [Vega] The moment the match starts, the CPU/P2 automatically dies and you get a perfect win. Also works for Team & DP Modes. NTSC-U C2053E8C 00000004 901E1438 387E347C 38000005 7C0903A6 38000000 940300A4 4200FFFC 00000000 Code creator: Vega #START ASSEMBLY #Address #NTSC-U = 80053E8C #r30 + 0x3520 = P2/CPU's health (first player if on team/dp) #Add 0xA4 to increment to next team/dp member #r3 and r4 safe for use #r0 safe for use after original instruction #Original instruction stw r0, 0x1438 (r30) #Preset Loop addi r3, r30, 0x347C #0x3520 - 0xA4 #Set Loop Amount to 5 for 5 highest amount of possible team/dp members li r0, 5 mtctr r0 #Loop #Write Null to every team/dp member's real Health li r0, 0 loop: stwu r0, 0xA4 (r3) bdnz+ loop #END ASSEMBLY