Instant Max Power Charge [Vega] Normally it takes a couple of seconds to charge up the max power bar once full Ki has been reached. This code removes that wait and the charge is as quick as possible. There are two configurations to this code. First configuration effects both 1P and 2P/COM. Second config allows you to choose between 1P or 2P/COM. NTSC-U (effects both 1P and 2P/COM) 040F3918 38007530 NTSC-U (choose between 1P or 2P/COM via X value) C20F3918 00000003 7C002214 2C1D0000 40820008 38007530 60000000 00000000 X = Slot 0 = 1P 1 = 2P/COM Code creator: Vega Source for 1st config: At address 0x800F3918, 'add r0, r0, r4' instruction is changed to 'li r0, 0x7530'. r0 is the amount to increment the max power charge by before it is stored to memory. Simply set the incrementation to the full amount of the max power charge. Therefore, the very moment this code is executed, max power charge is instantly full. Source for 2nd config: #Address #NTSC-U = 800F3918 #r29 = slot #0 = 1P #1 = 2P/COM #Original Instruction, add incrementation amount (r4) with current max power charge amount (r0); place result in r0 add r0, r0, r4 #Check slot cmpwi r29, 0 #1P used for compilation, adjust this accordingly bne- end_code #Slot is a match, apply new amount li r0, 0x7530 #End code end_code: