Auf den ersten Blick:
Code:
_MEMORYWRITE(0x00D3C908,$OPEN,0,"Char[19]")
_MEMORYWRITE(0x00D3C9B0,$OPEN,0,"Char[30]")
_MEMORYWRITE(0x00D3C9D0,$OPEN,0,"Char[22]")
_MEMORYWRITE(0x00D382B0,$OPEN,0,"Char[13]")
_MEMORYWRITE(0x00D3C910,$OPEN,0,"Char[13]")
_MEMORYWRITE(0x00D3C96A,$OPEN,0,"Char[13]")
_MEMORYWRITE(0x00D3C9C1,$OPEN,0,"Char[13]")
_MEMORYWRITE(0x00D3C9D9,$OPEN,0,"Char[13]")
muss zu
Code:
_MEMORYWRITE(00D3C908,$OPEN,0,"Char[2]")
_MEMORYWRITE(00D3C9B0,$OPEN,0,"Char[2]")
_MEMORYWRITE(00D3C9D0,$OPEN,0,"Char[2]")
_MEMORYWRITE(00D382B0,$OPEN,0,"Char[2]")
_MEMORYWRITE(00D3C910,$OPEN,0,"Char[2]")
_MEMORYWRITE(00D3C96A,$OPEN,0,"Char[2]")
_MEMORYWRITE(00D3C9C1,$OPEN,0,"Char[2]")
_MEMORYWRITE(00D3C9D9,$OPEN,0,"Char[2]")
und die 2 Zeilen
Code:
$PID = ProcessExists("S4Client.exe")
ProcessWait($PID)
durch
Code:
$PID = ProcessWait("S4Client.exe")
ersetzen.