View previous topic :: View next topic |
Author |
Message |
oathbreak How do I cheat?
Reputation: 0
Joined: 05 Jan 2016 Posts: 1
|
Posted: Tue Jan 05, 2016 4:27 am Post subject: Naval Action Beta Need help to MAKE trainer |
|
|
Hello, so there is this game Naval Action (18th century naval battles simulator, whatever) and I've been thinking is there any way to hack anything in this game. So let's begin.
Game is actually running on Unity Engine so game code is found within the Assembly-CSharp.dll's...
What I did:
1. Open process Client.exe
2. Then Activate mono features
3. Dissect mono
4. Navigate to Assembly-CSharp
There were a lot of game objects. Class names with their fields and methods - here I was looking for anything useful and I have found HealthStatus of everything in your ship with option (I think) to set them to full (SetToFull).
5. Then I choose Set To Full JIT (just in time). Copied the value.
6. Next step > go to Memory View > Ctrl+G > Ctrl+V and search.
7. Andddd I don't know what to do next but it has to be the way. I can feel this cheat sitting right in front of me...
I'm attaching the Screenshots down below with every step I did.
Cheers
Description: |
|
Filesize: |
927.73 KB |
Viewed: |
36830 Time(s) |

|
|
|
Back to top |
|
 |
samaxx How do I cheat?
Reputation: 0
Joined: 09 Jan 2016 Posts: 2
|
Posted: Sat Jan 09, 2016 6:29 pm Post subject: |
|
|
I would like to know more about this also, I can't seem to work out the mono hacking as I'm not a programmer of some kind haha. I would like to hack the gold and xp. If someone can help?
|
|
Back to top |
|
 |
Zanzer I post too much
Reputation: 126
Joined: 09 Jun 2013 Posts: 3278
|
Posted: Sat Jan 09, 2016 6:44 pm Post subject: |
|
|
Well, that method sets all of the values to full. However, nothing is going to call that method for you.
The one you want to hack is likely GetOverallHealth because it sounds like that would be called frequently.
That function probably has several instructions like: fld qword ptr [edi+08]
If that were the instruction, you would want to replace it with:
Code: | fld1
fst qword ptr [edi+08] |
Now the next problem you'll have is that these instructions are likely used for both player and enemy ships.
So you'll need to find some way to distinguish the two and only apply the hack to your ships.
|
|
Back to top |
|
 |
samaxx How do I cheat?
Reputation: 0
Joined: 09 Jan 2016 Posts: 2
|
Posted: Sun Jan 10, 2016 9:40 am Post subject: |
|
|
Is there some sort of tutorial for that?
|
|
Back to top |
|
 |
Rydian Grandmaster Cheater Supreme
Reputation: 31
Joined: 17 Sep 2012 Posts: 1358
|
|
Back to top |
|
 |
ParkourPenguin I post too much
Reputation: 152
Joined: 06 Jul 2014 Posts: 4699
|
Posted: Sun Jan 10, 2016 9:34 pm Post subject: |
|
|
As an alternative to segregating yourself from enemies, you could just use createthread to execute your own code that calls that function. It looks like the argument it takes is the ship to restore health to maybe? Use breakpoints and debug it to find out.
But if this game is the one labeled as "[game] - open world multiplayer sandbox" on Steam, then you should also be aware of FAQ#0.
_________________
I don't know where I'm going, but I'll figure it out when I get there. |
|
Back to top |
|
 |
SF I'm a spammer
Reputation: 119
Joined: 19 Mar 2007 Posts: 6028
|
Posted: Mon Jan 11, 2016 4:47 am Post subject: |
|
|
ParkourPenguin is correct.
Closed - online game. Discuss methods/etc without mentioning the name of the game
_________________
|
|
Back to top |
|
 |
|