Page 1 of 1

help with mono methods

Posted: Mon Aug 24, 2020 8:05 pm
by wannabeacheater2
hello,
i need to understand how to get the memory value from a getUser() method
[Link]
with ILSpy is this:
public static hs User => SimManager?.CurrentContext?.ag();
(called by a static object)
i need that memory value for use it with ahk any hint on how i can get that?

Re: help with mono methods

Posted: Tue Aug 25, 2020 8:52 am
by MBRKiNG
[Link]

[Link]

here is a template hope that helps

Code: Select all


define(address,"mygame.exe"+1234)
define(bytes,00 01 02 03 04 05)

[ENABLE]

assert(address,bytes)
alloc(newmem,$1000)

label(code)
label(return)
globalalloc(value,4)

newmem:

code:
  mov [value],eax  // add address manually and use "value" as address
  call mygame.exe+FFAA
  jmp return

address:
  jmp newmem
  nop
return:

[DISABLE]

address:
  db bytes
  // jbe mygame.exe+1234

dealloc(newmem)