[Request] Dave The Diver

Ask about cheats/tables for single player games here
toeydampet2539
Noobzor
Noobzor
Posts: 10
Joined: Thu Jul 06, 2023 2:14 pm
Reputation: 1

Re: [Request] Dave The Diver

Post by toeydampet2539 »

sumakelenzi wrote:
Thu Jul 13, 2023 5:17 am
update please to v1.0.0.980. i really like this cheat engine. thanks!
I agree

Sensei7
Expert Cheater
Expert Cheater
Posts: 152
Joined: Wed Feb 08, 2023 4:04 pm
Reputation: 62

Re: [Request] Dave The Diver

Post by Sensei7 »

unREAL wrote:
Fri Jul 14, 2023 7:31 am
I made a table that allows to spawn ANY item - it works ( for version 1.0.0.64 ) but coz I need to do some crazy ass thread shit to call functions it is unstable as fuck...

i.e spawning 10x Sea People Artifact:
Image
Ok but where Is the cheat table ?

lariana
Noobzor
Noobzor
Posts: 9
Joined: Mon Jun 03, 2019 10:13 pm
Reputation: 0

Re: [Request] Dave The Diver

Post by lariana »

Sensei7 wrote:
Fri Jul 14, 2023 4:37 pm
Ok but where Is the cheat table ?
:-|
IF I can manage to make my spawn table stable I will release it, but Iam not motivated right now to start the game again :mellow:

sharo0247
What is cheating?
What is cheating?
Posts: 1
Joined: Fri Sep 10, 2021 8:19 pm
Reputation: 2

Re: [Request] Dave The Diver

Post by sharo0247 »

