Customizable Z Points [Vega] Allows you to set any amount of Z Points you want. If you want the Z points to be updated in your data save, just save it whenever. XXXXXXXX = Z Points in hex; 0098967F is max NTSC-U (ASM type) C2111528 00000002 3CE0XXXX 60E7XXXX 90E43028 00000000 NTSC-U (Gecko type) 42000000 90000000 04E54788 XXXXXXXX E0000000 80008000 --- Source for ASM version: #Address #NTSC-U = 80111528 lis r7,0xXXXX #Fill in XXXXXXXX value before compiling; r7 safe for use ori r7, r7, 0xXXXX stw r7, 0x3028 (r4) #Default instruction of 'lwz r7, 0x3028 (r4)' not needed (load Z points from where data save contents reside in Memory) --- Source for Gecko version: Set Base Memory Address to 0x90000000 Write word value at address 0x90E54788 Reset Base Memory Address back to 0x80000000 --- Code creator: Vega