Page 2 of 3

Re: Yakuza 0 (Microsoft Store)

Posted: Thu Apr 16, 2020 7:25 pm
by Mudi
freddiegottriggered wrote:
Wed Apr 15, 2020 6:38 pm
thanks a lot mudi! is it possible to add the one hit kill option? fighting can get tiresome :/
Done. I added a Strong Punch option.
Make sure to use it with the Unlimited HP option ON. I didn't have enough time to code a clean solution for Strong Punches, so enemies can also beat you up without the Unlimited HP on. But with both those options on (unlimited HP and strong punches), life is good!

Re: Yakuza 0 (Microsoft Store)

Posted: Thu Apr 16, 2020 7:28 pm
by Rhark
Mudi wrote:
Thu Apr 16, 2020 7:19 pm
I published a new table, adding 2 options for easy kills:
1. Strong Punches: most enemies die from one punch. Make sure to use with the unlimited HP option ON.
2. Instant Kills: enemies die as soon as the battle begins. I recommend use the Strong Punches instead of this one, it's more fun and you also get money from it.

I'm not super happy with the Instant Kill option, as you miss on the money rewards. But I added it just in case someone needs it.
I'll share mine, it doesn't require any Infinite Health options and gives you all the money rewards and kills enemies in 1 hit.

Easy Kills (Or "One Hit Kill"):

Code: Select all

[ENABLE]

aobscanmodule(kill,Yakuza0.exe,0F B7 52 16 03 C8) // should be unique
alloc(newmem,$1000,"Yakuza0.exe"+76771D)

label(code)
label(return)

newmem:

code:
  mov word ptr [rdx+16],#0
  add ecx,eax
  jmp return

kill:
  jmp newmem
  nop
return:
registersymbol(kill)

[DISABLE]

kill:
  db 0F B7 52 16 03 C8

unregistersymbol(kill)
dealloc(newmem)
Also have an untouchable script, enemies cannot touch/damage you:

Untouchable:

Code: Select all

[ENABLE]

aobscanmodule(invincibility,Yakuza0.exe,E3 5F C3 CC CC CC 48 89 6C 24 10) // should be unique
registersymbol(invincibility)

invincibility+06:
  db C3 90 90 90 90

[DISABLE]

invincibility+06:
  db 48 89 6C 24 10

unregistersymbol(invincibility)
dealloc(newmem)
This game is becoming very boring for me, a cutscene simulator if you will :P

Re: Yakuza 0 (Microsoft Store)

Posted: Thu Apr 16, 2020 10:16 pm
by Mudi
Thank you for sharing the code rhark.
I noticed that your Easy Kills code also affects the player HP, so I get 1-shotted by mobs if I don't land the punch first.
Probably it requires to be used at the same time with your Untouchable code.

By the way, I like your Untouchable hack, it's useful - I did the Punch Artist quest line with it.

Re: Yakuza 0 (Microsoft Store)

Posted: Thu Apr 16, 2020 10:17 pm
by Rhark
Mudi wrote:
Thu Apr 16, 2020 10:16 pm
Thank you for sharing the code rhark.
I noticed that your Easy Kills code also affects the player HP, so I get 1-shotted by mobs if I don't land the punch first.
Probably it requires to be used at the same time with your Untouchable code.

By the way, I like your Untouchable hack, it's useful - I did the Punch Artist quest line with it.
Hmm, I tested it earlier without untouchable on and normal damage was dealt to the player. Weird.

Edit: On my game, I can take like 6+ hits and then it kills me which is strange. Thanks for acknowledging this though, gonna see if I can do a compare to fix it :)

Re: Yakuza 0 (Microsoft Store)

Posted: Thu Apr 16, 2020 11:26 pm
by Rhark
This should fix it:

Easy Kills:

Code: Select all

[ENABLE]

aobscanmodule(kill,Yakuza0.exe,0F B7 52 16 03 C8) // should be unique
alloc(newmem,$1000,"Yakuza0.exe"+76771D)

label(code)
label(originalcode)
label(return)

newmem:

code:
  cmp [rdx+138], 9C080000
  je originalcode
  mov word ptr [rdx+16],#0
  add ecx,eax
  jmp return

originalcode:
  movzx edx,word ptr [rdx+16]
  add ecx,eax
  jmp return

kill:
  jmp newmem
  nop
