Search found 74 matches
- Mon Nov 06, 2017 5:12 pm
- Forum: Cheat Engine
- Topic: Game address in code injection keeps changing
- Replies: 2
- Views: 39
Re: Game address in code injection keeps changing
Hello there again, sooo... I came here with another issue... O.o I'm trying to make another simple code which will "freeze" battery drain for any device/tool in Subnautica. The problem is, that the game address keeps changing and I dunno what to do about it... >.< define(address,2415E868) define(by...
- Thu Nov 02, 2017 12:58 pm
- Forum: General Gamehacking
- Topic: Need help changing character exp on Absolver.
- Replies: 2
- Views: 53
- Thu Nov 02, 2017 12:44 am
- Forum: Cheat Engine
- Topic: Astroneer, an instruction is shared with tons of total different address and values.
- Replies: 27
- Views: 279
Re: Astroneer, an instruction is shared with tons of total different address and values.
Examples: 1: [ENABLE] aobscanmodule(injectionpoint,Game.exe,Array of Bytes) alloc(newmem,$100) label(code) label(return) label(health) // Label Symbol so it can be used in the script registersymbol(health) // Registersymbol so it can be used outside of the script newmem: code: mov [health],edx mov e...
- Thu Nov 02, 2017 12:32 am
- Forum: Cheat Engine
- Topic: Astroneer, an instruction is shared with tons of total different address and values.
- Replies: 27
- Views: 279
Re: Astroneer, an instruction is shared with tons of total different address and values.
hi again bloodybone. just want to make sure something cmp r15,0 jne instantcraftbp i'm still dont really get this part, when you're crafting something on backpack, it triggers instruction, its r15 is not 0 so it jumps to instantcraftbp: but when you're harvesting resource,triggers instruction and i...
- Wed Nov 01, 2017 7:51 pm
- Forum: Cheat Engine
- Topic: Astroneer, an instruction is shared with tons of total different address and values.
- Replies: 27
- Views: 279
Re: Astroneer, an instruction is shared with tons of total different address and values.
Wow thats a bonus, i have always wanted to learn how to make something like optional cheats, always wonder how to write something like that, learn something new today, I will look into it, thank you very very much Right now im not infront of the pc,. Will check it out later :) Btw how do u write th...
- Tue Oct 31, 2017 9:20 pm
- Forum: Cheat Engine
- Topic: Astroneer, an instruction is shared with tons of total different address and values.
- Replies: 27
- Views: 279
Re: Astroneer, an instruction is shared with tons of total different address and values.
Also something you can do is this: <?xml version="1.0" encoding="utf-8"?> <CheatTable CheatEngineTableVersion="26"> <CheatEntries> <CheatEntry> <ID>0</ID> <Description>"Inf Everthing"</Description> <LastState Activated="1"/> <VariableType>Auto Assembler Script</VariableType> <AssemblerScript>[ENABL...
- Tue Oct 31, 2017 5:25 pm
- Forum: Cheat Engine
- Topic: Astroneer, an instruction is shared with tons of total different address and values.
- Replies: 27
- Views: 279
Re: Astroneer, an instruction is shared with tons of total different address and values.
Also something you can do is this: <?xml version="1.0" encoding="utf-8"?> <CheatTable CheatEngineTableVersion="26"> <CheatEntries> <CheatEntry> <ID>0</ID> <Description>"Inf Everthing"</Description> <LastState Activated="1"/> <VariableType>Auto Assembler Script</VariableType> <AssemblerScript>[ENABLE...
- Tue Oct 31, 2017 5:20 pm
- Forum: Cheat Engine
- Topic: Astroneer, an instruction is shared with tons of total different address and values.
- Replies: 27
- Views: 279
Re: Astroneer, an instruction is shared with tons of total different address and values.
Ok I found another offset that works :) Here: [ENABLE] //code from here to '[DISABLE]' will be used to enable the cheat aobscanmodule(INF_OXYGEN,Astro-Win64-Shipping.exe,89 BB 40 01 00 00 85) alloc(newmem,$1000,"Astro-Win64-Shipping.exe"+1DF9CB) label(code) label(return) label(massiveresources) labe...
- Tue Oct 31, 2017 5:06 pm
- Forum: Cheat Engine
- Topic: Astroneer, an instruction is shared with tons of total different address and values.
- Replies: 27
- Views: 279
Re: Astroneer, an instruction is shared with tons of total different address and values.
correction at this line, i typed the comment wrong jne instantcraftbp //it's not oxygen (it's 2E480609 or something else, so jumping to instantcraftbp, OK done.) Instead of using this: cmp [rbx+000000A8],2E480619 //check again if this is oxygen's +a8 hex value jne instantcraftbp //it's not oxygen (...
- Tue Oct 31, 2017 4:54 pm
- Forum: Cheat Engine
- Topic: Astroneer, an instruction is shared with tons of total different address and values.
- Replies: 27
- Views: 279
Re: Astroneer, an instruction is shared with tons of total different address and values.
correction at this line, i typed the comment wrong jne instantcraftbp //it's not oxygen (it's 2E480609 or something else, so jumping to instantcraftbp, OK done.) Instead of using this: cmp [rbx+000000A8],2E480619 //check again if this is oxygen's +a8 hex value jne instantcraftbp //it's not oxygen (...
- Tue Oct 31, 2017 4:44 pm
- Forum: Cheat Engine
- Topic: Astroneer, an instruction is shared with tons of total different address and values.
- Replies: 27
- Views: 279
Re: Astroneer, an instruction is shared with tons of total different address and values.
now i'm doing this way rbx+a8 2E480609 (from harvested resources, soil ) rbx+a8 2E480619 (from oxygen base address) [ENABLE] //code from here to '[DISABLE]' will be used to enable the cheat aobscanmodule(INF_OXYGEN,Astro-Win64-Shipping.exe,89 BB 40 01 00 00 85) alloc(newmem,$1000,"Astro-Win64-Shipp...
- Tue Oct 31, 2017 4:23 pm
- Forum: Cheat Engine
- Topic: Astroneer, an instruction is shared with tons of total different address and values.
- Replies: 27
- Views: 279
Re: Astroneer, an instruction is shared with tons of total different address and values.
oooh oh i see maybe they all have the same rbp, but in my code, instead of compare them all in same area, i can just compare it again in the next area where there is no codes for oxygen, but only massive resource value i get the idea now thanks :D Yeah Your Welcome well i just notice that, even tho...
- Tue Oct 31, 2017 3:21 pm
- Forum: Cheat Engine
- Topic: Astroneer, an instruction is shared with tons of total different address and values.
- Replies: 27
- Views: 279
Re: Astroneer, an instruction is shared with tons of total different address and values.
so, putting the cmp on the massive resource area is just for easier better way of coding or there's a reason it wont work if i dont? gonna try it tonight, thanks for the help :D if that rbp = 0 also applies to things other thanns itantcraftbp by any chance, so i need to look for another different o...
- Tue Oct 31, 2017 11:34 am
- Forum: Cheat Engine
- Topic: Astroneer, an instruction is shared with tons of total different address and values.
- Replies: 27
- Views: 279
Re: Astroneer, an instruction is shared with tons of total different address and values.
so, putting the cmp on the massive resource area is just for easier better way of coding or there's a reason it wont work if i dont? gonna try it tonight, thanks for the help :D if that rbp = 0 also applies to things other thanns itantcraftbp by any chance, so i need to look for another different o...
- Mon Oct 30, 2017 9:15 pm
- Forum: Cheat Engine
- Topic: Astroneer, an instruction is shared with tons of total different address and values.
- Replies: 27
- Views: 279
Re: Astroneer, an instruction is shared with tons of total different address and values.
So Unreal Engine is a bit anoying as you found out because most of the time everything is shared but i made a working code now: [ENABLE] aobscanmodule(INF_OXYGEN,Astro-Win64-Shipping.exe,89 BB 40 01 00 00 85) alloc(newmem,$1000,"Astro-Win64-Shipping.exe"+1DF9CB) label(code) label(return) label(massi...