12-23-2024, 03:51 AM
(12-23-2024, 02:18 AM)Zeraora Wrote: I’ll probably need to test this myself but I have two questions.1.) Yes
1.) Is the icon you set visible on others screens
2.) Could this address be modified in-between races to change the rank above you?
2.) It can be. Made a code to test this. If a player's VR is above a certain threshold, it changes your rank.
NTSC-U:
Code:
C2612280 00000017
3D80809C 818C8F88
A18C0036 3D60809C
816B8F88 816B0014
3D400000 614A8CC0
7D8C51D6 398C00B8
7D8C5A2E 2C0C1195
41800044 2C0C2329
41800044 2C0C34BD
41800044 2C0C4651
41800044 2C0C57E5
41800044 2C0C6979
41800044 2C0C7B0D
41800044 2C0C7B0C
41810044 38600000
48000044 38600004
4800003C 38600005
48000034 38600006
4800002C 38600007
48000024 38600008
4800001C 38600009
48000014 3860000A
4800000C 3860000B
48000004 00000000
------------------
loc_0x0:
.set saveManager, 0x809B8F88
saveManagerCode:
lis r12, saveManager@ha
lwz r12, saveManager@l (r12)
lhz r12, 0x0036 (r12)
#RKSYS.dat file load
lis r11, 0x809C
lwz r11, -0x7078 (r11)
lwz r11, 0x0014 (r11)
#Take net license value, and use it as the value to multiply 0x8CC0 by
lis r10, 0
ori r10, r10, 0x8CC0
mullw r12, r12, r10
addi r12, r12, 0xB8
lhzx r12, r12, r11
#VR Comparing for specifying ranks
cmpwi r12, 4501
blt bronze
cmpwi r12, 9001
blt silver
cmpwi r12, 13501
blt gold
cmpwi r12, 18001
blt platinum
cmpwi r12, 22501
blt diamond
cmpwi r12, 27001
blt masters
cmpwi r12, 31501
blt grandmasters
cmpwi r12, 31500
bgt champion
li r3, 0
b end
#Changes Rank for You
bronze:
li r3, 0x4
b end
silver:
li r3, 0x5
b end
gold:
li r3, 0x6
b end
platinum:
li r3, 0x7
b end
diamond:
li r3, 0x8
b end
masters:
li r3, 0x9
b end
grandmasters:
li r3, 0xA
b end
champion:
li r3, 0xB
b end
end:
~MarioKartWii.com #1~