Page 1 of 1

Heartwood online

Posted: Sun Aug 20, 2023 8:40 pm
by Heartwood online
Hey, if anyone can do something with this game, that would be great. Anything really.. I was trying but without any useful results

Game Name: Heartwood online
Game Engine: Unity engine
Game Version: Early Access ( release 18.8.2023 )
Steam Website:



* Money
* XP
* Godmode
* Invetory edit
* Damage edit
* Talents edit
* Drop edit

Re: Heartwood online

Posted: Sun Aug 20, 2023 8:48 pm
by nightmareLVX
its also a online game chances are you cant do much at all and isnt this for single player games

Re: Heartwood online

Posted: Tue Aug 22, 2023 1:00 pm
by DeTripleX
Simple CE scans won't work
I found coins in 4byte search but that was only visual change
and I change gem prize for mount to 0 and even -100 but it looks like after purchase game will double check prize so it didn't work
I was also trying to get items values but I didn't find any results
I didn't tryied everything it was my Simple CE Scaning
There's a lot things in game that I wasn't trying to scan like skill points, shop prizes, stats, movement speed, exp
But I was able to change kills count simply using increases scans
and if this game engine is unity there's chances to change game code

Re: Heartwood online

Posted: Thu Aug 24, 2023 9:29 pm
by DeTripleX
Following this tutorial



I made unlocker for cosmetic stuff free to use and change abilities cooldown to 0 .
If only my C++ coding was better I would be able to do more
I found out golden coins and items giver addresses but I don't know how to actually use them every time game crashed when I messing with them...
I made also skill points value changer but it was only visual change ....
There were few address related to dmg and crit hit but hook I made didnt worked

Re: Heartwood online

Posted: Mon Aug 28, 2023 12:07 pm
by cabrobas99
DeTripleX wrote:
Thu Aug 24, 2023 9:29 pm
Following this tutorial



I made unlocker for cosmetic stuff free to use and change abilities cooldown to 0 .
If only my C++ coding was better I would be able to do more
I found out golden coins and items giver addresses but I don't know how to actually use them every time game crashed when I messing with them...
I made also skill points value changer but it was only visual change ....
There were few address related to dmg and crit hit but hook I made didnt worked
hey u can provide me this code for abilities cooldown 0? or the dll, i need this, pleasee

Re: Heartwood online

Posted: Mon Aug 28, 2023 1:57 pm
by ValenH
I changed the speed and hp but the server denies it :/

Re: Heartwood online

Posted: Mon Aug 28, 2023 3:26 pm
by SunBeam
How about you guys cool off and stop posting about online games? Please read the rules.

Re: Heartwood online

Posted: Thu Nov 02, 2023 7:16 pm
by brtt
I'm trying to make a bot for farming, but I'm having a problem when animals like bees start attacking and causing damage, the character can't get out of place

Re: Heartwood online

Posted: Wed Nov 22, 2023 8:21 pm
by Nothings
DeTripleX wrote:
Thu Aug 24, 2023 9:29 pm
Following this tutorial



I made unlocker for cosmetic stuff free to use and change abilities cooldown to 0 .
If only my C++ coding was better I would be able to do more
I found out golden coins and items giver addresses but I don't know how to actually use them every time game crashed when I messing with them...
I made also skill points value changer but it was only visual change ....
There were few address related to dmg and crit hit but hook I made didnt worked
how to unlock and skill 0 secound

Re: Heartwood online

Posted: Thu Nov 23, 2023 9:53 pm
by Tom8887
Ymb

Re: Heartwood online

Posted: Sun Feb 04, 2024 7:29 pm
by anonmisuke
DeTripleX wrote:
Thu Aug 24, 2023 9:29 pm
I made unlocker for cosmetic stuff free to use and change abilities cooldown to 0 .
Registered an account just to say you lied, the skill casting is server-sided. I'll post my actual attempt here as proof.

In the function AbilityButton__interact, there is a check for cool down:

Code: Select all

if ( Stats__getAbilityCharges(stats, this->fields.ability, 0i64) <= 0 )
    return;
Bypassing this conditional jump is enough, further down the function, it calls Player__triggerAbility so you can also hook that. Inspecting the packets shows that it sends multiple ability-casting commands to the server, but nothing happens, only a mere animation.

Everything in this game is server-sided, so I highly doubt that you can do anything with Cheat Engine, the only way to cheat this game is to find a vulnerability in its communication.

Re: Heartwood online

Posted: Sun Mar 17, 2024 2:46 am
by UnknownHostX
anonmisuke wrote:
Sun Feb 04, 2024 7:29 pm
DeTripleX wrote:
Thu Aug 24, 2023 9:29 pm
I made unlocker for cosmetic stuff free to use and change abilities cooldown to 0 .
Registered an account just to say you lied, the skill casting is server-sided. I'll post my actual attempt here as proof.

In the function AbilityButton__interact, there is a check for cool down:

Code: Select all

if ( Stats__getAbilityCharges(stats, this->fields.ability, 0i64) <= 0 )
 return;
Bypassing this conditional jump is enough, further down the function, it calls Player__triggerAbility so you can also hook that. Inspecting the packets shows that it sends multiple ability-casting commands to the server, but nothing happens, only a mere animation.

Everything in this game is server-sided, so I highly doubt that you can do anything with Cheat Engine, the only way to cheat this game is to find a vulnerability in its communication.
Hey can I message you privately? Regarding your message I did some digging around myself and found something interesting, shouldn't be sharing it in public until I think you can verify it first then we can see what we can do.