knyazev44 How do I cheat?
Reputation: 0
Joined: 16 Aug 2021 Posts: 6
|
Posted: Mon Aug 16, 2021 2:05 pm Post subject: Game based on minecraft |
|
|
There is an online game - stalcraft, which is based on minecraft game, writen with java programming language and runs on java virtual machine (jvm), also this game is online game and I'm not trying to do server side thing, my only need is to remove recoil. I'm noob with CE but that's my steps:
First I scan for -90 when looking straight up, then scan for 90 when looking straight down (float), it shows about 10-12 results always. 1 of them are making camera not able to move (it moves but returns to one point always and this is indeed what I need as I followed youtube tutorial). So I find pitch by this
I right click it and select what writes to this address, go to game and start shooting, that it adds 2 new functions where 1 is for recoil and 2 for stabilization (or let say it brings the scope back). Both of them when replacing with NOPs make no recoil, and that indeed what I need BUT
BUT there is 2 main problems.
1) After a while something that points to camera start to points to different address! And no recoil stop working so I need to do it again scan for -90 looking straight up then for 90 looking straight down and so on
So I decided to not change it directly by address but change pointer! Which means I get pointer and NOP all the functions that writes to it.
But here is a catch. As I google you can't get pointer from emulator or browser game, but JVM is virtual machine and since this game runs on it I can't get a pointer! So what to do? Because basic pointer scan returns "Pointer paths: 0", but I also tried AOB injection instead of all the previous things but when I make table and reopen the game script can't be enabled it says "...something... Not all results found..."
2) After a while that function that was writing recoil to the value of pitch just stop doing anything and another function start writing this recoil to the value of pitch and I have to NOP all the new functions.
So what to do in this scenario?
|
|