im learning how to make a memory bot as of know.. im expirience in pixel botin but the mob seacrh for it is quite slow.. ill be using au3 and the include nomadmemory.au3 from nomad in au3 forum. credits to him...
this is my sample of my memory script: it will be good for who wants to learn memory botin and has no available bot in their respective server
this script will tell you the current mobID
this is the code of nomad:
[Only registered and activated users can see links. Click Here To Register...]
im still figuring out packets cause this will be the most useful thing
this is my sample of my memory script: it will be good for who wants to learn memory botin and has no available bot in their respective server
Code:
#include <Memory.au3>
Global $Pointer = d pointer in 4bytes in whch its store the modId when clicked just search in hex format in 4bytes in ce to get this and learn finding ofset
Global $Moboffset = d ofset in 4bytes in whch its store the modId when clicked just search in hex format in 4bytes in ce to get this and learn finding ofset
HotKeySet("{F1}", "mobid")
While 1
WEnd
Func mobid()
Global $Process = WinGetProcess("Element Client")
Global $DllInfo1 = _MemoryOpen($Process)
$MobAdd = _FindNewAddress($Pointer, $Moboffset)
$CurMob = _MemoryRead($MobAdd, $DllInfo1)
_MemoryClose($Process)
MsgBox(64, "Your Mob info:", "Your Current Mob: " & Hex($CurMob))
EndFunc ;==>mobid
Func _FindNewAddress(ByRef $Pointer, ByRef $OSet)
$New_Address = _MemoryRead($Pointer, $DllInfo1) + $OSet
Return $New_Address
EndFunc ;==>_FindNewAddress
this is the code of nomad:
[Only registered and activated users can see links. Click Here To Register...]
im still figuring out packets cause this will be the most useful thing