Page 1 of 1

Assassins Creed Chronicles: China

Posted: Thu May 04, 2017 6:17 am
by STN
Assassins Creed Chronicles: China (CODEX Release - x32 - DX11)

4/23/2015
+Infinite Health
+Infinite Throwables
+Stealth Mode

vng21092


did some backtracing from your stealth script, and managed to blind the enemies. so, the "seen register" process should be somewhere from this injection point to your stealth script injection point...
but I was tempted by this script and rush through the game last night...
so I'm done with the game~~ and stopped the code tracing.... Embarassed

Code:
[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
aobscan(enemiesLineOfSightBehaviourStartAOB,D9 44 24 04 56 51 8B F1 D9 1C 24 E8 ** ** ** ** 8B 06 ** ** ** ** ** ** ** ** 85 C0)
registersymbol(enemiesLineOfSightBehaviourStartAOB)

alloc(newmem,2048)
label(returnhere)
label(originalcode)
label(exit)

newmem: //this is allocated memory, you have read,write,execute access
//place your code here
ret 4 //skip it all. //result: the enemies are blinded.

originalcode:
fld dword ptr [esp+04]
push esi

exit:
jmp returnhere

///

enemiesLineOfSightBehaviourStartAOB: //"ACCGame-Win32-Shipping.exe"+BF8520:
jmp newmem
returnhere:




[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
enemiesLineOfSightBehaviourStartAOB: //"ACCGame-Win32-Shipping.exe"+BF8520:
db D9 44 24 04 56
//Alt: fld dword ptr [esp+04]
//Alt: push esi
unregistersymbol(enemiesLineOfSightBehaviourStartAOB)

Cielos

Re: Assassins Creed Chronicles: China

Posted: Thu Jun 22, 2017 7:07 am
by dharmang1910
Thanx