ist noch jmd hier, der die update.ini geändert hat und es denoch nicht funzt?
Mein Bot dreht sich nur ruckelig.
Ok, ist erledigt- ein kleines B zuviel.
Mein Bot dreht sich nur ruckelig.
Ok, ist erledigt- ein kleines B zuviel.
downloadlink ist der selbeQuote:
PTR_HP_E = 0xd28c08
;offset 1 = 0x104
;current hp = 0x28
;current e = 0x14
;max hp = 0x2c
;max e = 0x18
;hero_1 hp = (-0xc)
;hero_2 hp = (-0x40)
;hero_3 hp = (-0x74)
PTR_BASEA = 0xa0082c
PTR_BASEB = 0xa00768
;offset 1 = 0x18
;offset 2 = 0x2c
;current kurzick = 0x6e4
;current luxon = 0x6f4
;current balthazar = 0x724
;current exp = 0x6dc
;max kurzick = 0x740
;max luxon = 0x744
;max balthazar = 0x748
;Gold
;PTR_BASEA/PTR_BASEB
;offset 1 = 0x18
;offset 2 = 0x40
;offset 3 = 0xf8
;gold_self = 0x64
;gold_chest = 0x4
;Travel
;PTR_BASEA/PTR_BASEB
;offset 1 = 0x18
;offset 2 = 0x44
;travel_id = 0x1bc
M_CHAT = 0xa00878
;m_chat = 0x2a8
#include "tt6.au3" Const $PTR_HEALTH = 0xd28c08 + 0x28 $READ = _MemoryRead($PTR_HEALTH, $hprocess, 'int') MsgBox(0x40, "Memory Test for BALTHI POINTS",($READ))
weil du es falsch machst! :)Quote:
Sorry das ich euch belästigen muss, aber wieso kriege ich hier immer 0?
Code:#include "tt6.au3" Const $PTR_HEALTH = 0xd28c08 + 0x28 $READ = _MemoryRead($PTR_HEALTH, $hprocess, 'int') MsgBox(0x40, "Memory Test for BALTHI POINTS",($READ))
$ptr = memoryread(PTR_HP_E, dword) $ptr = memoryread($ptr + offset 1, dword) $hp = memoryread($ptr + current hp, float)
#include "tt6.au3"
Const $PTR_HEALTH = 0xd28c08
Const $PTR_HEALTH_OFFSET = 0x104
Const $PRT_HEALTH_CUR_HP = 0x28
$1 = _MemoryRead($PTR_HEALTH, $hprocess)
$2 = _MemoryRead($PTR_HEALTH + $PTR_HEALTH_OFFSET, $hprocess)
$3 = _MemoryRead($PTR_HEALTH + $PTR_HEALTH_OFFSET + $PRT_HEALTH_CUR_HP, $hprocess, 'float')
$Format = StringFormat("%s %s %s", " Ergebnis von 1: " & $1 & @CRLF, "Ergebnis von 2: " & $2 & @CRLF, "Ergebnis von 3: " & $3)
MsgBox(0x40, "Ergebnis", $Format)
#include "tt6.au3"
Const $PTR_HEALTH = 0xd28c08
Const $PTR_HEALTH_OFFSET = 0x104
Const $PRT_HEALTH_CUR_HP = 0x28
$1 = _MemoryRead($PTR_HEALTH, $hprocess, 'dword')
$2 = _MemoryRead($1 + $PTR_HEALTH_OFFSET, $hprocess, 'dword')
$3 = _MemoryRead($2 + $PRT_HEALTH_CUR_HP, $hprocess)
$Format = StringFormat("%s %s %s", " Ergebnis von 1: " & $1 & @CRLF, "Ergebnis von 2: " & $2 & @CRLF, "Ergebnis von 3: " & $3)
MsgBox(0x40, "Ergebnis", $Format)