Well the first line will load the first half of the code address + 0880 and round up 1 if second half is > than 7FFF.Second line will load the first half of the code hacked/modded value.Third line will load the second half of hacked/modded value into t1 together with the first half.Fourth line will store the second half of code address into register t0.The last line jumps to return address and ends the routine.Code:lui t0, $First half of code address (+0880). lui t1, $First half of hacked/modded value. addiu t1, t1, $Second half of hacked/modded value. sw t1, $Second half of address.(t0) jr ra
Now you need to find a hook to make it work. Don't confuse this as jokering since once activated the code will always be on.
lui = Load Upper Immediate
addiu = Add Immediate Unsigned
sw = Store Word
jr ra = Jump Register Return Address
/!\ NOT MINE CREDITS TO "Sly Xross"/!\Code:How To Get Real Addressing Open Windows calculator, go to "View" and select "Cientific" now select "Hex" and "Dword" now type 8800000 (5 zeros) + (plus) the address you want. There you go.