return:
registersymbol(kill)

[DISABLE]

kill:
  db 0F B7 52 16 03 C8

unregistersymbol(kill)
dealloc(newmem)

Re: Yakuza 0 (Microsoft Store)

Posted: Sun Apr 19, 2020 10:40 am
by davidcopher
Thanks for this. <3

Re: Yakuza 0 (Microsoft Store)

Posted: Thu Apr 30, 2020 1:03 am
by ebtesam22
can you add majima mini-game cheat?

Re: Yakuza 0 (Microsoft Store)

Posted: Thu Apr 30, 2020 2:58 pm
by Rhark
ebtesam22 wrote:
Thu Apr 30, 2020 1:03 am
can you add majima mini-game cheat?
What is majima?

Re: Yakuza 0 (Microsoft Store)

Posted: Thu Apr 30, 2020 8:33 pm
by ebtesam22
Rhark wrote:
Thu Apr 30, 2020 2:58 pm
ebtesam22 wrote:
Thu Apr 30, 2020 1:03 am
can you add majima mini-game cheat?
What is majima?
the lord of the night? Goro Majima

he has a club mini-game at sotenbori in chapter 7

Re: Yakuza 0 (Microsoft Store)

Posted: Thu Apr 30, 2020 8:35 pm
by Rhark
ebtesam22 wrote:
Thu Apr 30, 2020 8:33 pm
Rhark wrote:
Thu Apr 30, 2020 2:58 pm
ebtesam22 wrote:
Thu Apr 30, 2020 1:03 am
can you add majima mini-game cheat?
What is majima?
the lord of the night? Goro Majima

he has a club mini-game at sotenbori in chapter 7
Ah sorry, didn't get that far before I finished my table. This is all I got:

Image

Re: Yakuza 0 (Microsoft Store)

Posted: Thu Apr 30, 2020 10:10 pm
by ebtesam22
Rhark wrote:
Thu Apr 30, 2020 8:35 pm
ebtesam22 wrote:
Thu Apr 30, 2020 8:33 pm
Rhark wrote:
Thu Apr 30, 2020 2:58 pm


What is majima?
the lord of the night? Goro Majima

he has a club mini-game at sotenbori in chapter 7
Ah sorry, didn't get that far before I finished my table. This is all I got:

Image
yes this what i want how can i download this?

Re: Yakuza 0 (Microsoft Store)

Posted: Thu Apr 30, 2020 10:17 pm
by Rhark
ebtesam22 wrote:
Thu Apr 30, 2020 10:10 pm
Rhark wrote:
Thu Apr 30, 2020 8:35 pm
ebtesam22 wrote:
Thu Apr 30, 2020 8:33 pm

the lord of the night? Goro Majima

he has a club mini-game at sotenbori in chapter 7
Ah sorry, didn't get that far before I finished my table. This is all I got:

Image
yes this what i want how can i download this?
I haven't published it yet.

Re: Yakuza 0 (Microsoft Store)

Posted: Fri May 01, 2020 1:05 am
by ebtesam22
Rhark wrote:
Thu Apr 30, 2020 10:17 pm
ebtesam22 wrote:
Thu Apr 30, 2020 10:10 pm
Rhark wrote:
Thu Apr 30, 2020 8:35 pm


Ah sorry, didn't get that far before I finished my table. This is all I got:

Image
yes this what i want how can i download this?
I haven't published it yet.
please let me in xD

Re: Yakuza 0 (Microsoft Store)

Posted: Sat May 02, 2020 6:24 pm
by Rhark
ebtesam22 wrote:
Fri May 01, 2020 1:05 am
Rhark wrote:
Thu Apr 30, 2020 10:17 pm
ebtesam22 wrote:
Thu Apr 30, 2020 10:10 pm

yes this what i want how can i download this?
I haven't published it yet.
please let me in xD
Will be available @ the site in my sig soon™️

Re: Yakuza 0 (Microsoft Store)

Posted: Sat May 02, 2020 10:39 pm
by ebtesam22
Rhark wrote:
Sat May 02, 2020 6:24 pm
ebtesam22 wrote:
Fri May 01, 2020 1:05 am
Rhark wrote:
Thu Apr 30, 2020 10:17 pm

I haven't published it yet.
please let me in xD
Will be available @ the site in my sig soon™️
great i'll be waiting
thx