Post: Nioh 2 Advanced Mode
03-18-2020, 10:33 PM #1
syizm
Rookie
(adsbygoogle = window.adsbygoogle || []).push({}); LINK: You must login or register to view this content.


Hey guys. Been messing around with the Nioh 2 save in advanced mode and have discoverd most of the values for the equipment modifiers (ie Item Drop Rate vs. Yokai, Imbue Fire, Unlimited Ninjutsu, etc.) I've posted a link to a Google sheet below with most of my research. There is a step by step tutorial below. I'll try to make it more clear as time goes on, but for now, this is it.


Here is what a basic effect looks like in Advanced moe:

GENERAL FORMAT OF ITEM EFFECTS[/u]
aa aa aa aa bb bb bb bb xx xx cc xx

LIFE +44 EXAMPLE:
D8 BF 00 00 2C 00 00 00 2F 73 02 00

EMPTY EFFECTS SLOT SET:
FF FF FF FF 00 00 00 00 00 00 00 00

UNLIMITED NINJUTSU 100%:
28 02 00 00 E8 03 00 00 2F 73 02 00




For example, if you have a piece of armor that has Life +44, you would see the following in the code:
D8 BF 00 00 2C 00 00 00 2F 73 02 00

The aa part is [D8BF0000] which is "Life"
The bb part is [2C000000] which is 44 in decimal. You can set this to ridiculously high values.
The xc part is [2F730200] which doesn't seem to matter except the '02' digit controls icon.

So what you would do is try to find that in your hex editor of choice, then edit the effect type to what you want, and change the value to something appropriate. With these codes you can easily give yourself so much life, ki, and toughness that you're essentially invincible. You can also have unlimited bullets, ninjutsu, and onmyo magic. You can even add effects to the blank slots by replacing the empty data set with the code. The footer section [xx xx cc xx] is mostly irrelevant, but be sure to make cc=02.

Also note that some item effects are percentages with a single decimal point, so 100% is 100.0% in the game, and this is '1000' as far as the data is concerned, and 1000 in hex is 03E8, and in Little Endian for our purposes its E803. So to make a percentage based effect (ulimited magic, unlimited projectiles, etc.) always trigger, you make it 1000... 100.0%, or E803. I hope that makes sense.

If you've any experience at all in hex editing this sheet should be plenty to get you started. As a bonus, it seems the armor, weapon, and yokai effect IDs work on any type of equipment, although it would be useless to imbue some gloves with fire.


Here is a link to the Google Sheet listing what I've found so far:

LINK: You must login or register to view this content.



Cheers,
S.T.
Last edited by syizm ; 03-20-2020 at 02:35 AM.

The following 61 users say thank you to syizm for this useful post:

Alex Uyutov, alex123098, Alexsandr194, alyshusband2013, Ashina Traveler, Atma-Weapon, Bawbaw, darkking2022**, Darklite, Demonchild901, Dojima, dragun619, DuncanCradle, EduReptilia, Garret, gledson, gledsonfalcao, gowhawx, gr82b61, HAGH, hanahowl, hawkxt, Hunter19285, Infonet07, joker.101, Kaissolbadguy, Kaitsja, kjmhehe, korazx, lcf9982, legendarythug, letmesignup, Leytonsroom, Llockedown, Loki-Roswaals, lucianonery, luix, Magicarp19, mohammed-121, MrEightEyes, NexusPolaris, NinjaCalux, PascoalM, pr_andrade, Randomico, [email protected], ryscape, Spcedead678, SpiritoSancti, starkjim87, suhail12, Supachai-Wilavan, thekool12345, UpsideUp88, Vicious, Vicious0ne, Vicodin10, WeAreTekken, Westoooz, Wosley, Xayax

The following user groaned syizm for this awful post:

Charles Manson
03-19-2020, 12:00 AM #2
syizm
Rookie
ITEM EFFECT TUTORIAL

Alright, so how do we use these effect ID codes? Well... we add them to weapons, armor, accessories, and even yokai soul cores.

First, find an item you want to edit. I'll use an accessory in this example.

You must login or register to view this content.


The effects are what you want to pay attention to. You have:

Other Realm Resistance +4.0
Gold Earned +2.9
Untouched Onmyo Magic +3.0
and four blank slots...

The values, in order, for those effects are: 4.0, 2.9, 3.0. However, Nioh 2 actually considers this 40, 29, and 30. We need to convert those numbers to hexidecimal.

40 in hex is '28'
29 => 1D
30 => 1E

These values are important because it will help us use verify we are modifying the correct weapon or item.

So, save and exit the game and open up your character save in Advanced Mode. I prefer to export my files and use HxD for hex editing, but use whatever hex editor you want.

You must login or register to view this content.

Currently, we do not have a full list of item IDs, but the Nioh 2 sheet I posted above has a few. Anyway, I'm going to reference the hex sheet and look for "Other Realm Resistance." In the sheet there are two values listed: 62CF and 01C8

