I'm a new programmer so I cannot understand the code very good.
Code:
#include <GUIConstants.au3>
#include <Pointer.au3>
#RequireAdmin
GUICreate("Hack", 520, 392, 286, 158)
GUICtrlCreateGroup("Skill Hack ", 192, 208, 169, 153)
GUICtrlSetFont(-1, 8, 400, 2, "Broadway BT")
$Skill = GUICtrlCreateInput("", 200, 264, 161, 22)
GUICtrlCreateLabel("Value ", 200, 240, 45, 18)
GUICtrlSetFont(-1, 8, 400, 2, "Broadway BT")
$Skill_On = GUICtrlCreateButton("On", 200, 296, 75, 57, 0)
GUICtrlSetFont(-1, 8, 400, 2, "Broadway BT")
$Skill_Off = GUICtrlCreateButton("Off", 280, 296, 75, 57, 0)
GUICtrlSetFont(-1, 8, 400, 2, "Broadway BT")
GUICtrlCreateGroup("", -99, -99, 1, 1)
GUICtrlCreateGroup("Pvp AOE Hack ", 192, 144, 169, 57)
GUICtrlSetFont(-1, 8, 400, 2, "Broadway BT")
$PvP_On = GUICtrlCreateButton("On", 200, 168, 75, 25, 0)
GUICtrlSetFont(-1, 8, 400, 2, "Broadway BT")
$PvP_Off = GUICtrlCreateButton("Off", 280, 168, 75, 25, 0)
GUICtrlSetFont(-1, 8, 400, 2, "Broadway BT")
GUICtrlCreateGroup("", -99, -99, 1, 1)
GUISetState(@SW_SHOW)
$Open = _MemoryOpen(ProcessExists("TClient.exe"))
$Pointer = 0x0069F190
Global $Skill_O[3] = [0, Dec("A20"), Dec("454")]
Global $Dmg1_O[3] = [0, Dec("A20"), Dec("45C")]
Global $Dmg2_O[3] = [0, Dec("A20"), Dec("488")]
Global $Dmg3_O[3] = [0, Dec("A20"), Dec("468")]
Global $Dmg4_O[3] = [0, Dec("A20"), Dec("494")]
Global $Miss1_O[3] = [0, Dec("A20"), Dec("456")]
Global $Miss2_O[3] = [0, Dec("A20"), Dec("482")]
While 1
$msg = GUIGetMsg()
Select
Case $msg = $GUI_EVENT_CLOSE
Exit
Case $msg = $Skill_On
GUICtrlSetData($Skill_On, "Enabled")
While 1
$msg = GUIGetMsg()
_MemoryPointerWrite($Pointer, $Open, $Skill_O, GUICtrlRead($Skill))
Select
Case $msg = $Skill_Off
GUICtrlSetData($Skill_On, "On")
ExitLoop
Case $msg = $GUI_EVENT_CLOSE
Exit
EndSelect
WEnd
Case $msg = $PvP_On
GUICtrlSetData($PvP_On, "Enabled")
While 1
$msg = GUIGetMsg()
_MemoryPointerWrite($Pointer, $Open, $Dmg1_O, "99999")
_MemoryPointerWrite($Pointer, $Open, $Dmg2_O, "99999")
_MemoryPointerWrite($Pointer, $Open, $Dmg3_O, "99999")
_MemoryPointerWrite($Pointer, $Open, $Dmg4_O, "99999")
_MemoryPointerWrite($Pointer, $Open, $Skill_O, "321")
_MemoryPointerWrite($Pointer, $Open, $Miss1_O, "99999")
_MemoryPointerWrite($Pointer, $Open, $Miss2_O, "99999")
Select
Case $msg = $PvP_Off
GUICtrlSetData($PvP_On, "On")
ExitLoop
Case $msg = $GUI_EVENT_CLOSE
Exit
EndSelect
WEnd
EndSelect
WEnd
I cannot run the PvP One-Hit hack.