|
You last visited: Today at 20:52
Advertisement
Pointerscan AutoIT und es funzt nicht !
Discussion on Pointerscan AutoIT und es funzt nicht ! within the AutoIt forum part of the Coders Den category.
08/02/2010, 18:17
|
#1
|
elite*gold: 0
Join Date: Jul 2009
Posts: 634
Received Thanks: 704
|
Pointerscan AutoIT und es funzt nicht !
Guten Tag ,
hier das Problem ein Offline Spiel :
Ich suche nach meinem Wert hab am ende noch einen doppelklick -> PointerScan for this Address
Ausgabe 2 stk :
Nr1 : bla.exe+001560BC
Offset0 : F4
Offset1 ; nichts
Offset2 ; nichts
Points to : 106A3918
nr2 :
bla.exe+0007EBF4
Offset0 : 268
Offset1 ; A4
Offset2 ; A0
Points to : FEC8FEEC
so autoit sieht so aus :
Code:
#include <GUIConstants.au3>
#include <NomadMemory.au3>
#RequireAdmin
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 146, 126, 193, 125)
$Label1 = GUICtrlCreateLabel("Hack:", 8, 8, 74, 17)
$Button1 = GUICtrlCreateButton("ON", 16, 32, 49, 33, 0)
$Button2 = GUICtrlCreateButton("OFF", 16, 76, 49, 33, 0)
$Label2 = GUICtrlCreateLabel("Status:", 88, 48, 37, 17)
$Label3 = GUICtrlCreateLabel("OFF", 88, 72, 24, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
Global $Pointer = 0x0007EBF4
Global $Open = _MemoryOpen(ProcessExists("bla.exe"))
Global $Offset[3] = [0x268, 0xA4, 0xA0]
While 1
$NMG = GUIGetMsg()
Switch $NMG
Case $GUI_EVENT_CLOSE
_MemoryPointerWrite($Pointer, $Open, $Offset, 30000)
$Label3 = GUICtrlCreateLabel("OFF", 88, 72, 24, 17)
Exit
Case $Button1
_MemoryPointerWrite($Pointer, $Open, $Offset, 40000)
$Label3 = GUICtrlCreateLabel("ON", 88, 72, 24, 17)
Case $Button2
_MemoryPointerWrite($Pointer, $Open, $Offset, 1000)
$Label3 = GUICtrlCreateLabel("OFF", 88, 72, 24, 17)
EndSwitch
WEnd
Beim Global offset habe ich es auch mit einer 0 versucht geht auch nicht !
jemand ne idee ?
|
|
|
08/03/2010, 15:20
|
#2
|
elite*gold: 0
Join Date: Mar 2009
Posts: 7,260
Received Thanks: 33,149
|
Du vernachlässigst das "bla.exe +", das darfst du aber nicht.
Hier mal eine Möglichkeit mit der "Pointer.au3" UDF:
PHP Code:
#RequireAdmin
#include <GUIConstants.au3>
;#include <NomadMemory.au3>
#include <Pointer.au3> ;Memory UDF
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 146, 126)
$Label1 = GUICtrlCreateLabel("Hack:", 8, 8, 74, 17)
$Button1 = GUICtrlCreateButton("ON", 16, 32, 49, 33, 0)
$Button2 = GUICtrlCreateButton("OFF", 16, 76, 49, 33, 0)
$Label2 = GUICtrlCreateLabel("Status:", 88, 48, 37, 17)
$Label3 = GUICtrlCreateLabel("OFF", 88, 72, 24, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
;Global $Pointer = 0x0007EBF4 ;bla.exe?
Global $Open = _MemoryOpen(ProcessExists("bla.exe"))
Global $Offset[4] = [0, 0x268, 0xA4, 0xA0]
Global $Pointer
$Pointer = _MemoryGetBaseAddress($Open, 1)
$Pointer = "0x" & Hex($Pointer + Dec("7EBF4"))
While True
$NMG = GUIGetMsg()
Switch $NMG
Case $GUI_EVENT_CLOSE
_MemoryPointerWrite($Pointer, $Open, $Offset, 30000)
$Label3 = GUICtrlCreateLabel("OFF", 88, 72, 24, 17)
Exit
Case $Button1
_MemoryPointerWrite($Pointer, $Open, $Offset, 40000)
$Label3 = GUICtrlCreateLabel("ON", 88, 72, 24, 17)
Case $Button2
_MemoryPointerWrite($Pointer, $Open, $Offset, 1000)
$Label3 = GUICtrlCreateLabel("OFF", 88, 72, 24, 17)
EndSwitch
WEnd
|
|
|
 |
Similar Threads
|
[AUtoIt] Checkbox funzt nicht?!
06/24/2010 - AutoIt - 9 Replies
habe hier mal einen Spambot geschrieben... (ist noch nicht fertig)
nur leider funktionieren die checkboxen nicht , bis auf die erste...
HotKeySet("{ESC}", "_exit")
#include <GUIConstants.au3>
#Region ### START Koda GUI section ### Form=
$GUI_GlobalSpam = GUICreate("GlobalSpam Info", 536, 309, 398, 153)
$GUI_Spam1 = GUICtrlCreateInput("Was soll GlobalSpam als erstes spamen?", 24, 96, 321, 21)
|
Telehack funzt nicht auch über Moblock nicht!
12/26/2009 - Metin2 - 1 Replies
Hey, da der Tele ja nicht geht, hab ich mir gedacht machste über Moblock (Stadt neu starten) Das geht auch nicht da hänge ich in der Luft.
Bei Relog komme ich wieder in die Stadt.
Gibts was neues wann neue Hacks rauskommen?
Dürfte doch auch über CE gehen oder nicht?
|
autoit hotkey funzt ned
07/04/2009 - AutoIt - 18 Replies
hallo an alle
ich habe ein kleines problem....
ich bin in autoit ein anfänger und habe probiert einen bot zu schreiben der ganz gut funktioniert aber leider schaffe ich es nicht einen hotkey einzubaun... bitte helft mir
so sieht er aus
|
All times are GMT +1. The time now is 20:54.
|
|