Ja statt $offis ZB die Speed variable oder invi, bei dir $speed bei beide das sieh dan so aus:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <Pointer.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("4story EG hack v1.0 by °HackerScipter95°", 634, 332, 200, 123)
$Button1 = GUICtrlCreateButton("ON", 208, 32, 75, 25, $WS_GROUP)
$Button2 = GUICtrlCreateButton("OFF", 208, 72, 75, 25, $WS_GROUP)
$Input1 = GUICtrlCreateInput("16230", 48, 48, 121, 21)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
$open = _MemoryOpen(ProcessExists("TClient.exe"))
Global $base = 0x00686d04
Global $speed[3] = [0, 0xA08, 0x9F6]
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
_MemoryPointerWrite($base,$open,$speed,GUICtrlRead ($Input1))
Case $Button2
_MemoryPointerWrite($base,$open,$speed,"16230")
EndSwitch
WEnd