[Release]Mr Track It - Hunter/Resource Tracking hack menu

User Tag List

Page 1 of 18 12345 ... LastLast
Results 1 to 15 of 259
  1. #1
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Release]Mr Track It - Hunter/Resource Tracking hack

    Updated and working with 3.2.0

    Pretty simle tracking hack.
    I know there's some other out on this forum but this is "clean" no fancy gui.
    Good to have when you pvp/level anyways, have phun!


    Usage
    1. Start
    2. Select what types of tracking you want
    3. Simple enough?

    Applies the tracking to all running instances of wow
    Requires .Net Framework 2.0+


    Screenshot



    Downloads
    MrTrackIt v1.8.rar
    Virustotal. MD5: 5a151146f711860aacf1c6f204dcd60d

    Changelog

    v1.0 Released 2008/11/10

    Initial Release

    v1.1 Released 2008/11/12
    Rewrote to a Forms application and added ability to track more than one resource/creature at the same time

    v1.2 Released 2008/12/07

    Added tracking for Fishing Pools

    v1.3 Released 2008/12/13
    Removed tracking for Fishing Pools and added Track all for objects and creatures

    v1.4 Released 2009/01/21
    Updated for 3.0.8 9464


    v1.5 Released 2009/02/13

    Updated for 3.0.9 9551


    v1.6 Released 2009/04/16

    Updated for 3.1.0 9767

    Seem like nothing much changed so it works with 3.1.1 too

    v1.7 Released 2009/05/21

    Updated for 3.1.2 9901


    v1.8 Released 2009/08/13
    Updated for 3.2.0
    Last edited by Nesox; 08-12-2009 at 08:31 PM.

    [Release]Mr Track It - Hunter/Resource Tracking hack
  2. #2
    kynox's Avatar Account not activated by Email
    Reputation
    830
    Join Date
    Dec 2006
    Posts
    888
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You can have one type of resource and one type of object at the same time.
    Untrue. There's a reason its a bitmask, to enable multiple tracking types by setting selective bits on/off.

  3. #3
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kynox View Post
    Untrue. There's a reason its a bitmask, to enable multiple tracking types by setting selective bits on/off.
    i guess u can use bitand to add the dirrents tracking types to enable several at the same time?
    Code:
    curTracking &= AddThis   ?

  4. #4
    Cursed's Avatar Contributor
    Reputation
    270
    Join Date
    Jun 2007
    Posts
    1,380
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Try to ADD the value for humanoids for example to the already activated beast tracking... You'll be suprised

  5. #5
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cursed View Post
    Try to ADD the value for humanoids for example to the already activated beast tracking... You'll be suprised
    ok, will try it :yuck:

  6. #6
    project anthrax's Avatar Contributor
    Reputation
    180
    Join Date
    Nov 2007
    Posts
    993
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    prityy cool nice program
    removed by Unholy

  7. #7
    Cern's Avatar Banned
    Reputation
    146
    Join Date
    Feb 2007
    Posts
    1,038
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Add something like: Track current player, to track someone in the arena!

  8. #8
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cern View Post
    Add something like: Track current player, to track someone in the arena!
    ive actually been thinking about that u enter the name of a player/npc and then it renders an arrow on a transparent screen that lays above wow. that shows where it is if it's being loaded

  9. #9
    kynox's Avatar Account not activated by Email
    Reputation
    830
    Join Date
    Dec 2006
    Posts
    888
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    enum eTrack
    {
        TRACK_BEASTS        = 0x01,
        TRACK_DRAGONS        = 0x02,
        TRACK_DEMONS        = 0x04,
        TRACK_ELEMENTALS    = 0x08,
        TRACK_GIANTS        = 0x10,
        TRACK_HUMANOIDS        = 0x40,
        TRACK_UNDEAD        = 0x20,
        TRACK_MACHINES        = 0x100,
        TRACK_SLIMES        = 0x200,
        TRACK_CRITTERS        = 0x80,
        TRACK_ALL            = -1,
    
        TRACK_OBJECT_HERBS            = 0x02,
        TRACK_OBJECT_MINERALS        = 0x04,
        TRACK_OBJECT_TREASURE        = 0x20,
        TRACK_OBJECT_ALL            = -1
    };
    To enable a flag, Flags |= TRACK_XX; ( Flags = Flags OR TRACK_XX )
    To disable a flag, Flags &= ~TRACK_XX; ( Flags = Flags AND ( NOT TRACK_XX ) )
    Last edited by kynox; 11-10-2008 at 03:33 PM.

  10. #10
    lothlogan's Avatar Active Member
    Reputation
    29
    Join Date
    Nov 2006
    Posts
    137
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Safe to use on live?

  11. #11
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1356
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This type of tracking is fairly coarse, if you want something more granular try hooking CGPlayer_C::CanTrack. You will have pretty much total control then. (Although its more difficult to implement)

    @lothlogan. Yes.

  12. #12
    Frabs01's Avatar Member
    Reputation
    3
    Join Date
    Apr 2007
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    does this track any better than find herbs does?
    Barrens Chat God=ME

  13. #13
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1356
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Frabs01 View Post
    does this track any better than find herbs does?
    No, its impossible to modify tracking range so the herb tracking you get with this will be the same as you get with the ability. Although, with this you can do 'extra' tracking, but if you're only after herbs than no this poses no advantage.

  14. #14
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kynox View Post
    Code:
    enum eTrack
    {
        TRACK_BEASTS        = 0x01,
        TRACK_DRAGONS        = 0x02,
        TRACK_DEMONS        = 0x04,
        TRACK_ELEMENTALS    = 0x08,
        TRACK_GIANTS        = 0x10,
        TRACK_HUMANOIDS        = 0x40,
        TRACK_UNDEAD        = 0x20,
        TRACK_MACHINES        = 0x100,
        TRACK_SLIMES        = 0x200,
        TRACK_CRITTERS        = 0x80,
        TRACK_ALL            = -1,
    
        TRACK_OBJECT_HERBS            = 0x02,
        TRACK_OBJECT_MINERALS        = 0x04,
        TRACK_OBJECT_TREASURE        = 0x20,
        TRACK_OBJECT_ALL            = -1
    };
    To enable a flag, Flags &= TRACK_XX; ( Flags = Flags AND TRACK_XX )
    To disable a flag, Flags &= ~TRACK_XX; ( Flags = Flags AND ( NOT TRACK_XX ) )
    yes that's what i had in mind, so but i cant seem to get it to work when i add 2 of them the result is 0 ie.

    Code:
    case 666:
    
                                int tracking = 0x04;
                                tracking &= 0x20;
    
                                Memory.WriteMemory(hProcess, Memory.ReadUInt(hProcess, (Memory.ReadUInt(hProcess, (Memory.ReadUInt(hProcess,
                        (Memory.ReadUInt(hProcess, 0x0127E014)) + 0x30)) + 0x28)) + 0x08) + 0x576 * 4, tracking);
                                break;
    @Cypher: I dun no hav to do da hukz yet. But in a while maybe, i once did a tramopline for the datetime function in notepad
    Last edited by Nesox; 11-10-2008 at 04:56 AM.

  15. #15
    1337person's Avatar Active Member
    Reputation
    21
    Join Date
    Aug 2007
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    as said above, is this safe to use?
    2+ rep for it

Page 1 of 18 12345 ... LastLast

Similar Threads

  1. Any working tracking hack?
    By hellokill11 in forum WoW Bots Questions & Requests
    Replies: 4
    Last Post: 03-16-2012, 12:31 PM
  2. [Release] PvPTracker - tracking hack for PvP
    By lwyjdgv in forum World of Warcraft Bots and Programs
    Replies: 4
    Last Post: 03-08-2011, 04:11 AM
  3. [Release] See This What Do - Tracking Hack
    By Xcron in forum World of Warcraft Bots and Programs
    Replies: 29
    Last Post: 01-13-2010, 02:18 AM
  4. [Hack] Open Source Track Hack
    By Jadd in forum World of Warcraft Bots and Programs
    Replies: 26
    Last Post: 04-21-2009, 12:29 AM
  5. WoW Track Hack
    By Innit in forum World of Warcraft Bots and Programs
    Replies: 63
    Last Post: 04-15-2008, 11:38 AM
All times are GMT -5. The time now is 07:18 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search