Skip to content

Instantly share code, notes, and snippets.

@sebyx07
Last active April 11, 2024 16:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sebyx07/d4d5d9c55a9aee0bb30b740fb3b458be to your computer and use it in GitHub Desktop.
Save sebyx07/d4d5d9c55a9aee0bb30b740fb3b458be to your computer and use it in GitHub Desktop.
Hack Age of Empires Online Celeste. Infinite population and resources

Run the trainer before in a quest!

1 Install Sandboxie https://www.sandboxie.com/

2 Run Celeste_Launcher_Gui.exe sandboxed

3 Run the Game

4 Alt tab

5 Run Cheat Engine

Select process -> Memory view -> Tools -> Auto assemble

Insert the following ode

[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
 
alloc(newmem,2048)
label(returnhere)
label(originalcode)
label(exit)
label(amount)
label(type_wood)
label(type_food)
label(type_gold)
label(type_stone)
 
newmem:
pushad
mov [amount],(float)999999
 
 
push [amount]
push type_wood
push 01
call rmSetPlayerResource
add esp,0c
 
push [amount]
push type_food
push 01
call rmSetPlayerResource
add esp,0c
 
push [amount]
push type_gold
push 01
call rmSetPlayerResource
add esp,0c
 
push [amount]
push type_stone
push 01
call rmSetPlayerResource
add esp,0c
 
 
 
popall
 
mov ecx,-2000
originalcode:
mov [edx+00000080],ecx
 
 
exit:
jmp returnhere
 
 
amount:
db 00 00 00 00
type_wood:
db 'wood'
db 00
type_food:
db 'food'
db 00
type_gold:
db 'gold'
db 00
type_stone:
db 'stone'
db 00
 
 
"spartan.exe"+31BE48:
jmp newmem
nop
returnhere:
 
 
[DISABLE]
@RobemHood
Copy link

play ao4, it's more fun

it really isnt! these two games are completely different from one another in every way possible except the actual game play. equipping armor etc, advisors, building your own city, quests, gold, purchasing. like how is aoe 4 remotely fun to play more than aoeo??

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment