Mafia 3
Re: Mafia 3
you're welcome enjoy
-
qweasdzxc17
- Expert Cheater

- Posts: 82
- Joined: Wed Apr 19, 2017 10:41 am
- Reputation: 35
Re: Mafia 3
For anyone looking for the new read floats for the latest version :
Code: Select all
[ENABLE]
aobscanmodule(read_floats,mafia3.exe,F3 0F 10 41 18 C3 90)
registersymbol(read_floats)
[DISABLE]
unregistersymbol(read_floats)
Re: Mafia 3
thank you
-
zirkinator
- What is cheating?

- Posts: 2
- Joined: Mon Jul 17, 2017 1:49 pm
- Reputation: 0
Re: Mafia 3
Can anyone provide a freeze time cheat table? Thanks a lot!
Re: Mafia 3
No Spread
Code: Select all
[ENABLE]
AoBScanModule(View, Mafia3.exe, F3 0F 11 93 ? ? ? ? 44 0F 28 44 24 )
AoBScanModule(Fire, Mafia3.exe, F3 0F 11 93 ? ? ? ? F3 0F 10 9F)
registerSymbol(View)
registerSymbol(Fire)
alloc(newmem,256, "Mafia3.exe")
label(return)
View:
jmp newmem
nop
nop
nop
return:
Fire:
db 90 90 90 90 90 90 90 90
newmem:
movss [rbx+104],xmm2
cmp r9d,FFFFFFFF
je @f
cmp r9,20
jge return
cmp r9,1
jle return
@@:
mov [rbx+104],(float)0.0001
jmp return
[DISABLE]
dealloc(newmem)
dealloc(return)
unregistersymbol(View)
unregistersymbol(Fire)
View:
movss [rbx+104],xmm2
Fire:
movss [rbx+104],xmm2
Last edited by gir489 on Fri Jul 28, 2017 2:49 am, edited 1 time in total.
Re: Mafia 3
Race Timer is always at 0 Minutes 2 seconds:
Code: Select all
[ENABLE]
AoBScanModule(RaceTime, mafia3.exe, F3 41 0F 58 48 ? 49 8B D8 )
registersymbol(RaceTime)
RaceTime:
db 90 90 90 90 90 90
[DISABLE]
unregistersymbol(RaceTime)
RaceTime:
addss xmm1, DWORD PTR [r8+10]Re: Mafia 3
Always finish 1st place:
Code: Select all
[ENABLE]
AoBScanModule(Place, Mafia3.exe, 41 89 76 14 FF C6 )
registerSymbol(Place)
alloc(newmem, 256, "Mafia3.exe")
label(return)
Place:
jmp newmem
nop
return:
newmem:
mov [r14+14], 1
inc esi
jmp return
[DISABLE]
dealloc(Place)
unregistersymbol(Place)
Place:
mov [r14+14], esi
inc esi-
zirkinator
- What is cheating?

- Posts: 2
- Joined: Mon Jul 17, 2017 1:49 pm
- Reputation: 0
Re: Mafia 3
Thank you so much for sharing! Script works like a charm.gir489 wrote: ↑Wed Jul 19, 2017 9:30 pmNo Spread
Code: Select all
[ENABLE] AoBScanModule(View, Mafia3.exe, F3 0F 11 93 ? ? ? ? 44 0F 28 44 24 ) AoBScanModule(Fire, Mafia3.exe, F3 0F 11 97 ? ? ? ? F3 0F 10 9E) registerSymbol(View) registerSymbol(Fire) alloc(newmem,256, "Mafia3.exe") label(return) View: jmp newmem nop nop nop return: Fire: db 90 90 90 90 90 90 90 90 newmem: movss [rbx+104],xmm2 cmp r9d,FFFFFFFF je @f cmp r9,20 jge return cmp r9,1 jle return @@: mov [rbx+104],(float)0.0001 jmp return [DISABLE] dealloc(newmem) dealloc(return) unregistersymbol(View) unregistersymbol(Fire) View: movss [rbx+104],xmm2 Fire: movss [rdi+00000104],xmm2
Re: Mafia 3
Here's a script you can use to unlock everything but vehicle upgrades. It requires the Mafia III ScriptHook, though.
I'm working on reverse engineering the LuaC for the game so I can add that. But for now, this is all I got. You can basically unlock almost everything from the federal reserve heist, which is where I tested it. I was able to call the resupply guy during the heist, and have a car delivered.
Here's my save with everything (I can get at the moment) unlocked just after you have the flashback from Sammy's: http://www.mediafire.com/file/me99v33ck ... gir489.rar I was going to have it start you from the very beginning, but tutorials suck-ass, and you skip those anyway during good new game pluses, anyway. If you're feeling nostalgic for the mission, play it first, get to Sammy's after you drive there with Donovan, and then my save should pick up there.
EDIT: I also fixed my Nospread script.
Code: Select all
UnlockAllWeapons = [[
package.loaded.common.base.game_structure_console.UnlockAllWeapons()
]]
UnlockAllVehicles = [[
package.loaded.common.base.game_structure_console.UnlockAllVehicles()
]]
UnlockAllServices = [[
package.loaded.common.base.game_structure_console.UnlockAllServices()
]]
unbindKey("o");
bindKey("o", UnlockAllWeapons);
unbindKey("k");
bindKey("k", UnlockAllVehicles);
unbindKey("l");
bindKey("l", UnlockAllServices);Here's my save with everything (I can get at the moment) unlocked just after you have the flashback from Sammy's: http://www.mediafire.com/file/me99v33ck ... gir489.rar I was going to have it start you from the very beginning, but tutorials suck-ass, and you skip those anyway during good new game pluses, anyway. If you're feeling nostalgic for the mission, play it first, get to Sammy's after you drive there with Donovan, and then my save should pick up there.
EDIT: I also fixed my Nospread script.
Re: Mafia 3
Re: Mafia 3
Can someone test my save and see if it works? You might have to figure out which profile number is yours. And even if you do, Mafia III might complain the save is corrupt. I tried to test it on Mafia III CODEX Update 3, but it would just crash when trying to load the save. Probably because the save is too new.
Re: Mafia 3
I downloaded and installed your save file it came up and worked for me
I'm running Windows 10 64-bit steam version of Mafia 3
I'm running Windows 10 64-bit steam version of Mafia 3
Re: Mafia 3
Nice. Thanks for testing it.
Who is online
Users browsing this forum: BooBoo

