I´m looking for some people that can create or help to make Tables for The Universim^^
Infinite Water, food or whatever would be damn helpful.
Maybe you guys have more success then me with something that works. : )
Thanks
Last edited by Mrt19 on Wed Feb 05, 2020 12:46 am, edited 26 times in total.
Just a quick table since this is still such a raw game... love it though...
---0.0.17.6500 - Crash If any codes are deactivated!!!
*INF. Stamina/Thirst/Hunger (float)
*Forever Young (4b)
*INF. Water/fish In lake/ocean (4b) - bugged?
No problem... I'll still try to work on it from time to time... If I get any other code stable enough I'll post... but since content is too short for now I'm not sure I'll have much to cling for... Probably will only keep updating from time to time... until they update more content.
Try using wildcards in your AOBs,
for example in the "INF. Stamina/Thirst/Hunger (float)" cheat:
0.0.17.6500:
F3 0F 11 AE 88 01 00 00 - movss [rsi+00000188],xmm5
F3 0F 10 86 88 01 00 00 - movss xmm0,[rsi+00000188]
So you used F3 0F 11 AE 88 01 00 00 F3 0F 10 86 as AOB.
0.0.18.7468:
F3 0F 11 AE A8 01 00 00 - movss [rsi+000001A8],xmm5
F3 0F 10 86 A8 01 00 00 - movss xmm0,[rsi+000001A8]
And you used F3 0F 11 AE A8 01 00 00 F3 as AOB.
The only thing that changed in between versions and will probably be changing in the future as well is the offset to rsi.
It changed from 188 to 1a8. The offset should be replaced with wildcards in the AOB, so it looks like this:
F3 0F 11 AE ** ** 00 00 F3 0F 10 86 or if it's still unique
F3 0F 11 AE ** ** ** ** F3 0F 10 86.
With wildcards your AOBs become update-safe.
Also the injection points between your 3 scripts should be called differently since you register them as symbols and symbols are global.
These symbols are telling the script where to undo the changes, so using the same symbol name will prevent them from being deactivated (since it'll be unregistered once and the game doesn't know where to look for the next changes) or likely crash the game (when the real code of cheat A gets written to the place where the real code of cheat B belongs) if you use more of them at once.