A quick fix for the creative duplication script for build 1.26.128.0.
replace occurrences of
84 C0 0F 84 71 03 00 00 48
with
84 C0 0F 84 0D 08 00 00 48
You can double click the script. hit CTRL+R, text to find
71 03
and replace with
0D 08
So, it will look like this in the latest version (without comments):
Code: Select all
[ENABLE]
aobscanmodule(codeOnSelectionDuplicate,Astro-Win64-Shipping.exe,84 C0 0F 84 0D 08 00 00 48)
aobscanmodule(codeServerSelectionDuplicateImpl,Astro-Win64-Shipping.exe,84 C0 0F 84 0B 02 00 00 4C)
codeOnSelectionDuplicate:
db 90 90 90 90 90 90 90 90
codeServerSelectionDuplicateImpl:
db 90 90 90 90 90 90 90 90
registersymbol(codeOnSelectionDuplicate)
registersymbol(codeServerSelectionDuplicateImpl)
[DISABLE]
codeOnSelectionDuplicate:
db 84 C0 0F 84 0D 08 00 00
codeServerSelectionDuplicateImpl:
db 84 C0 0F 84 0B 02 00 00
unregistersymbol(*)
EDIT: You can also replace these for a couple more of the creative cheats. F = text to find R = replace them with these
Code: Select all
Free Oxygen
F: 01 74 0C F6 81 C9 06 00 00 40
R: 01 74 0C F6 81 E9 06 00 00 40
Free Fuel
F: 02 74 0C F6 81 C9 06 00 00 40
R: 02 74 0C F6 81 E9 06 00 00 40
Invisible to hazards
F: 04 74 0C F6 81 C9 06 00 00 40
R: 04 74 0C F6 81 E9 06 00 00 40
Invincible
F: 08 74 0C F6 81 C9 06 00 00 40
R: 08 74 0C F6 81 E9 06 00 00 40
Unlimited backpack power
F: 10 74 0C F6 81 C9 06 00 00 40
R: 10 74 0C F6 81 E9 06 00 00 40
You basically just need to replace C9 to E9 in those scripts.
EDIT 2: I *think* I got free soil on terrain as well. The new AOB scan should be
74 0C 48 8B C8 E8 45
and the new memFreeSoil should read
Code: Select all
memFreeSoil:
jmp Astro-Win64-Shipping.exe+FF3DE0
mov rcx,rax
jmp returnFreeSoil
It will crash if you forget to change this.
And if anyone could tell me how to get CE to let me change the relative process address since it's not showing Astro-Win64-Shipping.exe+FF3DE0 in the disassembler it's showing some other thing but it's the same thing.