Weedcraft Inc.

Ask about cheats/tables for single player games here
Udi_0101
What is cheating?
What is cheating?
Posts: 2
Joined: Fri Apr 12, 2019 12:51 pm
Reputation: 0

Re: Weedcraft Inc.

Post by Udi_0101 »

Is there any way to set the amount of money ?

Molle
What is cheating?
What is cheating?
Posts: 4
Joined: Fri Apr 12, 2019 11:58 am
Reputation: 0

Re: Weedcraft Inc.

Post by Molle »

They wont activate tho...

User avatar
The Mogician
Table Makers
Table Makers
Posts: 731
Joined: Sat Mar 04, 2017 12:00 am
Reputation: 526

Re: Weedcraft Inc.

Post by The Mogician »

Udi_0101 wrote:
Fri Apr 12, 2019 12:52 pm
Is there any way to set the amount of money ?
Money is stored in floats.

Udi_0101
What is cheating?
What is cheating?
Posts: 2
Joined: Fri Apr 12, 2019 12:51 pm
Reputation: 0

Re: Weedcraft Inc.

Post by Udi_0101 »

The Mogician wrote:
Fri Apr 12, 2019 2:04 pm
Udi_0101 wrote:
Fri Apr 12, 2019 12:52 pm
Is there any way to set the amount of money ?
Money is stored in floats.
So ?
Sorry I dont have much knowledge using Cheat engine.

User avatar
Rysefox
Table Makers
Table Makers
Posts: 863
Joined: Sat Jun 23, 2018 3:32 pm
Reputation: 914

Re: Weedcraft Inc.

Post by Rysefox »

Udi_0101 wrote:
Fri Apr 12, 2019 2:20 pm
The Mogician wrote:
Fri Apr 12, 2019 2:04 pm
Udi_0101 wrote:
Fri Apr 12, 2019 12:52 pm
Is there any way to set the amount of money ?
Money is stored in floats.
So ?
Sorry I dont have much knowledge using Cheat engine.
Exact Value, and Value type Float. Search for your current Money, get some money or loose some money, then type new money in do next scan

User avatar
The Mogician
Table Makers
Table Makers
Posts: 731
Joined: Sat Mar 04, 2017 12:00 am
Reputation: 526

Re: Weedcraft Inc.

Post by The Mogician »

Udi_0101 wrote:
Fri Apr 12, 2019 2:20 pm
The Mogician wrote:
Fri Apr 12, 2019 2:04 pm
Udi_0101 wrote:
Fri Apr 12, 2019 12:52 pm
Is there any way to set the amount of money ?
Money is stored in floats.
So ?
Sorry I dont have much knowledge using Cheat engine.
When you open up cheat engine, look for search type. Instead of 4 byte, search for float. After you find the value (should be only 1), change it to whatever you like.

Snek
What is cheating?
What is cheating?
Posts: 1
Joined: Sun Jan 20, 2019 12:47 pm
Reputation: 0

Re: Weedcraft Inc.

Post by Snek »

I just want watering and training to be done automatically - is that possible with this table?

User avatar
Kalas
Expert Cheater
Expert Cheater
Posts: 551
Joined: Fri Mar 03, 2017 9:49 am
Reputation: 134

Re: Weedcraft Inc.

Post by Kalas »

Launch mono ofc


Mono.CT
(11.76 KiB) Downloaded 142 times

LazerPazer
Expert Cheater
Expert Cheater
Posts: 98
Joined: Sun Feb 04, 2018 8:50 pm
Reputation: 5

Re: Weedcraft Inc.

Post by LazerPazer »

Kalas wrote:
Fri Apr 12, 2019 6:14 pm
Launch mono ofc



Mono.CT
not working

User avatar
Kalas
Expert Cheater
Expert Cheater
Posts: 551
Joined: Fri Mar 03, 2017 9:49 am
Reputation: 134

Re: Weedcraft Inc.

Post by Kalas »

Tested on v1.02

You need to have a plant/strain enabled, or whatever you call it. Simply hover the wanted plot.

User avatar
The Mogician
Table Makers
Table Makers
Posts: 731
Joined: Sat Mar 04, 2017 12:00 am
Reputation: 526

Re: Weedcraft Inc.

Post by The Mogician »

Has anyone found a surefire way to find skillpoints? I am having trouble getting a pointer out. Also Kalas' script can't seem to activate.

