[Request] Yakuza: Like a Dragon
Re: [Request] Yakuza: Like a Dragon
Anyone got any cheats or tips for the virtual fighter mini game, it's still a pain in the ass like all the previous yakuza game, i've spent hours trying to beat all the stage and managed to find something that seems like the character HP but i still die after i froze the HP bar.
-
- What is cheating?
- Posts: 1
- Joined: Thu Nov 26, 2020 2:32 am
- Reputation: 0
Re: [Request] Yakuza: Like a Dragon
seconding this..!JokeZ wrote: ↑Wed Nov 25, 2020 11:06 pmAnyone got any cheats or tips for the virtual fighter mini game, it's still a pain in the ass like all the previous yakuza game, i've spent hours trying to beat all the stage and managed to find something that seems like the character HP but i still die after i froze the HP bar.
-
- Novice Cheater
- Posts: 17
- Joined: Tue Feb 13, 2018 4:45 am
- Reputation: 15
Re: [Request] Yakuza: Like a Dragon
I was bored... copy this into your cheat table and it will make it so the opponent cannot decrease your hp.JokeZ wrote: ↑Wed Nov 25, 2020 11:06 pmAnyone got any cheats or tips for the virtual fighter mini game, it's still a pain in the ass like all the previous yakuza game, i've spent hours trying to beat all the stage and managed to find something that seems like the character HP but i still die after i froze the HP bar.
Edit 2: Fixed it.
Note: The code for VF 5 is loaded when you see the Sega logo after you start the minigame, so the code won't work till at least that point. Make sure to turn it off before you leave the minigame or it will be stuck on and you will need to reload the table.
Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
<CheatEntries>
<CheatEntry>
<ID>18</ID>
<Description>"VF 5 no hit (Turn me off before exiting minigame)"</Description>
<LastState/>
<VariableType>Auto Assembler Script</VariableType>
<AssemblerScript>[ENABLE]
aobscanmodule(NoHit,vf5fs-pxd-w64-Retail.dll,E8 9E 32 F2 FF) // should be unique
alloc(newmem,$1000,NoHit)
alloc(you,$8)
label(return)
label(getyou)
registersymbol(you)
you:
dq 0
newmem:
mov rax,[rbx+20]
or [rax+000006C8],00100000
cmp [you],0
je getyou
cmp rbx,[you]
jne return
mov si,[rbx+0A]
jmp return
getyou:
cmp r15,2
jne return
mov [you],rax
jmp newmem
NoHit+11:
jmp newmem
nop,9
return:
registersymbol(NoHit)
[DISABLE]
you:
dq 0
NoHit+11:
db 48 8B 43 20 81
dealloc(newmem)
dealloc(you)
unregistersymbol(you)
unregistersymbol(NoHit)
</AssemblerScript>
</CheatEntry>
</CheatEntries>
</CheatTable>
Last edited by DemonicSpell on Thu Nov 26, 2020 11:34 am, edited 1 time in total.
Re: [Request] Yakuza: Like a Dragon
For anyone, the HP of Virtual Fighter 2.1 is max 160 on byte, i can't seems to find the pointer so this is out of my capability.
This one address here is the HP for 1P =7FFA71E20BFC
This one address here is the HP for 2P =7FFA71E22BFC
This one address here is the HP for 1P =7FFA71E20BFC
This one address here is the HP for 2P =7FFA71E22BFC
- Yondaime_Kazzy
- Cheater
- Posts: 45
- Joined: Sat Dec 09, 2017 11:08 pm
- Reputation: 4
Re: [Request] Yakuza: Like a Dragon
Is it possible to make a cheat where you can ignore the materials needed for crafting. Would be awesome!
Re: [Request] Yakuza: Like a Dragon
hi guys i found a better script that would set any item to 99.
Code: Select all
{ Game : YakuzaLikeADragon.exe
Version: 1.03.1
Date : 2020-12-03
Author : Deisuke
This script sets any item to 99.
}
[ENABLE]
aobscanmodule(FirstInject,YakuzaLikeADragon.exe,C7 40 04 00 00 00 00 B0 01 48 8B 5C )
alloc(newmemSetZero,$1000,"YakuzaLikeADragon.exe"+1A411B07)
label(setZeroTo99)
label(returnSetZero)
aobscanmodule(SecoundInject,YakuzaLikeADragon.exe,44 89 70 04 B0 01 48 8B 5C 24 50)
alloc(newmemTo99,$1000,"YakuzaLikeADragon.exe"+1A411B1E)
label(setItemTo99)
label(returnsetItem)
newmemSetZero:
setZeroTo99:
mov [rax+04],063
jmp returnSetZero
FirstInject:
jmp newmemSetZero
nop 2
returnSetZero:
registersymbol(FirstInject)
newmemTo99:
setItemTo99:
mov r14d,063
mov [rax+04],r14d
mov al,01
jmp returnsetItem
SecoundInject:
jmp newmemTo99
nop
returnsetItem:
registersymbol(SecoundInject)
[DISABLE]
FirstInject:
db C7 40 04 00 00 00 00
SecoundInject:
db 44 89 70 04 B0 01
unregistersymbol(FirstInject)
dealloc(newmemSetZero)
unregistersymbol(SecoundInject)
dealloc(newmemTo99)
Re: [Request] Yakuza: Like a Dragon
so no one going to make a table for this game?
- Darkedone02
- Expert Cheater
- Posts: 970
- Joined: Thu Mar 02, 2017 11:42 pm
- Reputation: 114
-
- Novice Cheater
- Posts: 16
- Joined: Sat Jul 01, 2017 1:43 am
- Reputation: 0
Re: [Request] Yakuza: Like a Dragon
Deisuke94 wrote: ↑Thu Dec 03, 2020 3:12 pmhi guys i found a better script that would set any item to 99.
Code: Select all
{ Game : YakuzaLikeADragon.exe Version: 1.03.1 Date : 2020-12-03 Author : Deisuke This script sets any item to 99. } [ENABLE] aobscanmodule(FirstInject,YakuzaLikeADragon.exe,C7 40 04 00 00 00 00 B0 01 48 8B 5C ) alloc(newmemSetZero,$1000,"YakuzaLikeADragon.exe"+1A411B07) label(setZeroTo99) label(returnSetZero) aobscanmodule(SecoundInject,YakuzaLikeADragon.exe,44 89 70 04 B0 01 48 8B 5C 24 50) alloc(newmemTo99,$1000,"YakuzaLikeADragon.exe"+1A411B1E) label(setItemTo99) label(returnsetItem) newmemSetZero: setZeroTo99: mov [rax+04],063 jmp returnSetZero FirstInject: jmp newmemSetZero nop 2 returnSetZero: registersymbol(FirstInject) newmemTo99: setItemTo99: mov r14d,063 mov [rax+04],r14d mov al,01 jmp returnsetItem SecoundInject: jmp newmemTo99 nop returnsetItem: registersymbol(SecoundInject) [DISABLE] FirstInject: db C7 40 04 00 00 00 00 SecoundInject: db 44 89 70 04 B0 01 unregistersymbol(FirstInject) dealloc(newmemSetZero) unregistersymbol(SecoundInject) dealloc(newmemTo99)
Hey brother, How to use this? New to making scripts
Re: [Request] Yakuza: Like a Dragon
how to use this?garrethking wrote: ↑Sat Dec 12, 2020 7:27 amDeisuke94 wrote: ↑Thu Dec 03, 2020 3:12 pmhi guys i found a better script that would set any item to 99.
Code: Select all
{ Game : YakuzaLikeADragon.exe Version: 1.03.1 Date : 2020-12-03 Author : Deisuke This script sets any item to 99. } [ENABLE] aobscanmodule(FirstInject,YakuzaLikeADragon.exe,C7 40 04 00 00 00 00 B0 01 48 8B 5C ) alloc(newmemSetZero,$1000,"YakuzaLikeADragon.exe"+1A411B07) label(setZeroTo99) label(returnSetZero) aobscanmodule(SecoundInject,YakuzaLikeADragon.exe,44 89 70 04 B0 01 48 8B 5C 24 50) alloc(newmemTo99,$1000,"YakuzaLikeADragon.exe"+1A411B1E) label(setItemTo99) label(returnsetItem) newmemSetZero: setZeroTo99: mov [rax+04],063 jmp returnSetZero FirstInject: jmp newmemSetZero nop 2 returnSetZero: registersymbol(FirstInject) newmemTo99: setItemTo99: mov r14d,063 mov [rax+04],r14d mov al,01 jmp returnsetItem SecoundInject: jmp newmemTo99 nop returnsetItem: registersymbol(SecoundInject) [DISABLE] FirstInject: db C7 40 04 00 00 00 00 SecoundInject: db 44 89 70 04 B0 01 unregistersymbol(FirstInject) dealloc(newmemSetZero) unregistersymbol(SecoundInject) dealloc(newmemTo99)
Hey brother, How to use this? New to making scripts
Re: [Request] Yakuza: Like a Dragon
i am not sure if it will work anymore since the newer patches has been released. secoundly to use this you have to open memeory viewer and than go to to auto assembler. next you have to copy and paste this code at the auto assemble and then save the table.xros wrote: ↑Mon Dec 14, 2020 8:29 amhow to use this?garrethking wrote: ↑Sat Dec 12, 2020 7:27 amDeisuke94 wrote: ↑Thu Dec 03, 2020 3:12 pmhi guys i found a better script that would set any item to 99.
Code: Select all
{ Game : YakuzaLikeADragon.exe Version: 1.03.1 Date : 2020-12-03 Author : Deisuke This script sets any item to 99. } [ENABLE] aobscanmodule(FirstInject,YakuzaLikeADragon.exe,C7 40 04 00 00 00 00 B0 01 48 8B 5C ) alloc(newmemSetZero,$1000,"YakuzaLikeADragon.exe"+1A411B07) label(setZeroTo99) label(returnSetZero) aobscanmodule(SecoundInject,YakuzaLikeADragon.exe,44 89 70 04 B0 01 48 8B 5C 24 50) alloc(newmemTo99,$1000,"YakuzaLikeADragon.exe"+1A411B1E) label(setItemTo99) label(returnsetItem) newmemSetZero: setZeroTo99: mov [rax+04],063 jmp returnSetZero FirstInject: jmp newmemSetZero nop 2 returnSetZero: registersymbol(FirstInject) newmemTo99: setItemTo99: mov r14d,063 mov [rax+04],r14d mov al,01 jmp returnsetItem SecoundInject: jmp newmemTo99 nop returnsetItem: registersymbol(SecoundInject) [DISABLE] FirstInject: db C7 40 04 00 00 00 00 SecoundInject: db 44 89 70 04 B0 01 unregistersymbol(FirstInject) dealloc(newmemSetZero) unregistersymbol(SecoundInject) dealloc(newmemTo99)
Hey brother, How to use this? New to making scripts
-
- Novice Cheater
- Posts: 16
- Joined: Sat Jul 01, 2017 1:43 am
- Reputation: 0
Re: [Request] Yakuza: Like a Dragon
Hey man. Still works. Thanks
Re: [Request] Yakuza: Like a Dragon
A management table or something would rock, it gets super hard the higher rank you are.
-
- What is cheating?
- Posts: 3
- Joined: Mon Jan 04, 2021 9:50 pm
- Reputation: 0
Re: [Request] Yakuza: Like a Dragon
Anyone got a money/ point shop for cart and shogi table? The fearlessrevolution trainer is outdated and theres some malware on the last version
Re: [Request] Yakuza: Like a Dragon
Item codes seem to follow the pattern: 7FF4C575F### All the item codes I've found so far seem to match this pattern.
7FF4C575F2D4 : Level Up Can
7FF4C575FA34 : Daikon
7FF4C575F9B4 : Tomato
7FF4C575FB54 : Hot Pepper
7FF4C575F774 : Bronze Plate
7FF4C575FA44 : Potato
7FF4C575FBD4 : Tumeric
7FF4C575FED4 : Kabubin
7FF4C575F2D4 : Level Up Can
7FF4C575FA34 : Daikon
7FF4C575F9B4 : Tomato
7FF4C575FB54 : Hot Pepper
7FF4C575F774 : Bronze Plate
7FF4C575FA44 : Potato
7FF4C575FBD4 : Tumeric
7FF4C575FED4 : Kabubin
Who is online
Users browsing this forum: AmazonBot, HanLiem, leandrodolce933, Lil_Disney_fan, noodlexpen, OBiscu1t, Sensei7