Page 100 of 125

Re: Booty Calls [+31]

Posted: Sun Jun 12, 2022 8:22 am
by GreenHouse
r0b33 wrote:
Sun Jun 12, 2022 7:01 am
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.

Re: Booty Calls [+31]

Posted: Sun Jun 12, 2022 1:28 pm
by r0b33
GreenHouse wrote:
Sun Jun 12, 2022 8:22 am
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.

Re: Booty Calls [+31]

Posted: Mon Jun 13, 2022 7:57 am
by Sniper II
HELLOW,BRO

How to do the x99orX2 gacha thing once in version steam 1.2.118.292 ?

I didn't find the option of FreeDraw on Flea Market in version steam 1.2.118.292

So,How to activate the option of FreeDraw on Flea Market ?

Re: Booty Calls [+31]

Posted: Fri Jun 17, 2022 4:46 am
by slaphappyhobbit
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?

Re: Booty Calls [+31]

Posted: Fri Jun 17, 2022 3:27 pm
by r0b33
slaphappyhobbit wrote:
Fri Jun 17, 2022 4:46 am
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

Re: Booty Calls [+31]

Posted: Fri Jun 17, 2022 6:37 pm
by slaphappyhobbit
r0b33 wrote:
Fri Jun 17, 2022 3:27 pm
slaphappyhobbit wrote:
Fri Jun 17, 2022 4:46 am
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.

Re: Booty Calls [+31]

Posted: Sun Jun 19, 2022 5:55 pm
by Czolgista
How do i use "get normal quest" feature?

Re: Booty Calls [+31]

Posted: Wed Jun 22, 2022 10:07 pm
by _goat
is it just me or the cheat just not working anymore ?

Re: Booty Calls [+31]

Posted: Fri Jun 24, 2022 5:17 am
by noxiousspider
Ok, I know this has been asked 1000 times but could someone please give a step-by-step way to get things such as puzzle pieces or jewels or cash?

N.B Great Engine, a huge help.

Re: Booty Calls [+31]

Posted: Sat Jun 25, 2022 6:14 pm
by Schweppsik
How to make many diamonds, if i complete all quests

Re: Booty Calls [+31]

Posted: Sun Jun 26, 2022 7:02 am
by notsofast
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

edit: don't forget to turn on mono feature. op's main table has the enable script that turns it on for you so this is meant to be added to that

Code: Select all

<?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>

Re: Booty Calls [+31]

Posted: Sun Jun 26, 2022 11:11 am
by cyberfreak03
notsofast wrote:
Sun Jun 26, 2022 7:02 am
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

Code: Select all

<?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.

Re: Booty Calls [+31]

Posted: Sun Jun 26, 2022 12:14 pm
by r0b33
BootyCalls CE Table
THIS VERSION WORKS ONLY WITH THE NUTAKU VERSION

BootyCalls_NE_1.2.118.476_CV1836.CT



CHANGELOG
  • FIXED Adventure Cooldown
  • ADDED CE window minimalization
  • ADDED QUESTS ▶️ Double Date + DD Points option (can only be activated if the event is active)
  • ADDED GIRL ▶️ Free Sex Pose / BG (Thanks to notsofast for original script)
    • This option not or not immediately changes the visuals of cost!
    • This option does not affect the items available on the gatcha and flea market!
File deleted - there is a newer version.

Re: Booty Calls [+31]

Posted: Sun Jun 26, 2022 9:40 pm
by notsofast
cyberfreak03 wrote:
Sun Jun 26, 2022 11:11 am
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

Re: Booty Calls [+31]

Posted: Mon Jun 27, 2022 6:36 am
by GreenHouse
notsofast wrote:
Sun Jun 26, 2022 7:02 am
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.