SSP bot 4Story

09/27/2011 19:04 BadGamer78#1
I try to make a bot for the SSP in 4Story,
A variable is egal to 1,2 or 3 in function of the sylbol. The idea is to make a bot who send the key 11 2 or 3 after read the memory.
So with CE I find the variable : 356B1E58
This is my AotoIt code :


HTML Code:
#Include <NomadMemory.au3> 

SetPrivilege("SeDebugPrivilege", 1) 

$Processus = _MemoryOpen(WinGetProcess("4Story")) 

While (1) 
    $Symbol = _MemoryRead(0x356B1E58 ,$Processus ,"int")  
    TrayTip("SSB","Symbol : " & $Symbol, 1) 
    Sleep(900) 
WEnd 

_MemoryClose($Processus)

But tthe message is : Symbol 0 whereas the variable is 2 !!!
Please what is the probleme ?
09/27/2011 19:48 JixhE#2
Itīs not possible to make an SSP Bot, i tryed it too, but i failed, its working serverside...
09/27/2011 19:58 BadGamer78#3
But I would like know how read a memory adress, I wants to try ! =)