Upload your cheat tables here (No requests)
SvT
Table Makers
Posts: 589 Joined: Tue Dec 24, 2019 5:17 am
Reputation: 1852
Post
by SvT » Fri Jul 22, 2022 10:40 pm
FEATURES
Super Washer (cycle to different nozzle to activate) *
Instantly Wash Area
Unlimited Cleaning Liquid
Unlimited Money
"Good Dings to Come" Achievement Helper
Instantly Complete Level (activate before loading) **
* Use Soap Nozzle with Multi-Purpose Cleaner for best results, or 0 Degree Nozzle
** Use this if you can't find the last couple of tiny "dirty spots"
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
Attachments
PowerWashSimulator_V2.CT
Windows Store version 5.2206.290.0 (10.03 KiB) Downloaded 3926 times
Last edited by
SvT on Sat Jul 23, 2022 8:43 am, edited 1 time in total.
NinjaGamer
Cheater
Posts: 29 Joined: Wed May 19, 2021 6:01 pm
Reputation: 6
Post
by NinjaGamer » Sat Jul 23, 2022 6:31 am
Thanks for the table
chief567
Novice Cheater
Posts: 16 Joined: Mon Jan 04, 2021 3:42 pm
Reputation: 1
Post
by chief567 » Sat Jul 23, 2022 5:42 pm
Ur the real hero!
Mettness
Cheater
Posts: 39 Joined: Wed Apr 07, 2021 7:45 am
Reputation: 9
Post
by Mettness » Sat Jul 23, 2022 6:36 pm
Reads strange at first, but I really liked playing the game the last few days.
I got stuck on the "good dings to come" achievement.
Thank you very much SVT
SvT
Table Makers
Posts: 589 Joined: Tue Dec 24, 2019 5:17 am
Reputation: 1852
Post
by SvT » Sat Jul 23, 2022 6:49 pm
Mettness wrote: ↑ Sat Jul 23, 2022 6:36 pm
Reads strange at first, but I really liked playing the game the last few days.
I got stuck on the "good dings to come" achievement.
Thank you very much SVT
Did the helper script work well? I didn't really provide any instructions, but it should "freeze" all tasks at 96% and not allow any of them to fully clean.
Mettness
Cheater
Posts: 39 Joined: Wed Apr 07, 2021 7:45 am
Reputation: 9
Post
by Mettness » Sat Jul 23, 2022 7:10 pm
SvT wrote: ↑ Sat Jul 23, 2022 6:49 pm
Mettness wrote: ↑ Sat Jul 23, 2022 6:36 pm
Reads strange at first, but I really liked playing the game the last few days.
I got stuck on the "good dings to come" achievement.
Thank you very much SVT
Did the helper script work well? I didn't really provide any instructions, but it should "freeze" all tasks at 96% and not allow any of them to fully clean.
It worked right away and saved me several more hours.
Armadio57
What is cheating?
Posts: 1 Joined: Mon Feb 24, 2020 10:27 am
Reputation: 0
Post
by Armadio57 » Thu Jul 28, 2022 8:06 am
Hello I can not check some boxes like finish the level instantly or have infinite liquid and I do not understand what to modify in the script thank you
WobblerrGG
What is cheating?
Posts: 2 Joined: Thu Oct 13, 2022 5:31 pm
Reputation: 1
Post
by WobblerrGG » Thu Oct 13, 2022 5:32 pm
SvT wrote: ↑ Fri Jul 22, 2022 10:40 pm
FEATURES
Super Washer (cycle to different nozzle to activate) *
Instantly Wash Area
Unlimited Cleaning Liquid
Unlimited Money
"Good Dings to Come" Achievement Helper
Instantly Complete Level (activate before loading) **
* Use Soap Nozzle with Multi-Purpose Cleaner for best results, or 0 Degree Nozzle
** Use this if you can't find the last couple of tiny "dirty spots"
it doesnt work for mstore can u update it
igromanru
Table Makers
Posts: 333 Joined: Sat Mar 25, 2017 11:20 pm
Reputation: 466
Post
by igromanru » Sat Jul 08, 2023 9:37 pm
The "Unlimited Cleaning Liquid" script works, I think the rest is outdated. "Instantly Wash Area" leads to crash, "Unlimited Money" is simply outdated, the hooked method doesn't exist anymore. Haven't tested anything else.
Here is my "Infinite Money" script with customizable money value:
Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
<CheatEntries>
<CheatEntry>
<ID>43334</ID>
<Description>"Infinite Money"</Description>
<Options moHideChildren="1"/>
<LastState/>
<VariableType>Auto Assembler Script</VariableType>
<AssemblerScript>{ Game : PowerWashSimulator.exe
Version:
Date : 2023-07-08
Author : igromanru
Infinite Money
}
define(infMoney,PWS.PlayerSaveData.AddCredits)
define(bytes,40 53 48 83 EC 30)
[ENABLE]
assert(infMoney,bytes)
alloc(newmem,$100,infMoney)
label(return)
label(moneyValue)
newmem:
push rax
mov rax, [moneyValue]
mov [rcx+58],rax
pop rax
db bytes
jmp return
moneyValue:
dq (float)999999
infMoney:
jmp newmem
nop
return:
registerSymbol(moneyValue)
[DISABLE]
infMoney:
db bytes
dealloc(newmem)
unregisterSymbol(moneyValue)
{
// ORIGINAL CODE - INJECTION POINT: PWS.PlayerSaveData.AddCredits
GameAssembly.dll+69CBA6: CC - int 3
GameAssembly.dll+69CBA7: CC - int 3
GameAssembly.dll+69CBA8: CC - int 3
GameAssembly.dll+69CBA9: CC - int 3
GameAssembly.dll+69CBAA: CC - int 3
GameAssembly.dll+69CBAB: CC - int 3
GameAssembly.dll+69CBAC: CC - int 3
GameAssembly.dll+69CBAD: CC - int 3
GameAssembly.dll+69CBAE: CC - int 3
GameAssembly.dll+69CBAF: CC - int 3
// ---------- INJECTING HERE ----------
PWS.PlayerSaveData.AddCredits: 40 53 - push rbx
// ---------- DONE INJECTING ----------
GameAssembly.dll+69CBB2: 48 83 EC 30 - sub rsp,30
GameAssembly.dll+69CBB6: 80 3D 5D 79 BF 03 00 - cmp byte ptr [GameAssembly.dll+429451A],00
GameAssembly.dll+69CBBD: 48 8B D9 - mov rbx,rcx
GameAssembly.dll+69CBC0: 0F 29 74 24 20 - movaps [rsp+20],xmm6
GameAssembly.dll+69CBC5: 0F 28 F1 - movaps xmm6,xmm1
GameAssembly.dll+69CBC8: 75 1F - jne GameAssembly.dll+69CBE9
GameAssembly.dll+69CBCA: 48 8D 0D 0F 79 99 03 - lea rcx,[GameAssembly.dll+40344E0]
GameAssembly.dll+69CBD1: E8 3A D6 E6 FF - call GameAssembly.DllCanUnloadNow+8FE0
GameAssembly.dll+69CBD6: 48 8D 0D 33 59 9B 03 - lea rcx,[GameAssembly.dll+4052510]
GameAssembly.dll+69CBDD: E8 2E D6 E6 FF - call GameAssembly.DllCanUnloadNow+8FE0
}
</AssemblerScript>
<CheatEntries>
<CheatEntry>
<ID>43337</ID>
<Description>"Value"</Description>
<ShowAsSigned>0</ShowAsSigned>
<VariableType>Float</VariableType>
<Address>moneyValue</Address>
</CheatEntry>
<CheatEntry>
<ID>43336</ID>
<Description>"To trigger the script, clean something to gain money"</Description>
<LastState Value="" RealAddress="00000000"/>
<Color>C0C0C0</Color>
<GroupHeader>1</GroupHeader>
</CheatEntry>
</CheatEntries>
</CheatEntry>
</CheatEntries>
</CheatTable>
igromanru
Table Makers
Posts: 333 Joined: Sat Mar 25, 2017 11:20 pm
Reputation: 466
Post
by igromanru » Sun Jul 09, 2023 9:48 am
Here is a new Instantly Wash Area script
Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
<CheatEntries>
<CheatEntry>
<ID>43338</ID>
<Description>"Instantly Wash Area"</Description>
<LastState/>
<VariableType>Auto Assembler Script</VariableType>
<AssemblerScript>{ Game : PowerWashSimulator.exe
Version:
Date : 2023-07-09
Author : Igromanru
Instantly Wash Area
}
define(instWash,PWS.TexturePainter.WashTarget.RefreshCleanProgress+10A)
define(bytes,F3 0F 11 8B BC 00 00 00)
[ENABLE]
assert(instWash,bytes)
alloc(newmem,$100,instWash)
label(code)
label(exit)
label(return)
newmem:
cmp [rbx+BC],(float)0.015
jl code
cmp [rbx+BC],(float)0.999
jge code
mov [rbx+BC],(float)1
jmp exit
code:
db bytes
exit:
jmp return
instWash:
jmp newmem
nop 3
return:
[DISABLE]
instWash:
db bytes
// movss [rbx+000000BC],xmm1
dealloc(newmem)
{
// ORIGINAL CODE - INJECTION POINT: PWS.TexturePainter.WashTarget.RefreshCleanProgress+10A
GameAssembly.dll+D470CE: EB 03 - jmp GameAssembly.dll+D470D3
GameAssembly.dll+D470D0: 0F 57 C9 - xorps xmm1,xmm1
GameAssembly.dll+D470D3: 0F 2F F1 - comiss xmm6,xmm1
GameAssembly.dll+D470D6: 77 0A - ja GameAssembly.dll+D470E2
GameAssembly.dll+D470D8: 0F 2F CA - comiss xmm1,xmm2
GameAssembly.dll+D470DB: 76 08 - jna GameAssembly.dll+D470E5
GameAssembly.dll+D470DD: 0F 28 CA - movaps xmm1,xmm2
GameAssembly.dll+D470E0: EB 03 - jmp GameAssembly.dll+D470E5
GameAssembly.dll+D470E2: 0F 57 C9 - xorps xmm1,xmm1
GameAssembly.dll+D470E5: 0F 28 74 24 20 - movaps xmm6,[rsp+20]
// ---------- INJECTING HERE ----------
GameAssembly.dll+D470EA: F3 0F 11 8B BC 00 00 00 - movss [rbx+000000BC],xmm1
// ---------- DONE INJECTING ----------
GameAssembly.dll+D470F2: 66 0F 6E 8B B0 00 00 00 - movd xmm1,[rbx+000000B0]
GameAssembly.dll+D470FA: 0F 5B C9 - cvtdq2ps xmm1,xmm1
GameAssembly.dll+D470FD: 0F 28 C1 - movaps xmm0,xmm1
GameAssembly.dll+D47100: F3 0F 59 C3 - mulss xmm0,xmm3
GameAssembly.dll+D47104: F3 0F 5C C8 - subss xmm1,xmm0
GameAssembly.dll+D47108: F3 0F 11 8B C0 00 00 00 - movss [rbx+000000C0],xmm1
GameAssembly.dll+D47110: 48 83 C4 30 - add rsp,30
GameAssembly.dll+D47114: 5B - pop rbx
GameAssembly.dll+D47115: C3 - ret
GameAssembly.dll+D47116: E8 D5 BB 7F FF - call GameAssembly.dll+542CF0
}
</AssemblerScript>
</CheatEntry>
</CheatEntries>
</CheatTable>
sagogenesis
What is cheating?
Posts: 1 Joined: Tue Jul 25, 2023 5:10 pm
Reputation: 1
Post
by sagogenesis » Tue Jul 25, 2023 5:12 pm
crashes upon activating any cheats for me. am i doing something wrong?
Users browsing this forum: Aesarius , AwarioBot , BennYthehitman , Bing [Bot] , Bloodybone , Csimbi , fatguy666 , jonasbeckman , JupixTU , SemrushBot , sonicwinghero