Jump to content

memorypointerwrite problem


Recommended Posts

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?

Link to comment
Share on other sites

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 by trancexx

♡♡♡

.

eMyvnE

Link to comment
Share on other sites

#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

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...