gorsan
Expert Cheater
Expert Cheater
Posts: 114
Joined: Fri Mar 10, 2017 5:54 pm
Reputation: 12

Re: Weedcraft Inc.

Post by gorsan »

Reduced Police Vigilance
Always at Freindly relationship with all characters/ Or Increase Relationship level with character that you are currently talking to

would be good additions to your table

User avatar
Kalas
Expert Cheater
Expert Cheater
Posts: 551
Joined: Fri Mar 03, 2017 9:49 am
Reputation: 134

Re: Weedcraft Inc.

Post by Kalas »

Yep my bad:

Code: Select all

[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048,WOW.Cultivation:CultivationUIPlantActionPanel:LateUpdate+1198)
label(returnhere)
label(originalcode)
label(exit)

label(pCultivationSlotGroundPlant)
registersymbol(pCultivationSlotGroundPlant)

label(_ProcessCycle)
registersymbol(_ProcessCycle)

label(_WateringTick)
registersymbol(_WateringTick)

label(_TrainingTick)
registersymbol(_TrainingTick)

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

mov [pCultivationSlotGroundPlant],rax

cmp [_ProcessCycle],0
je _ProcessCycleExit
mov [rax+B4],64

_ProcessCycleExit:
cmp [_WateringTick],0
je _WateringTickExit
mov [rax+B8],64

_WateringTickExit:
cmp [_TrainingTick],0
je _TrainingTickExit
mov [rax+BC],64

_TrainingTickExit:

originalcode:
movzx eax,byte ptr [rax+000000A4]

exit:
jmp returnhere

pCultivationSlotGroundPlant:
dq 0
_ProcessCycle:
dd 0
_WateringTick:
dd 0
_TrainingTick:
dd 0

WOW.Cultivation:CultivationUIPlantActionPanel:LateUpdate+1198:
jmp newmem
nop
nop
returnhere:

[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)

unregistersymbol(pCultivationSlotGroundPlant)
unregistersymbol(_ProcessCycle)
unregistersymbol(_WateringTick)
unregistersymbol(_TrainingTick)

WOW.Cultivation:CultivationUIPlantActionPanel:LateUpdate+1198:
movzx eax,byte ptr [rax+000000A4]
//Alt: db 0F B6 80 A4 00 00 00
This is the correct one.

User avatar
Rysefox
Table Makers
Table Makers
Posts: 863
Joined: Sat Jun 23, 2018 3:32 pm
Reputation: 914

Re: Weedcraft Inc.

Post by Rysefox »

gorsan wrote:
Fri Apr 12, 2019 10:12 pm
Reduced Police Vigilance
Always at Freindly relationship with all characters/ Or Increase Relationship level with character that you are currently talking to

would be good additions to your table
You will see the Police Vigilance, but its stuck on 0
Attachments
Weedcraft Inc.CT
Vigilance -> set Pointer to 0
(241.26 KiB) Downloaded 60 times
Last edited by Rysefox on Sat Apr 13, 2019 8:37 am, edited 1 time in total.

User avatar
Kalas
Expert Cheater
Expert Cheater
Posts: 551
Joined: Fri Mar 03, 2017 9:49 am
Reputation: 134

Re: Weedcraft Inc.

Post by Kalas »

<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
<CheatEntries>
<CheatEntry>
<ID>194</ID>
<Description>"Increase Max Vigilance"</Description>
<LastState/>
<VariableType>Auto Assembler Script</VariableType>
<AssemblerScript>[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048,WOW.Police:PoliceVigilance:GetNormalizedValue+20)
label(returnhere)
label(originalcode)
label(exit)

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

mov dword ptr [rax+24],#999999999

originalcode:
movsxd rax,dword ptr [rax+24]
cvtsi2sd xmm1,eax

exit:
jmp returnhere

WOW.Police:PoliceVigilance:GetNormalizedValue+20:
jmp newmem
nop
nop
nop
returnhere:




[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
WOW.Police:PoliceVigilance:GetNormalizedValue+20:
movsxd rax,dword ptr [rax+24]
cvtsi2sd xmm1,eax
//Alt: db 48 63 40 24 F2 0F 2A C8
</AssemblerScript>
</CheatEntry>
</CheatEntries>
</CheatTable>


This works too.

Post Reply

Who is online

Users browsing this forum: master199999, stigmaoffire