[Lbot] Bot source code for wow 3.0.9 menu

User Tag List

Page 8 of 13 FirstFirst ... 456789101112 ... LastLast
Results 106 to 120 of 182
  1. #106
    blackjoop's Avatar Member
    Reputation
    1
    Join Date
    Apr 2009
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Azzie2k8 View Post
    Okay since there seem to be alot of people that are unable to read multiple posts I will sum this up. I think that is all to update offsets. Ofc next patch you will be in the same situation again so learn how to get Offsets. btw I don't say I can ^^ big thanks to Robske.
    Thx for the summing ! Well done !

    Edit: But yeah a community version would be nice ! Im stuck atm, but im keep on trying

    [Lbot] Bot source code for wow 3.0.9
  2. #107
    morgalis's Avatar Member
    Reputation
    1
    Join Date
    Mar 2009
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    16:58: Quick check of profile complete, syntax ok
    16:58: Starting the bot
    16:58: Move 9396931,28yards in current direction

    loaded an profile where is standing on , get this above

  3. #108
    HellDoG's Avatar Member
    Reputation
    1
    Join Date
    Oct 2007
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    18:34: ---- Running WoW as Gebruiker ----
    18:34: ---- Wow started ----
    18:34: ---- Found process but could not attach, please login ----

    im totallty clueless now :x
    Last edited by HellDoG; 05-08-2009 at 11:35 AM.

  4. #109
    iamyour41's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If you can't figure out copypasta, don't even bother messing with the bot.

  5. #110
    Azzie2k8's Avatar Member
    Reputation
    11
    Join Date
    Apr 2009
    Posts
    190
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by morgalis View Post
    16:58: Quick check of profile complete, syntax ok
    16:58: Starting the bot
    16:58: Move 9396931,28yards in current direction

    loaded an profile where is standing on , get this above
    it is very likely that you didn't update the x or y position offsets
    Last edited by Azzie2k8; 05-08-2009 at 12:48 PM.

  6. #111
    inthisriver's Avatar Member
    Reputation
    18
    Join Date
    Aug 2007
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by iamyour41 View Post
    If you can't figure out copypasta, don't even bother messing with the bot.
    MAD TRUF!
    if you're having trouble updating the offsets just wait til you run into some of the bugs
    Omaster listed a few of the most annoying ones.
    the bot also doesn't alert you when you've been whispered or when players are nearby..
    if your just copy/pasting, this bot will probably do more harm than good for you

    but Azzie, if you want to run it in VMWare just make sure you copy the contents of the bin/debug folder to the bin/Release folder then rebuild
    Also make sure you reload your profile after you've transferred over to the VM, if the profile isnt valid and you hit start botting it crashes

    If anyone was having trouble detecting buffs on mobs, try this:

    Add this code to GUnit.cs:
    Code:
    public Boolean HasAura(UInt32 TargetToCheck, int BuffToCheck)
            {
    
                UInt32 Buff = 1;
    
                UInt32 Address = TargetToCheck + 0xEBC;
    
                while (Buff != 0)
                {
                    Buff = Memory.ReadUInt(Address);
    
                    if (Buff == BuffToCheck)
                        return true;
    
                    Address += 0x4;
                }
                return false;
            }
    Then, to actually detect the buff you do something like this in your combat routine or w/e you need it:
    Code:
    if(!Target.HasAura(Target.ObjectPointer, 11699)) // if target doesn't have buff
    {
    do this
    }
    the second paramater you pass(BuffToCheck) is the spellid, you can get it from thottbot
    Credit goes to Thermm for the find buff code, I just wanted to explain how to implement it in this bot
    Last edited by inthisriver; 05-08-2009 at 01:29 PM.

  7. #112
    Omaster's Avatar Member
    Reputation
    6
    Join Date
    Sep 2007
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    BTW River, I couldnt catch you on AIM to tell you yet, but it also works for *some* player buffs. I only tested a few, but so far Thorns and MotW works, but Cat Form for example doesnt.

  8. #113
    Azzie2k8's Avatar Member
    Reputation
    11
    Join Date
    Apr 2009
    Posts
    190
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Okay. We (Haxlol & me) opened up forums for maintaining and developing LBot.

    We have the permission from Naa to do so.

    Anyone that is interested is welcome.

    www.kjapt.net -- The LBot Community Forums

    Azzie2k8

  9. #114
    inthisriver's Avatar Member
    Reputation
    18
    Join Date
    Aug 2007
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Azzie2k8 View Post
    Okay. We (Haxlol & me) opened up forums for maintaining and developing LBot.

    We have the permission from Naa to do so.

    Anyone that is interested is welcome.

    www.kjapt.net -- The LBot Community Forums

    Azzie2k8
    Are you planning on releasing a "community version"?
    I got a feeling thats a bad idea, the source code is easily attainable.
    So if this bot gets big and blizz decides they want to detect it, wouldn't that be rather easy since they could get the source code?
    Last edited by inthisriver; 05-08-2009 at 10:15 PM.

  10. #115
    Azzie2k8's Avatar Member
    Reputation
    11
    Join Date
    Apr 2009
    Posts
    190
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by inthisriver View Post
    Are you planning on releasing a "community version"?
    I got a feeling thats a bad idea, the source code is easily attainable.
    So if this bot gets big and blizz decides they want to detect it, wouldn't that be rather easy since they could get the source code?
    well you always have to remember that blizz is really big. So unless this becomes over 500 members (which I highly doubt) we should be fine.

    But maybe I am wrong there.

    Azzie2k8

  11. #116
    naa's Avatar Contributor
    Reputation
    100
    Join Date
    Oct 2006
    Posts
    63
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by inthisriver View Post
    Are you planning on releasing a "community version"?
    I got a feeling thats a bad idea, the source code is easily attainable.
    So if this bot gets big and blizz decides they want to detect it, wouldn't that be rather easy since they could get the source code?
    Now i do not pretend to know anything about warden but as i see it, it really does not matter if they got the source code or not.
    The bot uses guest account - like zolo, pirox etc and this would be easy to figure out without the source code to, so i don't think having the source code makes it easier to detect this bot, the only thing they will see is random window naming and user account mode as anti detection.
    So unless you develop some kind of secret anti warden shield i do not think i matters if they got the source for the bot.

    Azzie2k8 good luck with the community
    Last edited by naa; 05-09-2009 at 02:17 AM.

  12. #117
    Azzie2k8's Avatar Member
    Reputation
    11
    Join Date
    Apr 2009
    Posts
    190
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by naa View Post
    Now i do not pretend to know anything about warden but as i see it, it really does not matter if they got the source code or not. The bot uses guest account - like zolo, pirox etc and this would be easy to figure out without the source code to. So unless you develop some kind of secret anti warden shield i do not think i matters if they got the source for the bot.

    Azzie2k8 good luck with the community
    Yes you maybe right but as Hamut (I think it was him) stated on the glider forums it really is not the best protection.

    Blizzard is big enough to figure out how detect this bot. Of that I am sure but atm I doubt they would spend resources on this exact bot.

    Thanks for the good words

    Azzie2k8
    Last edited by Azzie2k8; 05-09-2009 at 02:20 AM.

  13. #118
    Omaster's Avatar Member
    Reputation
    6
    Join Date
    Sep 2007
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    As Cypher said the other day:
    [16:14] <Cypherjb> guest mode is not warden proteection. glider got detected simply becaue it ran WoW with restricted privileges. thats effectively what runas-guest does
    LBot has virtually no protection from warden, but seeing as it doesnt inject and has a tiny userbase atm, I doubt Blizzard would do much about it.

    If it turns into a free respectable bot however, be sure every person and his dog would be using it.

    I'm still on the fence about offering a free, updated version of the bot to people who can contribute nothing. Especially as once Blizzard does decide they want to shut it down via warden, theres not much we can do about it.

  14. #119
    yannickwaem's Avatar Member
    Reputation
    1
    Join Date
    Mar 2009
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how work the pvp mode ?

  15. #120
    Hawker's Avatar Active Member
    Reputation
    55
    Join Date
    Jan 2009
    Posts
    214
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Omaster View Post
    As Cypher said the other day:


    LBot has virtually no protection from warden, but seeing as it doesnt inject and has a tiny userbase atm, I doubt Blizzard would do much about it.

    If it turns into a free respectable bot however, be sure every person and his dog would be using it.

    I'm still on the fence about offering a free, updated version of the bot to people who can contribute nothing. Especially as once Blizzard does decide they want to shut it down via warden, theres not much we can do about it.
    EDIT: the addon is only for pvp so I was wrong about this.

    Warden won't detect this. Before Warden starts, a list of addons is sent to the Blizzard servers. This bot depends on "my_addon" - if Blizzard decide to go after it, all users of "my_addon" will be banned.

    Same thing happened to PVPBot users when they depended on ahelper.

    In short, if it works for you and you like it, don't release a working version. Any bot that depends on addons is very easily detected.
    Last edited by Hawker; 05-09-2009 at 09:28 AM.

Page 8 of 13 FirstFirst ... 456789101112 ... LastLast

Similar Threads

  1. [Hack] / [Bot] 1.12.1 WoW Bot Source Code
    By Corthezz in forum WoW Memory Editing
    Replies: 51
    Last Post: 02-04-2017, 01:12 PM
  2. want to buy a source code for ESO bot written with C++ , not script .
    By cute_star in forum Elder Scrolls Online General
    Replies: 0
    Last Post: 04-21-2014, 09:25 AM
  3. [Selling] 2 Honorbuddy Sessions (2 seperate bot codes) for WoW Gold
    By iPwnedUDude in forum World of Warcraft Buy Sell Trade
    Replies: 0
    Last Post: 05-24-2013, 01:44 AM
  4. [Bot:Source] Acidic Bot Source Code
    By =sinister= in forum World of Warcraft Bots and Programs
    Replies: 10
    Last Post: 07-03-2006, 05:38 PM
All times are GMT -5. The time now is 12:32 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