sandor555 Posted June 18, 2010 Posted June 18, 2010 C:\Documents and Settings\myname\Asztal\5.au3(35,91) : ERROR: _memorypointerwrite(): undefined function. If $Bedingung = 1 Then _memorypointerwrite ($Pointer, $Open, $Offset, GUICtrlRead($xy)) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Documents and Settings\Tóth Sándor\Asztal\5.au3 - 1 error(s), 0 warning(s) What's wrong?
trancexx Posted June 18, 2010 Posted June 18, 2010 (edited) C:\Documents and Settings\myname\Asztal\5.au3(35,91) : ERROR: _memorypointerwrite(): undefined function. If $Bedingung = 1 Then _memorypointerwrite ($Pointer, $Open, $Offset, GUICtrlRead($xy))~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^C:\Documents and Settings\Tóth Sándor\Asztal\5.au3 - 1 error(s), 0 warning(s)What's wrong?You are trying to run script named 5.au3 from the folder Asztal in Documents and Settings\myname on drive C. But in line 35 (char place 91) that script have usage of the undefined function _memorypointerwrite.edit: and you are Tóth Sándor. Hi Tóth. Edited June 18, 2010 by trancexx ♡♡♡ . eMyvnE
sandor555 Posted June 18, 2010 Author Posted June 18, 2010 (edited) may be need poniter.au3 on? Edited June 18, 2010 by sandor555
Juvigy Posted June 18, 2010 Posted June 18, 2010 Function _memorypointerwrite is missing - if it is in pointer.au3 you need to include it in the beginning of your script. Where did you get that script from?
sandor555 Posted June 18, 2010 Author Posted June 18, 2010 #Include pointer.au3? Just do not contain the include folder is pointer.au3 ..
JohnOne Posted June 18, 2010 Posted June 18, 2010 NomadMemory.au3 id what you want to include to use that function. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
sandor555 Posted June 18, 2010 Author Posted June 18, 2010 expandcollapse popup#RequireAdmin #include <GUIConstants.au3> #include <NomadMemory.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 235, 114, 193, 125) $label1 = GUICtrlCreateLabel("DMG Hack", 16, 32, 58, 17) $dmg = GUICtrlCreateInput("Value", 88, 32, 121, 21) $setdmg = GUICtrlCreateButton("Set !", 16, 64, 163, 33, 0) GUISetState(@SW_SHOW) Global $Pointer = 0x00686D04 Global $Open = _MemoryOpen(ProcessExists("TClient.exe")) Global $Offset[3] = [0, 0xa08, 0x484] Global $Bedingung = 0 While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $setdmg If $Bedingung = 0 Then $Bedingung = 1 ElseIf $Bedingung = 1 Then $Bedingung = 0 EndIf EndSwitch SetDmg() WEnd Func SetDmg() If $Bedingung = 1 Then _memorypointerwrite ($Pointer, $Open, $Offset, GUICtrlRead($dmg)) EndFunc and not good ...: S
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now