#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <Pointer.au3>
#RequireAdmin
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("MP hack 1", 318, 131, 192, 124)
$Button1 = GUICtrlCreateButton("ON", 208, 32, 75, 25, $WS_GROUP)
$Button2 = GUICtrlCreateButton("OFF", 208, 72, 75, 25, $WS_GROUP)
$Input1 = GUICtrlCreateInput("90000000", 48, 48, 121, 21)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
$open = _MemoryOpen(ProcessExists("FlorensiaEN.exe"))
Global $base = 0x00fa1460
Global $offis[1] = [2D0]
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
_MemoryPointerWrite($base,$open,$offis,GUICtrlRead ($Input1))
Case $Button2
_MemoryPointerWrite($base,$open,$offis,"90000000")
EndSwitch
WEnd
i got a syntax error "Global $offis[1] = [2D0]" did i make somethings wrong? i founded base address and the offset's , someone can help?







