Posted: Tue Aug 11, 2020 4:37 am Post subject: please help to understand what's wrong - Not all instruction
Hi,
I've recently seen few video guides "CE Tutorial x64" by TheyCallMeTim13 and decided to use that info in my cheats. I've googled a fresh table created by TheyCallMeTim13 for a different game - DyingLightGame.[v3.0.9].CT (can be easily found at fearlessrevolution). That table contains a lot of useful LUA and AA helper function/scripts I'm going to use in my table. For example - autoAttach to game process and getOpcodeAddress to simplify work with AOBScan.
So, the game I'm trying to cheat is called "Phoning Home". I've removed irrelevant content from DyingLightGame table (almost everything) and started to add required cheat content to my table - find a specific opcode, read the address opcode is accessing, update value at that address. Here's what I've got:
Code:
[ENABLE]
label(ptrFlyFuelUsage)
getOpcodeAddress(ptrFlyFuelUsage, 8B87xxxxxxxx8945CCD905, B)
registerSymbol(ptrFlyFuelUsage)
ptrFlyFuelUsage:
dd (float)14.0
[DISABLE]
ptrFlyFuelUsage:
dd (float)1400.0
unregisterSymbol(ptrFlyFuelUsage)
Now, when I activate the script the Cheat Engine returns error
Quote:
<<Not all instructions could be injected>>
I've found out that the problem is related to line with
Quote:
dd (float)14.0
.
Q1: Can someone explain me what's wrong with it? If I comment/remove that line the script will be executed successfully. Maybe something is missing?
Q2: Why the similar line inside [DISABLE] section is valid?
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum