Z Points Reward Modifier [Vega] This code modifies the amount of Z points you get for any reward in any mode/menu. You can even implement negative Z points to take away from your overall Z points total. ZZZZZZZZ = Z points received Example Z values: 00000000 = 0 000000FF = 255 FFFFFFFF = -1 FFFFFFFD = -3 NTSC-U C20748FC 00000002 3C60ZZZZ 6063ZZZZ 80AD93C0 00000000 Source~ #START ASSEMBLY #Address #NTSC-U = 800748FC #Hook address is very first instruction of UpdateZPoints function. #r3 (only arg) is Z points (signed word) to add/subtract. #Replace r3 (Z point reward) to new custom amount lis r3, 0x0000 ori r3, r3, 0x00FF #255 used for compilation, adjust this accordingly #Default instruction, load data save pointer into r5 lwz r5, -0x6C40 (r13) #END ASSEMBLY Code creator: Vega