if I understand correctly, this is a nicely worded negative answer.
attempt to perform arithmetic on a nil value
(no matter whether readIntegerLocal or readQword)
All further commands are commented out at this point.
Well, I don't know where that error comes up, so I don't exactly what's the problem. Still, you need to use my table, as it includes those functions in it.
Also, it's not a negative answer. I don't have the x86 version, and it requires multiple changes. So I just explained what you'd need to change if you wanted to make it work for the x86 version.
How to use this cheat table?
Install Cheat Engine
Double-click the .CT file in order to open it.
Click the PC icon in Cheat Engine in order to select the game process.
Keep the list.
Activate the trainer options by checking boxes or setting values from 0 to 1
Well, I don't know where that error comes up, so I don't exactly what's the problem. Still, you need to use my table, as it includes those functions in it.
Also, it's not a negative answer. I don't have the x86 version, and it requires multiple changes. So I just explained what you'd need to change if you wanted to make it work for the x86 version.
Ok, I accept, it's not up to my knowledge to make this conversion. I'll use your table as it is.
Ok, so I've never used fearless cheat engine before. I downloaded it, and a couple of the cheat tables posted in this forum post, but every time I try to open a cheat table I get the error "This table isn't compatible with the Fearlessrevolutionapp. Download cheat engine tables from fearlessrevolution website." Does anyone know how to fix this?
Ok, so I've never used fearless cheat engine before. I downloaded it, and a couple of the cheat tables posted in this forum post, but every time I try to open a cheat table I get the error "This table isn't compatible with the Fearlessrevolutionapp. Download cheat engine tables from fearlessrevolution website." Does anyone know how to fix this?
Ok, so I've never used fearless cheat engine before. I downloaded it, and a couple of the cheat tables posted in this forum post, but every time I try to open a cheat table I get the error "This table isn't compatible with the Fearlessrevolutionapp. Download cheat engine tables from fearlessrevolution website." Does anyone know how to fix this?
Use CE v7.4
Thank you, this worked perfectly. Now I just have to figure out how to enable the cheats lol. I can't seem to be able to check the boxes beyond "enable cheats" and opening the folders.
<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
<CheatEntries>
<CheatEntry>
<ID>2885</ID>
<Description>"Free custom sex pose"</Description>
<LastState Activated="1"/>
<VariableType>Auto Assembler Script</VariableType>
<AssemblerScript>[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048,CustomizeSexPanel:Buy+92)
label(returnhere)
label(originalcode)
label(exit)
newmem: //this is allocated memory, you have read,write,execute access
//place your code here
originalcode:
mov [rdi+30],0
movsxd rcx,dword ptr [rdi+30]
mov [rbp-40],rcx
exit:
jmp returnhere
CustomizeSexPanel:Buy+92:
jmp newmem
nop 3
returnhere:
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
CustomizeSexPanel:Buy+92:
movsxd rcx,dword ptr [rdi+30]
mov [rbp-40],rcx
//Alt: db 48 63 4F 30 48 89 4D C0
</AssemblerScript>
</CheatEntry>
</CheatEntries>
</CheatTable>
Last edited by notsofast on Sun Jun 26, 2022 9:41 pm, edited 1 time in total.
<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
<CheatEntries>
<CheatEntry>
<ID>2885</ID>
<Description>"Free custom sex pose"</Description>
<LastState Activated="1"/>
<VariableType>Auto Assembler Script</VariableType>
<AssemblerScript>[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048,CustomizeSexPanel:Buy+92)
label(returnhere)
label(originalcode)
label(exit)
newmem: //this is allocated memory, you have read,write,execute access
//place your code here
originalcode:
mov [rdi+30],0
movsxd rcx,dword ptr [rdi+30]
mov [rbp-40],rcx
exit:
jmp returnhere
CustomizeSexPanel:Buy+92:
jmp newmem
nop 3
returnhere:
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
CustomizeSexPanel:Buy+92:
movsxd rcx,dword ptr [rdi+30]
mov [rbp-40],rcx
//Alt: db 48 63 4F 30 48 89 4D C0
</AssemblerScript>
</CheatEntry>
</CheatEntries>
</CheatTable>
I tried activating the script but i got a error "Error in line 3 (alloc(newmem,2048, CustomizeSexPanel:Buy+92)): Failure determining what CustomizeSexPanel:Buy+92 means", It would be great if the script worked because unlocking all the poses it's so time consuming.
I tried activating the script but i got a error "Error in line 3 (alloc(newmem,2048, CustomizeSexPanel:Buy+92)): Failure determining what CustomizeSexPanel:Buy+92 means", It would be great if the script worked because unlocking all the poses it's so time consuming.
you have to turn on mono feature. the enable code in GreenHouse's table will turn that on for you this code is meant to be added under his table
I made free custom sex pose cheat, it seems to work for me if anyone wanna give it a whirl to see if it works for yall too
As a general advice, you shouldn't use Code Injection, and use aobscan instead. Use the Aobscan template, and change aobscan to aobscanregion. The format would be something like: aobscanregion(get_customSexPose,CustomizeSexPanel:Buy,CustomizeSexPanel:Buy+200,AOBHERE).
Using Code Injection will always inject it on the same location, and any update that changes the function will break the script and crash the game. But aobscanregion will look inside the area you specify, so even if there's a change in the function and it moves around, it will still place it in the correct place.