[Hack] - XYZ menu

User Tag List

Thread: [Hack] - XYZ

Page 43 of 49 FirstFirst ... 394041424344454647 ... LastLast
Results 631 to 645 of 735
  1. #631
    dukezonk's Avatar Member
    Reputation
    4
    Join Date
    Nov 2007
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    [quote=Kaites;1350334]virus scan:
    ...
    quote]

    check your last XYZ-Version... its the same -.-

    [Hack] - XYZ
  2. #632
    Kaites's Avatar Member
    Reputation
    30
    Join Date
    Nov 2008
    Posts
    163
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    did i say it was a virus? dude, i was trying to proof that your file was real.

  3. #633
    Professor Banana's Avatar Member
    Reputation
    21
    Join Date
    Apr 2008
    Posts
    102
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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?

  4. #634
    bubbajackson's Avatar Member
    Reputation
    58
    Join Date
    Dec 2008
    Posts
    84
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any update on this beast? I love this thing so much and I miss it now

  5. #635
    deadfate's Avatar Active Member
    Reputation
    25
    Join Date
    Dec 2007
    Posts
    164
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bubbajackson View Post
    Any update on this beast? I love this thing so much and I miss it now
    (Filler)mm

  6. #636
    Xcron's Avatar Member
    Reputation
    40
    Join Date
    Nov 2008
    Posts
    47
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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 =(

  7. #637
    CareBearPolice's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    60
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    New wow patch.. new XYZ coming ?

  8. #638
    Saristas's Avatar Member
    Reputation
    1
    Join Date
    Feb 2009
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is it possible to solo boss when you're in the air?
    I did that few times.

  9. #639
    tavadi's Avatar Member
    Reputation
    2
    Join Date
    Apr 2008
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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.

  10. #640
    bubbajackson's Avatar Member
    Reputation
    58
    Join Date
    Dec 2008
    Posts
    84
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone tested ^^?

  11. #641
    davies19uk's Avatar Active Member
    Reputation
    15
    Join Date
    Aug 2008
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Dam need new XYZ out can some1 test and confirm Would myself but dont now how :P!

  12. #642
    bubbajackson's Avatar Member
    Reputation
    58
    Join Date
    Dec 2008
    Posts
    84
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I tested it myself, it works.

  13. #643
    delgo's Avatar Member
    Reputation
    10
    Join Date
    Dec 2007
    Posts
    59
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    doesnt work for patch 3.0.9 atleast

  14. #644
    bubbajackson's Avatar Member
    Reputation
    58
    Join Date
    Dec 2008
    Posts
    84
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yes, it does. "Tavadi" a few posts up posted an updated version that works.

  15. #645
    delgo's Avatar Member
    Reputation
    10
    Join Date
    Dec 2007
    Posts
    59
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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.

Page 43 of 49 FirstFirst ... 394041424344454647 ... LastLast

Similar Threads

  1. XYZ Hacks At There Best
    By Czchar in forum World of Warcraft Guides
    Replies: 12
    Last Post: 07-06-2008, 06:55 AM
  2. [Hack (XYZ)] Using XYZ to farm gold in scholo
    By Fwaky in forum World of Warcraft Bots and Programs
    Replies: 29
    Last Post: 07-05-2008, 10:10 PM
  3. xyz hack - help plz
    By goliat in forum World of Warcraft General
    Replies: 0
    Last Post: 07-04-2008, 11:11 AM
  4. Fun Ideas For XYZ Hack - guide of sorts
    By Darknights in forum World of Warcraft Guides
    Replies: 30
    Last Post: 05-30-2008, 09:33 PM
All times are GMT -5. The time now is 12:24 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search