So pox911 made the below that unlocked all the customization items in the game but it no longer works due to the game being patched.
Is any one able to help update the below to the most recent steam version? and perhaps provide a guide on how to update it for future patches (Noctis update being the upcoming one)?
Still new to using Cheat Engine and haven't had any luck.
Thanks.
pox911 wrote: ↑Thu Jun 08, 2017 4:09 amHere is a code that lets you unlock anything you want from the character customization. It will let you buy anything for free and even allow you to purchase the items you normally have to unlock via boxes. As usual, select all text, right click in the white space where you normally have all your codes at, and hit paste.
Code: Select all
<?xml version="1.0" encoding="utf-8"?> <CheatTable> <CheatEntries> <CheatEntry> <ID>87</ID> <Description>"Able to purchase any character customization (and for free)"</Description> <LastState/> <VariableType>Auto Assembler Script</VariableType> <AssemblerScript>[ENABLE] //code from here to '[DISABLE]' will be used to enable the cheat aobscanmodule(FreeItemAOB,TekkenGame-Win64-Shipping.exe,40 53 48 83 EC 20 8B DA E8 * * * * 48 8b c8) // should be unique aobscanmodule(CheckFundsAOB,TekkenGame-Win64-Shipping.exe,41 8B 0E 48 3B C1) // should be unique aobscanmodule(ForceUnlockAOB,TekkenGame-Win64-Shipping.exe,44 0F B6 4B 2C 8B D0 44 0F B6 43 11 8B 0B 48 83 C4 20 5B) // should be unique alloc(newmem,$1000,"TekkenGame-Win64-Shipping.exe") label(FreeItemCode) label(CheckFundCode) label(ForceUnlockCode) label(FreeItemReturn) label(CheckFundReturn) label(ForceUnlockReturn) registersymbol(FreeItemAOB) registersymbol(CheckFundsAOB) registersymbol(ForceUnlockAOB) newmem: FreeItemCode: mov edx,0 push rbx sub rsp,20 jmp FreeItemReturn CheckFundCode: mov ecx,0 cmp rax,rcx jmp CheckFundReturn ForceUnlockCode: mov r9d,03 jmp ForceUnlockReturn FreeItemAOB: jmp FreeItemCode nop FreeItemReturn: CheckFundsAOB: jmp CheckFundCode nop CheckFundReturn: ForceUnlockAOB: jmp ForceUnlockCode ForceUnlockReturn: [DISABLE] //code from here till the end of the code will be used to disable the cheat FreeItemAOB: db 40 53 48 83 EC 20 CheckFundsAOB: db 41 8B 0E 48 39 C8 ForceUnlockAOB: db 44 0F B6 4B 2C unregistersymbol(FreeItemAOB) unregistersymbol(CheckFundsAOB) unregistersymbol(ForceUnlockAOB) dealloc(newmem) </AssemblerScript> </CheatEntry> </CheatEntries> </CheatTable>