Page 4 of 4

Re: Nioh 2 PC 1.25 Cheat Table

Posted: Sun Feb 21, 2021 7:12 pm
by Arikado
anon9 wrote:
Sun Feb 21, 2021 6:53 pm
Arikado wrote:
Sun Feb 21, 2021 6:44 pm
anon9 wrote:
Sun Feb 21, 2021 6:37 pm


Yeah, sorry, different limit there. This one is for no kill limit. Normally each kill gives you x points and when you hit 1000 points, your summon goes away. This one makes it so that it keeps resetting the points to 0 before each kill.

Unfortunately, I'm not posting anything that would be too obvious online even if other people are. You can blame the people who want to use cheats online that would affect things for other players. The stuff in my personal table is just way too broken for me to release. I'm basically specifically making less broken versions of scripts to release. (I might do a no glory cost script later)
yeah, i added ur script into my script v1.8
Unfortunately, i changed ur script's name ;)
Please add a warning for people to not use it if they are playing with others. It doesn't have a major effect solo, but anyone that is paying attention or understands how the mechanics works would realize that a cheat is being used.


Image


No, seriously, just from this part of the scripts list, can you see why I don't release my table as is? I want to see someone look a visitor in the eye and go: "No, I'm not cheating, I'm legitimately able to have Transformation up 100% of the time, not lose duration from being attacked, dodging, blocking, attacking, etc. and can instantly re-transform if I ever lose transformation." ... and expect the visitor to legitimately believe them instead of looking online and seeing there is an infinite transform cheat.

Or explain to others, "Yes, I legitimately gained the maximum possible glory without cheats and then some."
to bad, it is downloaded 44 times, now...

Re: Nioh 2 PC 1.25 Cheat Table

Posted: Mon Feb 22, 2021 8:39 am
by anon9
This should make Teahouse purchases require no Glory.

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
  <CheatEntries>
    <CheatEntry>
      <ID>90307</ID>
      <Description>"No Glory Cost for Teahouse Purchases"</Description>
      <LastState Activated="1"/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>{ Game   : nioh2.exe
  Author : anon-9

  This script attempts to ignore Glory for purchases.
  This will make all items cost 1 Glory for purchase reasons,
  but will not deduct Glory.
}

[ENABLE]

aobscanmodule(fIgnoreGlory,nioh2.exe,41 8B 87 BC 04 00 00) // should be unique
alloc(newmem,$1000,"nioh2.exe"+104A9A9)

label(code)
label(return)

newmem:

code:
  mov rsi,0
  mov eax,#99999
  jmp return

fIgnoreGlory:
  jmp newmem
  nop 2
return:
registersymbol(fIgnoreGlory)

[DISABLE]

fIgnoreGlory:
  db 41 8B 87 BC 04 00 00

unregistersymbol(fIgnoreGlory)
dealloc(newmem)

{
// ORIGINAL CODE - INJECTION POINT: "nioh2.exe"+104A9A9

"nioh2.exe"+104A982: 73 0D                          -  jae nioh2.exe+104A991
"nioh2.exe"+104A984: 48 B9 00 00 00 00 00 00 00 80  -  mov rcx,8000000000000000
"nioh2.exe"+104A98E: 48 8B C1                       -  mov rax,rcx
"nioh2.exe"+104A991: F3 48 0F 2C F0                 -  cvttss2si rsi,xmm0
"nioh2.exe"+104A996: 48 03 F0                       -  add rsi,rax
"nioh2.exe"+104A999: 45 32 F6                       -  xor r14l,r14l
"nioh2.exe"+104A99C: 8B 4C FB 2C                    -  mov ecx,[rbx+rdi*8+2C]
"nioh2.exe"+104A9A0: BA 01 00 00 00                 -  mov edx,00000001
"nioh2.exe"+104A9A5: 85 C9                          -  test ecx,ecx
"nioh2.exe"+104A9A7: 75 12                          -  jne nioh2.exe+104A9BB
// ---------- INJECTING HERE ----------
"nioh2.exe"+104A9A9: 41 8B 87 BC 04 00 00           -  mov eax,[r15+000004BC]
// ---------- DONE INJECTING  ----------
"nioh2.exe"+104A9B0: 45 0F B6 F6                    -  movzx r14d,r14l
"nioh2.exe"+104A9B4: 48 3B F0                       -  cmp rsi,rax
"nioh2.exe"+104A9B7: 44 0F 4F F2                    -  cmovg r14d,edx
"nioh2.exe"+104A9BB: 83 F9 01                       -  cmp ecx,01
"nioh2.exe"+104A9BE: 75 12                          -  jne nioh2.exe+104A9D2
"nioh2.exe"+104A9C0: 41 8B 87 B8 04 00 00           -  mov eax,[r15+000004B8]
"nioh2.exe"+104A9C7: 45 0F B6 F6                    -  movzx r14d,r14l
"nioh2.exe"+104A9CB: 48 3B F0                       -  cmp rsi,rax
"nioh2.exe"+104A9CE: 44 0F 4F F2                    -  cmovg r14d,edx
"nioh2.exe"+104A9D2: 48 63 44 FB 08                 -  movsxd  rax,dword ptr [rbx+rdi*8+08]
}
</AssemblerScript>
    </CheatEntry>
  </CheatEntries>
</CheatTable>

Re: Nioh 2 PC 1.25 Cheat Table

