I use the bypass to hgwc (onomato - HGWC Bypass)
and how the logs with my hack and climbing up to the server gets banned why?
and how the logs with my hack and climbing up to the server gets banned why?
Code:
#requireadmin
#include <NomadMemory.au3>
$address = 0x01225558
$value = 700
$S4 = ("S4Client.exe")
$HGWC = ("HGWC.exe")
_hack()
Func _hack()
ToolTip("Waiting for HGWC", 0, 0)
ProcessWait($HGWC)
ToolTip("HGWC is running...", 0, 0)
ToolTip("Waiting for S4Client", 0, 0)
ProcessWait($S4)
ToolTip("S4Client is running...", 0, 0)
Local $OPEN = _MemoryOpen("S4Client.exe")
_MemoryWrite($address, $OPEN, $value, "float")
_MemoryClose($OPEN)
Exit
EndFunc