Nioh 2 - The Complete Edition [STEAM]

Upload your cheat tables here (No requests)
User avatar
Arikado
Expert Cheater
Expert Cheater
Posts: 137
Joined: Mon Dec 23, 2019 4:53 pm
Reputation: 92

Re: Nioh 2 Complete Edition CT

Post by Arikado »

Potat0brain wrote:
Sat Feb 20, 2021 2:34 pm
Good afternoon, is ther any working equipment editor out here for 1.26? 33 pages and cant seem to find a working one tho :/
DON'T PM ME ANYMORE!
Hints: equip edit script is not target to right address in 0.5~1sec every time.

How to use this cheat table?
  1. Install Cheat Engine
  2. Double-click the .CT file in order to open it.
  3. Click the PC icon in Cheat Engine in order to select the game process.
  4. Keep the list.
  5. Activate the trainer options by checking boxes or setting values from 0 to 1

Potat0brain
What is cheating?
What is cheating?
Posts: 2
Joined: Sat Feb 20, 2021 2:33 pm
Reputation: 0

Re: Nioh 2 Complete Edition CT

Post by Potat0brain »

Arikado wrote:
Sat Feb 20, 2021 3:51 pm
Potat0brain wrote:
Sat Feb 20, 2021 2:34 pm
Good afternoon, is ther any working equipment editor out here for 1.26? 33 pages and cant seem to find a working one tho :/
DON'T PM ME ANYMORE!
Hints: equip edit script is not target to right address in 0.5~1sec every time.
first, sorry for pm. thought it would be nicer than "spamming" nonsense in this thread.
second, yeah uhm no. i know everything about my job irl but i have absolutly no idea about editing / useing cheat-engine (tables) more than just click boxes and change a couple of numbers. i appreciate every table contributor because you do the work for noobs like me.
i cant find a "equip edit" option / bar in your v1.7 table and your hint doesn't help me.
i would be very grateful if you or someone else could tell me how to edit equipment and / or scroll/cores but if no one want to, well i wish you and every other person in this thread a nice day.

bloodaxis
Expert Cheater
Expert Cheater
Posts: 456
Joined: Thu Apr 13, 2017 5:09 am
Reputation: 57

Re: Nioh 2 Complete Edition CT

Post by bloodaxis »

Potat0brain wrote:
Sat Feb 20, 2021 5:27 pm
i cant find a "equip edit" option / bar in your v1.7 table and your hint doesn't help me.
i would be very grateful if you or someone else could tell me how to edit equipment and / or scroll/cores but if no one want to, well i wish you and every other person in this thread a nice day.


What do you suppose those three words mean when used together?

thedudeabides96
Novice Cheater
Novice Cheater
Posts: 19
Joined: Sun Oct 29, 2017 7:49 pm
Reputation: 1

Re: Nioh 2 Complete Edition CT

Post by thedudeabides96 »

Damn really wish the magic script would work since I find it easier to pick what ninjitsu I want.

kaka
Novice Cheater
Novice Cheater
Posts: 22
Joined: Fri Apr 05, 2019 7:58 pm
Reputation: 3

Re: Nioh 2 Complete Edition CT

Post by kaka »

SinGul4ritY wrote:
Sat Feb 20, 2021 8:00 am
kaka wrote:
Sat Feb 20, 2021 3:57 am
thanks for the ct for 1.26.

ps. weird question but, is there a way to "manually" set the amount of gold/amrita you have without breaking your save file? ie if i want it to be 1 million instead of having it maxed or 99999999.... (i heard manually setting and getting the strings/hex was an issue for nioh 1)
hi copy the the scripts Amrita multiplier and Gold multiplier and change it to this:
* for both to update you have to spend/get Amrita/Gold first
** But at least you don't have to leave to menu
*** ofcourse you can also do it manually every time by finding the values and leaving to menu first before changing... won't break you save

Amrita set Amount:

Code: Select all

[ENABLE]
{$lua}
if syntaxcheck then return end
-----------------------
memrec.Color=0x000080ff
-------------- A.B.G.R
{$asm}
alloc(newmem,$1000,call_amrita)
label(code_amrita)
registersymbol(code_amrita,amrita_amount)

newmem:
  code_amrita:
    readmem(call_amrita,5)
//  imul rdx,[amrita_multiplier]         // original from Amrita multiplier script
    mov rdx,[amrita_amount]              // set amount to #, get some amrita to update
    jmp return
    align 10 CC

  amrita_amount:
    dq #9123123

call_amrita:
  jmp code_amrita
return:

[DISABLE]
{$lua}
if syntaxcheck then return end
-----------------------
memrec.Color=0x000080ff
-------------- A.B.G.R
{$asm}
call_amrita:
  readmem(code_amrita,5)

unregistersymbol(code_amrita,amrita_amount)
dealloc(newmem)
Gold set Amount:

Code: Select all

[ENABLE]
{$lua}
if syntaxcheck then return end
-----------------------
memrec.Color=0x000080ff
-------------- A.B.G.R
{$asm}
alloc(newmem,$1000,call_money)
label(code_money)
registersymbol(code_money,money_amount)

newmem:
  code_money:
    readmem(call_money,5)
//  imul rdx,[money_multiplier]            // original from Gold multiplier
    mov rdx, [money_amount]                // set to # amount and get/spend gold to update
    jmp return
    align 10 CC

  money_amount:
    dq #9123123

call_money:
  jmp code_money
return:

[DISABLE]
{$lua}
if syntaxcheck then return end
-----------------------
memrec.Color=0x000080ff
-------------- A.B.G.R
{$asm}
call_money:
  readmem(code_money,5)

unregistersymbol(code_money,money_amount)
dealloc(newmem)
If you want to be able to input the values you have to change the name and change it to 8 bytes
Image
thanks... but for a different reason. your instructions dont seem to work for me. im using it for version 1.26 of the game, and it still gives me the "...was supposed to be added to the symbolist but isn't declared" error. even after following the instruction and changing values and shit im just lost.

i got it to edit though by manually doing it and changing it to 8bit, AND actually going to the title screen to edit shit. i didnt know this before and it wasnt working lol. so yea, thnx for this info lol

User avatar
Messy6666
Table Makers
Table Makers
Posts: 724
Joined: Fri Sep 25, 2020 5:45 pm
Reputation: 743

Re: Nioh 2 Complete Edition CT

Post by Messy6666 »

kaka wrote:
Sat Feb 20, 2021 8:23 pm
thanks... but for a different reason. your instructions dont seem to work for me. im using it for version 1.26 of the game, and it still gives me the "...was supposed to be added to the symbolist but isn't declared" error. even after following the instruction and changing values and shit im just lost.

i got it to edit though by manually doing it and changing it to 8bit, AND actually going to the title screen to edit shit. i didnt know this before and it wasnt working lol. so yea, thnx for this info lol
ah pitty must be going wrong somewhere in the process... i couldn't check the cheats ((as in the screenshot) if there was that error
anyway glad the manually fix did it for you

LazyM
Cheater
Cheater
Posts: 35
Joined: Fri Dec 01, 2017 1:48 pm
Reputation: 1

Re: Nioh 2 Complete Edition CT

Post by LazyM »

anyone knows how to max out the clan rank?

thedudeabides96
Novice Cheater
Novice Cheater
Posts: 19
Joined: Sun Oct 29, 2017 7:49 pm
Reputation: 1

Re: Nioh 2 Complete Edition CT

Post by thedudeabides96 »

You think there will be guardian spirit edits?

CeLioCiBR
Expert Cheater
Expert Cheater
Posts: 132
Joined: Wed Apr 26, 2017 10:02 am
Reputation: 17

Re: Nioh 2 Complete Edition CT

Post by CeLioCiBR »

Guys, can we edit Glory ?
I mean, does this ban ?
I have the game on Steam.

simon93
Expert Cheater
Expert Cheater
Posts: 72
Joined: Sun Apr 09, 2017 11:10 pm
Reputation: 2

Re: Nioh 2 Complete Edition CT

Post by simon93 »

LazyM wrote:
Sat Feb 20, 2021 10:41 pm
anyone knows how to max out the clan rank?
use max glory point cheat.

LazyM
Cheater
Cheater
Posts: 35
Joined: Fri Dec 01, 2017 1:48 pm
Reputation: 1

Re: Nioh 2 Complete Edition CT

Post by LazyM »

simon93 wrote:
Sun Feb 21, 2021 3:30 am
LazyM wrote:
Sat Feb 20, 2021 10:41 pm
anyone knows how to max out the clan rank?
use max glory point cheat.
that didn't work

AeroShok999
Expert Cheater
Expert Cheater
Posts: 98
Joined: Mon Feb 08, 2021 12:54 pm
Reputation: 4

Re: Nioh 2 Complete Edition CT

Post by AeroShok999 »

simon93 wrote:
Sun Feb 21, 2021 3:30 am
LazyM wrote:
Sat Feb 20, 2021 10:41 pm
anyone knows how to max out the clan rank?
use max glory point cheat.
Use https://www.fearlessrevolution.com/76002-PC-N ... on-trainer this works 200%

User avatar
Arikado
Expert Cheater
Expert Cheater
Posts: 137
Joined: Mon Dec 23, 2019 4:53 pm
Reputation: 92

Re: Nioh 2 Complete Edition CT

Post by Arikado »

LazyM wrote:
Sun Feb 21, 2021 11:52 am
simon93 wrote:
Sun Feb 21, 2021 3:30 am
LazyM wrote:
Sat Feb 20, 2021 10:41 pm
anyone knows how to max out the clan rank?
use max glory point cheat.
that didn't work
change "Current Clan Favor" value.
change this will not make u back to title screen. :)

User avatar
Arikado
Expert Cheater
Expert Cheater
Posts: 137
Joined: Mon Dec 23, 2019 4:53 pm
Reputation: 92

Re: Nioh 2 Complete Edition CT

Post by Arikado »

my [Script v1.8] is out! :)

viewtopic.php?p=177178#p177178

LazyM
Cheater
Cheater
Posts: 35
Joined: Fri Dec 01, 2017 1:48 pm
Reputation: 1

Re: Nioh 2 Complete Edition CT

Post by LazyM »

Arikado wrote:
Sun Feb 21, 2021 5:34 pm
LazyM wrote:
Sun Feb 21, 2021 11:52 am
simon93 wrote:
Sun Feb 21, 2021 3:30 am

use max glory point cheat.
that didn't work
change "Current Clan Favor" value.
change this will not make u back to title screen. :)
do i change it to any high number or there is a specific number to change it to?
also thanks for scripts, they are great

Post Reply

Who is online

Users browsing this forum: AhrefsBot, alex185, Ara, BLEXBot, Google Adsense [Bot], smjm75, Triton_, trohed