The "Other Realm Resistance" value is 4.0, or 40, which is '28' in Hex.

So we'll search for: 62CF000028000000

That's a bust. This effect ID for "Other Realm Resistance" isn't 62CF for this accessory! It can be 62CF for OTHER accessories, but for whatever reason it isn't the same for all items. This is an important note - EFFECTS WILL HAVE MULTIPLE IDs, and not all of them are discovered yet. So, let's try 01C8.

Search for: 01C8000028000000

You must login or register to view this content.




Bingo! It works.

You must login or register to view this content.

Now we see our effects listed here. Blue are the IDs You see 01C8 is Other Realm Resistance, 465E is Gold Earned, and 1225 is Untouched Magic. And the values in green correspond correctly... 28 is 40 or 4.0, 1D is 29 or 2.9, and 1E is 3.0. This confirms we are on the correct item. (Note the orange footer data is mostly unimportant, but the underlined red areas are icon data. You can mostly neglect the orange footer data.)

You must login or register to view this content.

So let's just get stupid. How about 65,535 life, ki, and ninjutsu power.

Referencing the Sheet we have the following Effect IDs:

Life - D8BF
Ki - 3C90
Ninjutsu Power - 73B1

So let's add those effects in, and change the value to 65k. The code will now look like this:

You must login or register to view this content.


But we ain't done yet. Let's add an entirely new effect. How about 65,205% bare handed attack damage? The next effect starts where it says "FFFFFFFF 00000000 00000000" We'll simply make it say:

55340000 FFFF0000 AC1C200

The "AC1C" I simply stole from the effect ID above it. Now our code looks like this:

You must login or register to view this content.


Once we're ready, save your file, do your Save Wizard magic, and upload it to the PS4 for testing. (If you're "Apply" button is not functional, then simply over write a 0 in the file with another 0. This might throw an error, which you can over ride, and then the "Apply" button will work.)

The end result:
You must login or register to view this content.
Last edited by syizm ; 03-20-2020 at 02:41 AM.

The following 18 users say thank you to syizm for this useful post:

Save_Point_Vox, alyshusband2013, Ashina Traveler, darkking2022**, Fesh, GelsonSilva, hanahowl, Kaitsja, korazx, kum, Leytonsroom, MrMcBeanie, NinjaCalux, [email protected], suhail12, Vicious0ne, Westoooz, Xayax
03-19-2020, 12:55 AM #3
can you link a gamesave from the beginning?^^
Last edited by WeAreTekken ; 03-19-2020 at 12:57 PM.

The following 2 users say thank you to WeAreTekken for this useful post:

[email protected], wrath_44
03-19-2020, 03:42 AM #4
Originally posted by syizm View Post


This is amazing! It essentially created God Mode for me! Thanks!

The following 2 users say thank you to Save_Point_Vox for this useful post:

[email protected], Traw D Law
03-19-2020, 05:17 AM #5
can you post save or share CUSA15526 this looks epic

The following user thanked MrMcBeanie for this useful post:

[email protected]
03-19-2020, 05:30 AM #6
Originally posted by MrMcBeanie View Post
can you post save or share CUSA15526 this looks epic


Do as the tutorial said. It's not that difficult.
03-19-2020, 06:59 AM #7
Originally posted by Save_Point_Vox View Post
Originally posted by MrMcBeanie View Post
can you post save or share CUSA15526 this looks epic


Do as the tutorial said. It's not that difficult.

i tried but i dont understand this stuff you guys are the ones with talent on this stuff

The following user thanked MrMcBeanie for this useful post:

[email protected]
03-19-2020, 07:13 AM #8
Thanks for the guide! I have found these other values (might need some double testing)
Armor Skill:
Amrita sensor b591

Weapon Skill:
Life Drain (melee) F16F
Strong Attack damage F59E
03-19-2020, 07:21 AM #9
About effects that are locked to a weapon, for example the proficiency bonus from the Wooden Sword, would it be possible to put that effect on a different weapon?
If so, how would I find 87.4 in Hexadecimal? I assume that 874 is treated as 87.4 in Nioh, in which case it would be 0x36A. Do I ignore the "x" and look for 03 6A?

The following user thanked Kaitsja for this useful post:

[email protected]
03-19-2020, 07:24 AM #10
Originally posted by Kaitsja View Post
About effects that are locked to a weapon, for example the proficiency bonus from the Wooden Sword, would it be possible to put that effect on a different weapon?
If so, how would I find 87.4 in Hexadecimal? I assume that 874 is treated as 87.4 in Nioh, in which case it would be 0x36A. Do I ignore the "x" and look for 03 6A?


Endian might also come to play, so could also be 6A03. You can put any bonus anywhere. I tried them on armory and worked too.

The following 2 users say thank you to Save_Point_Vox for this useful post:

Kaitsja, [email protected]

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo