[quote=Kaites;1350334]virus scan:
...
quote]
check your last XYZ-Version... its the same -.-
[quote=Kaites;1350334]virus scan:
...
quote]
check your last XYZ-Version... its the same -.-
did i say it was a virus? dude, i was trying to proof that your file was real.
actual link to the compiled 3.0.8 one (it works, just tested)
Virustotal. MD5: d02ba182158f12598a761d7aed94ee94 Generic!Artemis Backdoor.Delf.mhm Trojan.Downloader-65348
are those always there for AutoIt stuff?
Any update on this beast? I love this thing so much and I miss it now![]()
agreed, i started it up earlier and tried to go through the gates in WSG and was saddened when i saw my guy turn left and right instead =(
New wow patch.. new XYZ coming ?
I did that few times.Is it possible to solo boss when you're in the air?
Code:
;---- Includes ----
#Include <NomadMemory.au3>
#Include <Misc.au3>
#include <Inet.au3>
;------------------
SetPrivilege("SeDebugPrivilege", 1)
$dll = DllOpen("user32.dll")
$wow = _memoryopen(WinGetProcess("World of Warcraft"))
Func teleport($direction)
$lvl1Pointer= _MemoryRead(0x0127F13C, $wow, 'ptr')
$lvl2Pointer= _MemoryRead(($lvl1Pointer + 0x30), $wow, 'ptr')
$PlayerBase= _MemoryRead(($lvl2Pointer + 0x2, $wow, 'ptr')
$X = $PlayerBase + 0x7D0
$Y = $PlayerBase + 0x7D4
$Z = $PlayerBase + 0x7D8
Select
Case $direction = "north"
$location = _MemoryRead($Y , $wow, 'float')
$newlocation = $location + 0.13
_MemoryWrite($Y , $wow,$newlocation, 'float')
send("{left}{left}{right}{right}")
sleep(30)
Case $direction = "west"
$location = _MemoryRead($X , $wow, 'float')
$newlocation = $location + 0.13
_MemoryWrite($X , $wow,$newlocation, 'float')
send("{left}{left}{right}{right}")
sleep(30)
Case $direction = "south"
$location = _MemoryRead($Y , $wow, 'float')
$newlocation = $location - 0.13
_MemoryWrite($Y , $wow,$newlocation, 'float')
send("{left}{left}{right}{right}")
sleep(30)
Case $direction = "east"
$location = _MemoryRead($X , $wow, 'float')
$newlocation = $location - 0.13
_MemoryWrite($X , $wow,$newlocation, 'float')
send("{left}{left}{right}{right}")
sleep(30)
Case $direction = 5
$location = _MemoryRead($Z , $wow, 'float')
$newlocation = $location + 3
_MemoryWrite($Z , $wow,$newlocation, 'float')
sleep(30)
Case $direction = 6
$location = _MemoryRead($Z , $wow, 'float')
$newlocation = $location - 3
_MemoryWrite($Z , $wow,$newlocation, 'float')
sleep(30)
EndSelect
EndFunc
;check if the keys are pressed, yes this drains alot of CPU :'(
While 1
If _IsPressed("68", $dll) Then
teleport("north")
elseif _IsPressed("64", $dll) Then
teleport("west")
elseif _IsPressed("65", $dll) Then
teleport("south")
elseif _IsPressed("66", $dll) Then
teleport("east")
elseif _IsPressed("67", $dll) Then
teleport(5)
elseif _IsPressed("69", $dll) Then
teleport(6)
EndIf
sleep(100)
WEnd
Last edited by tavadi; 02-11-2009 at 05:32 PM.
Anyone tested ^^?
Dam need new XYZ out can some1 test and confirmWould myself but dont now how :P!
I tested it myself, it works.
doesnt work for patch 3.0.9 atleast![]()
Yes, it does. "Tavadi" a few posts up posted an updated version that works.
Hmm still XYZ is a detectlable by other players tool ofc, use at ur own risk as always xd
Last edited by delgo; 02-11-2009 at 05:45 PM.