The game is updated new version v1.0.0.980...
'Aim-Angle No Limit' and 'Max Ingredients' is broken ;(
And can u make a boat store Max?
I'll give up if you don't want to...

toeydampet2539
Noobzor
Noobzor
Posts: 10
Joined: Thu Jul 06, 2023 2:14 pm
Reputation: 1

Re: [Request] Dave The Diver

Post by toeydampet2539 »

I agree

Rubyelf
Expert Cheater
Expert Cheater
Posts: 197
Joined: Mon Mar 12, 2018 11:47 pm
Reputation: 38

Re: [Request] Dave The Diver

Post by Rubyelf »

Would love to see an update for this! Max Ingredients doesn't work :(

sumakelenzi
Noobzor
Noobzor
Posts: 11
Joined: Tue Aug 09, 2022 12:17 am
Reputation: 2

Re: [Request] Dave The Diver

Post by sumakelenzi »

i found a solution to work again for v 1.0.0.976. ct
Just downgrade your steam game by using the console on steam
There's a lot of tutorial on yt how to rollback to the desired version on steam

Image

This tutorial work for me and i've been using the old version of the game
[Link]

louislamkm
Novice Cheater
Novice Cheater
Posts: 15
Joined: Mon Aug 30, 2021 4:41 am
Reputation: 5

Re: [Request] Dave The Diver

Post by louislamkm »

Can you make one for all fish card?

toeydampet2539
Noobzor
Noobzor
Posts: 10
Joined: Thu Jul 06, 2023 2:14 pm
Reputation: 1

Re: [Request] Dave The Diver

Post by toeydampet2539 »

louislamkm wrote:
Mon Jul 17, 2023 5:04 pm
Can you make one for all fish card?
Interesting, I'll take it too.

vain117
Cheater
Cheater
Posts: 27
Joined: Thu Mar 08, 2018 7:10 am
Reputation: 0

Re: [Request] Dave The Diver

Post by vain117 »

I'm playing on version 1.0.0.933 so this script may well not be working on other versions but the logic is the same. To edit your lootbox items you can write a script to "sell NEGATIVE amounts of items" at Cobra's Premium Shop, which essentially is the same as buying items. Make sure you have enough gold as you CAN go into the negatives. Also the amount is in hex (-3E8 = -1000), you can change this to whatever you feel like etc.

Code: Select all

[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048,"GameAssembly.dll"+2490DD1) 
label(returnhere)
label(originalcode)
label(exit)

newmem: //this is allocated memory, you have read,write,execute access
//place your code here

originalcode:
mov [rbx+000000A8],-3E8

exit:
jmp returnhere

"GameAssembly.dll"+2490DD1:
jmp newmem
nop
returnhere:


 
 
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
"GameAssembly.dll"+2490DD1:
inc [rbx+000000A8]
//Alt: db FF 83 A8 00 00 00
If you want to update this script for your version, here is the surrounding code you can search for:

Code: Select all

// ORIGINAL CODE - INJECTION POINT: GameAssembly.dll+2490DD1

GameAssembly.dll+2490DAB: 8B 83 90 00 00 00     - mov eax,[rbx+00000090]
GameAssembly.dll+2490DB1: 83 F8 01              - cmp eax,01
GameAssembly.dll+2490DB4: 75 16                 - jne GameAssembly.dll+2490DCC
GameAssembly.dll+2490DB6: FF 8B A8 00 00 00     - dec [rbx+000000A8]
GameAssembly.dll+2490DBC: 39 83 A8 00 00 00     - cmp [rbx+000000A8],eax
GameAssembly.dll+2490DC2: 7D 2A                 - jnl GameAssembly.dll+2490DEE
GameAssembly.dll+2490DC4: 89 83 A8 00 00 00     - mov [rbx+000000A8],eax
GameAssembly.dll+2490DCA: EB 22                 - jmp GameAssembly.dll+2490DEE
GameAssembly.dll+2490DCC: 83 F8 02              - cmp eax,02
GameAssembly.dll+2490DCF: 75 1D                 - jne GameAssembly.dll+2490DEE
// ---------- INJECTING HERE ----------
GameAssembly.dll+2490DD1: FF 83 A8 00 00 00     - inc [rbx+000000A8]
// ---------- DONE INJECTING  ----------
GameAssembly.dll+2490DD7: 8B 83 A8 00 00 00     - mov eax,[rbx+000000A8]
GameAssembly.dll+2490DDD: 8B 8B B0 00 00 00     - mov ecx,[rbx+000000B0]
GameAssembly.dll+2490DE3: 3B C1                 - cmp eax,ecx
GameAssembly.dll+2490DE5: 0F 4D C1              - cmovge eax,ecx
GameAssembly.dll+2490DE8: 89 83 A8 00 00 00     - mov [rbx+000000A8],eax
GameAssembly.dll+2490DEE: 33 D2                 - xor edx,edx
GameAssembly.dll+2490DF0: 48 8B CB              - mov rcx,rbx
GameAssembly.dll+2490DF3: E8 38 F0 28 00        - call GameAssembly.dll+271FE30
GameAssembly.dll+2490DF8: 48 8B 93 B8 00 00 00  - mov rdx,[rbx+000000B8]
GameAssembly.dll+2490DFF: 48 8D 4F 18           - lea rcx,[rdi+18]
EDIT: Also, when you go to sell-buy items make sure you select the amount you set before completing the transaction, NOT the default amount (1), otherwise you won't buy anything you'll just sell 1 item. This works if you have only one item also.

dark28hunter
What is cheating?
What is cheating?
Posts: 2
Joined: Thu Jul 27, 2023 9:05 pm
Reputation: 0

Re: [Request] Dave The Diver

Post by dark28hunter »

heya any idea to reduce my money? I'd like to lower my money back but I dont know how. Please help

Sensei7
Expert Cheater
Expert Cheater
Posts: 152
Joined: Wed Feb 08, 2023 4:04 pm
Reputation: 62

Re: [Request] Dave The Diver

Post by Sensei7 »

vain117 wrote:
Thu Jul 27, 2023 4:05 am
I'm playing on version 1.0.0.933 so this script may well not be working on other versions but the logic is the same. To edit your lootbox items you can write a script to "sell NEGATIVE amounts of items" at Cobra's Premium Shop, which essentially is the same as buying items. Make sure you have enough gold as you CAN go into the negatives. Also the amount is in hex (-3E8 = -1000), you can change this to whatever you feel like etc.

Code: Select all

[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048,"GameAssembly.dll"+2490DD1) 
label(returnhere)
label(originalcode)
label(exit)

newmem: //this is allocated memory, you have read,write,execute access
//place your code here

originalcode:
mov [rbx+000000A8],-3E8

exit:
jmp returnhere

"GameAssembly.dll"+2490DD1:
jmp newmem
nop
returnhere:


 
 
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
"GameAssembly.dll"+2490DD1:
inc [rbx+000000A8]
//Alt: db FF 83 A8 00 00 00
If you want to update this script for your version, here is the surrounding code you can search for:

Code: Select all

// ORIGINAL CODE - INJECTION POINT: GameAssembly.dll+2490DD1

GameAssembly.dll+2490DAB: 8B 83 90 00 00 00     - mov eax,[rbx+00000090]
GameAssembly.dll+2490DB1: 83 F8 01              - cmp eax,01
GameAssembly.dll+2490DB4: 75 16                 - jne GameAssembly.dll+2490DCC
GameAssembly.dll+2490DB6: FF 8B A8 00 00 00     - dec [rbx+000000A8]
GameAssembly.dll+2490DBC: 39 83 A8 00 00 00     - cmp [rbx+000000A8],eax
GameAssembly.dll+2490DC2: 7D 2A                 - jnl GameAssembly.dll+2490DEE
GameAssembly.dll+2490DC4: 89 83 A8 00 00 00     - mov [rbx+000000A8],eax
GameAssembly.dll+2490DCA: EB 22                 - jmp GameAssembly.dll+2490DEE
GameAssembly.dll+2490DCC: 83 F8 02              - cmp eax,02
GameAssembly.dll+2490DCF: 75 1D                 - jne GameAssembly.dll+2490DEE
// ---------- INJECTING HERE ----------
GameAssembly.dll+2490DD1: FF 83 A8 00 00 00     - inc [rbx+000000A8]
// ---------- DONE INJECTING  ----------
GameAssembly.dll+2490DD7: 8B 83 A8 00 00 00     - mov eax,[rbx+000000A8]
GameAssembly.dll+2490DDD: 8B 8B B0 00 00 00     - mov ecx,[rbx+000000B0]
GameAssembly.dll+2490DE3: 3B C1                 - cmp eax,ecx
GameAssembly.dll+2490DE5: 0F 4D C1              - cmovge eax,ecx
GameAssembly.dll+2490DE8: 89 83 A8 00 00 00     - mov [rbx+000000A8],eax
GameAssembly.dll+2490DEE: 33 D2                 - xor edx,edx
GameAssembly.dll+2490DF0: 48 8B CB              - mov rcx,rbx
GameAssembly.dll+2490DF3: E8 38 F0 28 00        - call GameAssembly.dll+271FE30
GameAssembly.dll+2490DF8: 48 8B 93 B8 00 00 00  - mov rdx,[rbx+000000B8]
GameAssembly.dll+2490DFF: 48 8D 4F 18           - lea rcx,[rdi+18]
EDIT: Also, when you go to sell-buy items make sure you select the amount you set before completing the transaction, NOT the default amount (1), otherwise you won't buy anything you'll just sell 1 item. This works if you have only one item also.
It's possibile to make a mini cheat table with this option ? Thx

dark28hunter
What is cheating?
What is cheating?
Posts: 2
Joined: Thu Jul 27, 2023 9:05 pm
Reputation: 0

Re: [Request] Dave The Diver

Post by dark28hunter »

can someone help me reset my money to zero? I am really sorry

User avatar
Snoop
Expert Cheater
Expert Cheater
Posts: 162
Joined: Sun Mar 14, 2021 2:16 am
Reputation: 152

Re: [Request] Dave The Diver

Post by Snoop »

Sensei7 wrote:
Thu Jul 27, 2023 10:27 pm
vain117 wrote:
Thu Jul 27, 2023 4:05 am
I'm playing on version 1.0.0.933 so this script may well not be working on other versions but the logic is the same. To edit your lootbox items you can write a script to "sell NEGATIVE amounts of items" at Cobra's Premium Shop, which essentially is the same as buying items. Make sure you have enough gold as you CAN go into the negatives. Also the amount is in hex (-3E8 = -1000), you can change this to whatever you feel like etc.

Code: Select all

[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048,"GameAssembly.dll"+2490DD1) 
label(returnhere)
label(originalcode)
label(exit)

newmem: //this is allocated memory, you have read,write,execute access
//place your code here

originalcode:
mov [rbx+000000A8],-3E8

exit:
jmp returnhere

"GameAssembly.dll"+2490DD1:
jmp newmem
nop
returnhere:


 
 
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
"GameAssembly.dll"+2490DD1:
inc [rbx+000000A8]
//Alt: db FF 83 A8 00 00 00
If you want to update this script for your version, here is the surrounding code you can search for:

Code: Select all

// ORIGINAL CODE - INJECTION POINT: GameAssembly.dll+2490DD1

GameAssembly.dll+2490DAB: 8B 83 90 00 00 00     - mov eax,[rbx+00000090]
GameAssembly.dll+2490DB1: 83 F8 01              - cmp eax,01
GameAssembly.dll+2490DB4: 75 16                 - jne GameAssembly.dll+2490DCC
GameAssembly.dll+2490DB6: FF 8B A8 00 00 00     - dec [rbx+000000A8]
GameAssembly.dll+2490DBC: 39 83 A8 00 00 00     - cmp [rbx+000000A8],eax
GameAssembly.dll+2490DC2: 7D 2A                 - jnl GameAssembly.dll+2490DEE
GameAssembly.dll+2490DC4: 89 83 A8 00 00 00     - mov [rbx+000000A8],eax
GameAssembly.dll+2490DCA: EB 22                 - jmp GameAssembly.dll+2490DEE
GameAssembly.dll+2490DCC: 83 F8 02              - cmp eax,02
GameAssembly.dll+2490DCF: 75 1D                 - jne GameAssembly.dll+2490DEE
// ---------- INJECTING HERE ----------
GameAssembly.dll+2490DD1: FF 83 A8 00 00 00     - inc [rbx+000000A8]
// ---------- DONE INJECTING  ----------
GameAssembly.dll+2490DD7: 8B 83 A8 00 00 00     - mov eax,[rbx+000000A8]
GameAssembly.dll+2490DDD: 8B 8B B0 00 00 00     - mov ecx,[rbx+000000B0]
GameAssembly.dll+2490DE3: 3B C1                 - cmp eax,ecx
GameAssembly.dll+2490DE5: 0F 4D C1              - cmovge eax,ecx
GameAssembly.dll+2490DE8: 89 83 A8 00 00 00     - mov [rbx+000000A8],eax
GameAssembly.dll+2490DEE: 33 D2                 - xor edx,edx
GameAssembly.dll+2490DF0: 48 8B CB              - mov rcx,rbx
GameAssembly.dll+2490DF3: E8 38 F0 28 00        - call GameAssembly.dll+271FE30
GameAssembly.dll+2490DF8: 48 8B 93 B8 00 00 00  - mov rdx,[rbx+000000B8]
GameAssembly.dll+2490DFF: 48 8D 4F 18           - lea rcx,[rdi+18]
EDIT: Also, when you go to sell-buy items make sure you select the amount you set before completing the transaction, NOT the default amount (1), otherwise you won't buy anything you'll just sell 1 item. This works if you have only one item also.
It's possibile to make a mini cheat table with this option ? Thx
I agree

unREAL
Expert Cheater
Expert Cheater
Posts: 144
Joined: Sat May 07, 2022 4:46 pm
Reputation: 61

Re: [Request] Dave The Diver

Post by unREAL »

dark28hunter wrote:
Fri Jul 28, 2023 6:11 am
can someone help me reset my money to zero? I am really sorry
viewtopic.php?p=303981#p303981
SaveSystem->PlayerInfoSave contains the ObscuredInt Struct for gold
I would do it as script but I don't have the up2date version, and I won't support that trash dev with my money lol.
But anyone who does table should be able to do a script with all that infos to directly access the gold.
The ObscuredInt contains the real value AND the key, do the math ...

The problem is that I need the EXACT version that you have, coz every update changes so much stuff coz of the obfucation, so I can only get a static pointer to the PlayerInfoSave, as soon I have the pointer I can de- and encrypt the gold without problems.
Last edited by unREAL on Sun Jul 30, 2023 12:52 pm, edited 1 time in total.

Post Reply

Who is online

Users browsing this forum: dlite96, Eigor1497, Google Adsense [Bot], icerose621, LIOBOSS, ThatBenderGuy