Posted: Mon Feb 22, 2021 9:33 am
by Arikado
anon9 wrote:
Mon Feb 22, 2021 8:39 am
This should make Teahouse purchases require no Glory.

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
  <CheatEntries>
    <CheatEntry>
      <ID>90307</ID>
      <Description>"No Glory Cost for Teahouse Purchases"</Description>
      <LastState Activated="1"/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>{ Game   : nioh2.exe
  Author : anon-9

  This script attempts to ignore Glory for purchases.
  This will make all items cost 1 Glory for purchase reasons,
  but will not deduct Glory.
}

[ENABLE]

aobscanmodule(fIgnoreGlory,nioh2.exe,41 8B 87 BC 04 00 00) // should be unique
alloc(newmem,$1000,"nioh2.exe"+104A9A9)

label(code)
label(return)

newmem:

code:
  mov rsi,0
  mov eax,#99999
  jmp return

fIgnoreGlory:
  jmp newmem
  nop 2
return:
registersymbol(fIgnoreGlory)

[DISABLE]

fIgnoreGlory:
  db 41 8B 87 BC 04 00 00

unregistersymbol(fIgnoreGlory)
dealloc(newmem)

{
// ORIGINAL CODE - INJECTION POINT: "nioh2.exe"+104A9A9

"nioh2.exe"+104A982: 73 0D                          -  jae nioh2.exe+104A991
"nioh2.exe"+104A984: 48 B9 00 00 00 00 00 00 00 80  -  mov rcx,8000000000000000
"nioh2.exe"+104A98E: 48 8B C1                       -  mov rax,rcx
"nioh2.exe"+104A991: F3 48 0F 2C F0                 -  cvttss2si rsi,xmm0
"nioh2.exe"+104A996: 48 03 F0                       -  add rsi,rax
"nioh2.exe"+104A999: 45 32 F6                       -  xor r14l,r14l
"nioh2.exe"+104A99C: 8B 4C FB 2C                    -  mov ecx,[rbx+rdi*8+2C]
"nioh2.exe"+104A9A0: BA 01 00 00 00                 -  mov edx,00000001
"nioh2.exe"+104A9A5: 85 C9                          -  test ecx,ecx
"nioh2.exe"+104A9A7: 75 12                          -  jne nioh2.exe+104A9BB
// ---------- INJECTING HERE ----------
"nioh2.exe"+104A9A9: 41 8B 87 BC 04 00 00           -  mov eax,[r15+000004BC]
// ---------- DONE INJECTING  ----------
"nioh2.exe"+104A9B0: 45 0F B6 F6                    -  movzx r14d,r14l
"nioh2.exe"+104A9B4: 48 3B F0                       -  cmp rsi,rax
"nioh2.exe"+104A9B7: 44 0F 4F F2                    -  cmovg r14d,edx
"nioh2.exe"+104A9BB: 83 F9 01                       -  cmp ecx,01
"nioh2.exe"+104A9BE: 75 12                          -  jne nioh2.exe+104A9D2
"nioh2.exe"+104A9C0: 41 8B 87 B8 04 00 00           -  mov eax,[r15+000004B8]
"nioh2.exe"+104A9C7: 45 0F B6 F6                    -  movzx r14d,r14l
"nioh2.exe"+104A9CB: 48 3B F0                       -  cmp rsi,rax
"nioh2.exe"+104A9CE: 44 0F 4F F2                    -  cmovg r14d,edx
"nioh2.exe"+104A9D2: 48 63 44 FB 08                 -  movsxd  rax,dword ptr [rbx+rdi*8+08]
}
</AssemblerScript>
    </CheatEntry>
  </CheatEntries>
</CheatTable>
added, TY :)

Re: Nioh 2 PC 1.25 Cheat Table

Posted: Tue Feb 23, 2021 10:36 am
by ColWorld
Am I the only one having problems getting this to work at all? It's not showing my stuff. Here's a screenshot. The password is my username all lowercase

Re: Nioh 2 PC 1.25 Cheat Table

Posted: Wed Feb 24, 2021 2:48 am
by anon9
ColWorld wrote:
Tue Feb 23, 2021 10:36 am
Am I the only one having problems getting this to work at all? It's not showing my stuff. Here's a screenshot. The password is my username all lowercase
It won't work because there have been two updates since and the addresses have changed.

New patch came out. Going to test my scripts later.

Re: Nioh 2 PC 1.25 Cheat Table

Posted: Wed Mar 03, 2021 3:39 am
by Raymond Nelson
Every time I try to use a cheat the game restarts :( could anyone help me out? Thanks :)

Re: Nioh 2 PC 1.25 Cheat Table

Posted: Wed Mar 03, 2021 2:07 pm
by Toga
Raymond Nelson wrote:
Wed Mar 03, 2021 3:39 am
Every time I try to use a cheat the game restarts :( could anyone help me out? Thanks :)
it's for a lower version of this game.
use fearlessrevolution's trainer https://fearlessrevolution.com/trainer/nioh-2 ... n-trainer/
it's safe he or she is using an executable form of his/hers Cheat Engine table

Re: Nioh 2 PC 1.25 Cheat Table

Posted: Sun Mar 07, 2021 10:35 pm
by Raymond Nelson
Thanks! I'll try it out! 👻

Re: Nioh 2 PC 1.25 Cheat Table

Posted: Tue Dec 28, 2021 1:30 pm
by Cobepeuh
how to change soul core? for me, with any change, the game reloads.