Page 1 of 1

Can't find any value in Unity game [h8machine]

Posted: Fri Aug 05, 2022 7:06 pm
by qwereder
I already requested a table, but I decided why not try to ask for a help with hacking myself.
Game looks like this
You have HP% and money. None of values was found. Steps I did: 4 byte. ALL. Unknown. Hex
4 byte would find initial value, but it wont change. Any ideas?

Re: Can't find any value in Unity game [h8machine]

Posted: Fri Aug 05, 2022 9:17 pm
by Toga
Don't know the game but if it's Unity why not enable Mono and look at the Mono disect / .net info for methods / fields.
ie search / filter for "health" / "money" or "player".. just try some keywords.

For more advanced info by SunBeam look what he wrote here: viewtopic.php?p=252050&sid=a7a0254f75bf ... aa#p252050

ofc this is for another game but the principle stays the same

Re: Can't find any value in Unity game [h8machine]

Posted: Sat Aug 06, 2022 2:14 am
by qwereder
Toga wrote:
Fri Aug 05, 2022 9:17 pm
Don't know the game but if it's Unity why not enable Mono and look at the Mono disect / .net info for methods / fields.
ie search / filter for "health" / "money" or "player".. just try some keywords.

For more advanced info by SunBeam look what he wrote here: viewtopic.php?p=252050&sid=a7a0254f75bf ... aa#p252050

ofc this is for another game but the principle stays the same
Hey, thanks, I tried it, but I can't find gameassembly.dll or anything close to it in the folders

Re: Can't find any value in Unity game [h8machine]

Posted: Sat Aug 06, 2022 2:48 am
by BabyGroot
Assembly-CSharp.dll

D:\Steam\steamapps\common\h8machine\h8machine_Data\Managed

Re: Can't find any value in Unity game [h8machine]

Posted: Sat Aug 06, 2022 3:13 am
by qwereder
BabyGroot wrote:
Sat Aug 06, 2022 2:48 am
Assembly-CSharp.dll

D:\Steam\steamapps\common\h8machine\h8machine_Data\Managed
Tried that too, but It just asks for metadata and it's nowhere to be found

Re: Can't find any value in Unity game [h8machine]

Posted: Sat Aug 06, 2022 3:26 am
by SunBeam
If it's plain Mono, then no point converting it. So don't use the tool in my post. Considering you're just following my guide blindly, without distinguishing between Mono and il2cpp, I'd say you don't know what you're doing. Just drag the DLL over to JustDecompile. That should get you going. Then Ctrl+F for whatever stuff is it you're looking for.

What's next is for you to learn Unity hacking principles.

Re: Can't find any value in Unity game [h8machine]

Posted: Sat Aug 06, 2022 3:38 am
by qwereder
SunBeam wrote:
Sat Aug 06, 2022 3:26 am
If it's plain Mono, then no point converting it. So don't use the tool in my post. Considering you're just following my guide blindly, without distinguishing between Mono and il2cpp, I'd say you don't know what you're doing. Just drag the DLL over to JustDecompile. That should get you going. Then Ctrl+F for whatever stuff is it you're looking for.

What's next is for you to learn Unity hacking principles.
Thank you for your reply, I see same things, that I saw in mono dissect mode in CE. If it it's not too much to ask, what guides should I refer to?
Image [Link]

Re: Can't find any value in Unity game [h8machine]

Posted: Sat Aug 06, 2022 3:52 am
by SunBeam
I think BabyGroot is on it :) In any case, I'd recommend getting in touch with him/her/non-binary person. Alternately, you can always check out how other people do it in their tables. Google "game" (a unity game) "fearlessrevolution" (and perhaps "author") and inspect their tables. If you've not done any tables in your life, then I recommend starting from zero, learning the ropes.

Re: Can't find any value in Unity game [h8machine]

Posted: Sat Aug 06, 2022 3:58 am
by BabyGroot
for now the best teacher is youtube. :D
there are many guides on youtube that you can learn.

[Link]

[Link]

[Link]

Basic CE Mono Features

and many more. hope this helps

Re: Can't find any value in Unity game [h8machine]

Posted: Thu Sep 22, 2022 8:48 pm
by kksc2014
BabyGroot wrote:
Sat Aug 06, 2022 3:58 am
for now the best teacher is youtube. :D
there are many guides on youtube that you can learn.

[Link]

[Link]

[Link]

Basic CE Mono Features

and many more. hope this helps
Wow, i was looking for that for a long time, thanx for the links, i appreciate it so much!