Script for the collection event:
This makes the wood crate cost 0 and you'll get the diamond crate rewards(Blue, Purple and Gold tier). Enable the script when on the main menu, get in the event screen, get out, and then get back in.
YOU'LL BE STUCK ON THAT SCREEN. So when you're done getting insta monkeys, close the game and you'll be fine.
Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
<CheatEntries>
<CheatEntry>
<ID>1837</ID>
<Description>"Collection Event Cheat"</Description>
<LastState Activated="1"/>
<VariableType>Auto Assembler Script</VariableType>
<AssemblerScript>[ENABLE]
aobscanmodule(get_CollectionInstance,GameAssembly.dll,48 8B 81 B8 00 00 00 48 83 38 00 0F 85 AB)
alloc(newmem,$1000,"GameAssembly.dll"+43B046)
label(code)
label(return)
alloc(CollectionEvent,8) //[x]+x pointer
registersymbol(CollectionEvent)
newmem:
code:
mov rax,[rcx+000000B8]
mov [CollectionEvent],rax
push rdi
push rbx
mov rax,[rax]
mov rdi,[rax+30]
mov rbx,[rdi+18]
mov rdi,[rbx+10]
mov rbx,[rdi+30]
mov [rdi+10],rbx //DIAMOND -> WOOD (1)
//mov [rdi+14],rbx //DIAMOND -> BRONZE (2)
//mov [rdi+18],rbx //DIAMOND -> SILVER (3)
//mov [rdi+1C],rbx //DIAMOND -> GOLD (4)
mov rdi,[rax+30]
mov rbx,[rdi+20]
mov [rbx+10],#0 //WOOD (1)
//mov [rbx+14],#0 //BRONZE (2)
//mov [rbx+18],#0 //SILVER (3)
//mov [rbx+1C],#0 //GOLD (4)
pop rbx
pop rdi
mov rax,[rcx+000000B8]
jmp return
get_CollectionInstance:
jmp newmem
nop 2
return:
registersymbol(get_CollectionInstance)
[DISABLE]
get_CollectionInstance:
db 48 8B 81 B8 00 00 00
unregistersymbol(get_CollectionInstance)
dealloc(newmem)
</AssemblerScript>
</CheatEntry>
</CheatEntries>
</CheatTable>