PHP Code:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#NoTrayIcon
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("4storyEG Hack", 516, 253, 248, 129)
GUISetBkColor(0xA6CAF0)
$Group1 = GUICtrlCreateGroup("Standart Hacks", 8, 16, 241, 201)
$Label1 = GUICtrlCreateLabel("Speed Hack", 24, 40, 80, 20)
GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif")
$Speed_ON = GUICtrlCreateButton("ON", 24, 64, 33, 25)
$Speed_OFF = GUICtrlCreateButton("OFF", 64, 64, 33, 25)
$Speed_Input = GUICtrlCreateInput("16700", 104, 64, 105, 21)
$DMG_ON = GUICtrlCreateButton("ON", 24, 120, 33, 25)
$Label2 = GUICtrlCreateLabel("DMG Hack", 24, 96, 70, 20)
GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif")
$DMG_OFF = GUICtrlCreateButton("OFF", 64, 120, 33, 25)
$Label3 = GUICtrlCreateLabel("No Miss Hack", 136, 96, 88, 20)
GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif")
$No_Miss_ON = GUICtrlCreateButton("ON", 128, 120, 33, 25)
$No_Miss_OFF = GUICtrlCreateButton("OFF", 168, 120, 33, 25)
$Label4 = GUICtrlCreateLabel("Skill Hack", 24, 152, 64, 20)
GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif")
$Skill_ON = GUICtrlCreateButton("ON", 24, 176, 33, 25)
$Skill_Input = GUICtrlCreateInput("Value", 104, 176, 105, 21)
$Skill_OFF = GUICtrlCreateButton("OFF", 64, 176, 33, 25)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$Group2 = GUICtrlCreateGroup("Special Hacks", 264, 16, 241, 97)
$Label5 = GUICtrlCreateLabel("Chat Hack", 280, 40, 66, 20)
GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif")
$Chat_ON = GUICtrlCreateButton("ON", 280, 64, 33, 25)
$Chat_OFF = GUICtrlCreateButton("OFF", 320, 64, 33, 25)
$Label6 = GUICtrlCreateLabel("Kingdom Hack", 376, 40, 92, 20)
GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif")
$Kingdom_Deri = GUICtrlCreateButton("Deri", 376, 64, 33, 25)
$Kingdom_Valo = GUICtrlCreateButton("Valo", 416, 64, 33, 25)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$MenuItem1 = GUICtrlCreateMenu("File")
$MenuItem2 = GUICtrlCreateMenuItem("Beenden", $MenuItem1)
$MenuItem3 = GUICtrlCreateMenuItem("© by LittleAnna", $MenuItem1)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
$open = _MemoryOpen(ProcessExists("TClient.exe"))
Global $base = 0x00686d04
Global $speed[3] = [0, 0xA08, 0x9F6]
Global $dmg_m[3] = [0, 0xA08, 0x480]
Global $dmg_p[3] = [0,0xA08, 0x484]
Global $Skill[3] = [0, 0xA08, 0x474]
Global $king[3] = [0, 0xA08, 0x128]
Global $chat[3] = [0, 0xA08, 0x2c8]
Global $no_miss[3] = [0,0xA08, 0x476]
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $MenuItem2
Exit
Case $Speed_ON
_MemoryPointerWrite($base,$open,$speed,GUICtrlRead($Speed_Input))
Case $Speed_OFF
_MemoryPointerWrite($base,$open,$speed,"16230")
Case $DMG_ON
_MemoryPointerWrite($base,$open,$dmg_m,"999999999")
_MemoryPointerWrite($base,$open,$dmg_p,"999999999")
Case $DMG_OFF
_MemoryPointerWrite($base,$open,$dmg_m,"0")
_MemoryPointerWrite($base,$open,$dmg_p,"0")
Case $No_Miss_ON
_MemoryPointerWrite($base,$open,$no_miss,"999999999")
Case $No_Miss_OFF
_MemoryPointerWrite($base,$open,$no_miss,"0"
Case $Skill_ON
_MemoryPointerWrite($base,$open,$Skill,GUICtrlRead($Skill_Input))
Case $Skill_OFF
_MemoryPointerWrite($base,$open,$Skill,"0")
Case $Chat_ON
_MemoryPointerWrite($base,$open,$chat,"9")
Case $Chat_OFF
_MemoryPointerWrite($base,$open,$chat,"1")
Case $Kingdom_deri
_MemoryPointerWrite($base,$open,$king,"16777215")
Case $Kingdom_valo
_MemoryPointerWrite($base,$open,$king,"16777216")
EndSwitch
WEnd