doobiedoo wrote: ↑Fri Apr 18, 2025 2:10 am
brufgsilva wrote: ↑Thu Apr 17, 2025 6:10 pm
Hoof wrote: ↑Thu Apr 17, 2025 3:53 pm
Has anyone edited prestiges yet? Any tricks/shortcuts before i run 4 missions for each class?
Before levelling class xp was
4:A w:4 4:B
A = (level - 1)*8 + 1
B = (xp * 8) + 1
Now I think it is:
4:A w:4 4:B
A = (Prestige level * 8) + 1
B = (xp * 8) + 1
groupsearch syntax for Operations classes is...
4:(LEVEL-1) w:4 4:PRESTIGE w:4 4:XP
...where all searched numbers are ((VALUE*8) + 1)
so, searching for a class that's lvl 25, maxed XP, but has not prestige'd yet is:
LEVEL = 25 ... search for (LEVEL-1)*8 + 1 = (25-1)*8 + 1 = 193
PRESTIGE = 0 ... search for 0*8 + 1 = 1
XP = 0 ... search for 0*8 + 1 = 1 (if you're at max XP for a class the game sets your XP to 0 for whatever reason)
so the groupsearch phrase would be:
<SEARCH #1> 4:193 w:4 4:1 w:4 4:1
then you activate Prestige 1, making the class:
LEVEL = 1 ... search for (LEVEL-1)*8 + 1 = (1-1)*8 + 1 = 1
PRESTIGE = 1 ... search for 1*8 + 1 = 9
XP = 0 ... search for 0*8 + 1 = 1
so you search your results from SEARCH #1 with this syntax:
<SEARCH #2> 4:1 w:4 4:9 w:4 4:1
and it should give you your class that you've just prestige'd.
from here:
edit XP value to 320001 (equivalent to 40k XP, just because... anyway it's enough to get to lvl 25)
run an Operations PvE mission in Private mode
speedrun it until you can grab any item and then get killed
the mission will reward Most Items Found as +10 XP and will count all XP (your edited amount + the 10 just earned) and give you level 25. go back to the Armoury, +Prestige, edit xp back to 320001, do it all over again. still takes about 30-40min w loading screens and all that but it's better than nothing.
weapon XP is still...
4:XP w:4 4:UNUSED_PERKS
so you search for the weapon, Reset your Perks, run the search again (with the new UNUSED_PERKS value as perks*8+1) until you find the weapon.
don't go past max XP for the weapon, go to (max-1) XP so that you'll get that last Mastery point properly when you next get XP on the weapon. to max it out, on one of your speedruns just kill things with that weapon (exclusively). the edited-in value for (max-1) would be ((MAX_XP - 1)*8 + 1) = (MAX_XP*8 - 7).