[OpenSource] WoW Bot Project C++ menu

User Tag List

Page 2 of 2 FirstFirst 12
Results 16 to 28 of 28
  1. #16
    Vragoth's Avatar Established Member
    Reputation
    55
    Join Date
    Nov 2008
    Posts
    422
    Thanks G/R
    5/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DarkLinux View Post
    This looks like fun I would use a Hook as I have not seen Blizzard attempt to detect bots in a long time... But it would be fun to try and do it out of process... +rep
    I would rather be safe then sorry.
    Hooking may be the easiest and fastest way to do it.
    Not hooking may take longer and more work but it'll be worth it in the end.

    [OpenSource] WoW Bot Project C++
  2. #17
    ejt's Avatar Contributor
    Reputation
    210
    Join Date
    Mar 2008
    Posts
    166
    Thanks G/R
    3/112
    Trade Feedback
    0 (0%)
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Vragoth View Post
    I would rather be safe then sorry.
    Hooking may be the easiest and fastest way to do it.
    Not hooking may take longer and more work but it'll be worth it in the end.
    Agreed. Now could we please stop taling about hooking in this thread?

    There are alot of pros and cons with hooking compared to out-of-process for sure, but in this code there is no hooking and probably never will be and the simple reason for that is that its to easy to detect if Blizzard decide the want to start banning the software. If you want to do in-process hooking you should do either of two options: (a) keep the project a secret and only release to the people you trust (including closed-source) or (b) develop a great anti-warden protection and keep that closed-source.

    Glider used hooking (with a very good warden protection) afaik, and look at how that turned out. HonorBuddy uses out-of-process and still kicking.

    For those of you waiting for an update, I've been out of town for a few days but will be picking up the development again.

  3. #18
    Thongs's Avatar Member
    Reputation
    10
    Join Date
    Oct 2006
    Posts
    51
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    IIRC, isn't it the other way around - Glider was OOP and HonorBuddy is in-process?

  4. #19
    ~Unknown~'s Avatar Contributor
    Reputation
    193
    Join Date
    Jan 2009
    Posts
    211
    Thanks G/R
    0/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ejt View Post
    Agreed. Now could we please stop taling about hooking in this thread?

    There are alot of pros and cons with hooking compared to out-of-process for sure, but in this code there is no hooking and probably never will be and the simple reason for that is that its to easy to detect if Blizzard decide the want to start banning the software. If you want to do in-process hooking you should do either of two options: (a) keep the project a secret and only release to the people you trust (including closed-source) or (b) develop a great anti-warden protection and keep that closed-source.

    Glider used hooking (with a very good warden protection) afaik, and look at how that turned out. HonorBuddy uses out-of-process and still kicking.

    For those of you waiting for an update, I've been out of town for a few days but will be picking up the development again.
    Glider was sued in court. Honorbuddy I know for a fact is in-process. Both of these bots have had banwaves. Not discouraging your choice to be OOP, but don't just give reasons that don't make any sense at all.

  5. #20
    NewNerr's Avatar Member
    Reputation
    1
    Join Date
    Jun 2011
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi,
    It seems that I cant download it with SVN, could you check it?
    Thanks

  6. #21
    nsfnd's Avatar Member
    Reputation
    1
    Join Date
    Nov 2006
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi,
    In WoWLocalPlayer.cpp
    This
    Code:
    return Mem.Read<int>(Descriptors::PLAYER_FIELD_XP);
    should be like this.(From [[pBase+08] + 0x477 * 4]
    Code:
    return Mem.Read<int>(Mem.Read<unsigned int>(ObjectPointer + Descriptors::DescriptorOffset)+  Descriptors::PLAYER_FIELD_XP*Descriptors::DescriptorMulti);

  7. #22
    hamburger12's Avatar Contributor CoreCoins Purchaser
    Reputation
    87
    Join Date
    Jan 2010
    Posts
    297
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Haha did you remember Pirox? Also that bot got a Banwave and it was passiv ;-) so it's the way you solve your stuff and if you use the luascripting without injection its may easyer to detect the bot, if you don't use the right way to get the data ;-)

  8. #23
    DarkLinux's Avatar Former Staff
    CoreCoins Purchaser Authenticator enabled
    Reputation
    1627
    Join Date
    May 2010
    Posts
    1,846
    Thanks G/R
    193/539
    Trade Feedback
    16 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    The ban wave was from an archaeology script that even the devs new was not safe...

  9. #24
    CreativeXtent's Avatar Moderator Authenticator enabled
    Reputation
    581
    Join Date
    Jun 2011
    Posts
    1,601
    Thanks G/R
    246/149
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    where is the dl for this?
    "the true wow experience is Maclone"

  10. #25
    firepong's Avatar Elite User
    Reputation
    384
    Join Date
    Jan 2008
    Posts
    955
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by CreativeXtent View Post
    where is the dl for this?
    Read about 75% down the first post and you will see a SVN link. The only way to get it right now is to download through SVN.

    P.S. I'm slowly converting this over to C# and making it use GreyMagic instead of the way it's working right now. Got a few things working, but it's going slow lol

  11. #26
    gxavier's Avatar Member
    Reputation
    1
    Join Date
    Mar 2013
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great work ejt!

    But did you stop working on this great project?

    Will there be updates in the future (5.2)?

  12. #27
    firepong's Avatar Elite User
    Reputation
    384
    Join Date
    Jan 2008
    Posts
    955
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by gxavier View Post
    Great work ejt!

    But did you stop working on this great project?

    Will there be updates in the future (5.2)?
    All you have to do is grab the updated Descriptors and Offsets from the latest Info Dump thread and punch them in and recompile it. I did it and it works just fine. Make sure you add in the Descriptors that are new and remove the old ones as well as going through the code to make sure that it is still calling the right things. Other than what I just said, everything else is the same.

  13. #28
    gxavier's Avatar Member
    Reputation
    1
    Join Date
    Mar 2013
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    All you have to do is grab the updated Descriptors and Offsets from the latest Info Dump thread and punch them in and recompile it. I did it and it works just fine. Make sure you add in the Descriptors that are new and remove the old ones as well as going through the code to make sure that it is still calling the right things. Other than what I just said, everything else is the same.
    Thank you firepong - it works!

    But ejt said that he will add some new functionality.

    So will you extend this great project in the future, ejt?

Page 2 of 2 FirstFirst 12

Similar Threads

  1. Project: WoW Bot
    By Kallblodig in forum World of Warcraft General
    Replies: 2
    Last Post: 08-08-2009, 07:48 AM
  2. WoW bot program. NOT wow glider
    By Disphotic in forum World of Warcraft General
    Replies: 3
    Last Post: 10-17-2006, 12:39 PM
  3. WoW!Dupe Project
    By =sinister= in forum World of Warcraft General
    Replies: 19
    Last Post: 08-28-2006, 09:04 PM
  4. [WoW Bot] WoW Glider Full Version 0.6.8
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 39
    Last Post: 05-08-2006, 12:15 AM
  5. World of Warcraft WoW!Bot (GetALifeBot) 0.61 for WoW 1.9.4 + FishBot
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 43
    Last Post: 04-18-2006, 04:55 AM
All times are GMT -5. The time now is 08:45 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