New Multi Bot menu

User Tag List

Page 3 of 3 FirstFirst 123
Results 31 to 35 of 35
  1. #31
    ArciX^'s Avatar Member
    Reputation
    1
    Join Date
    Oct 2008
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's seems like it's not finished. Sorry.

    New Multi Bot
  2. #32
    tekzunited's Avatar Member
    Reputation
    1
    Join Date
    Oct 2008
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    really nice dude

  3. #33
    InfectedWoW's Avatar Member
    Reputation
    2
    Join Date
    Sep 2008
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by OddZor View Post


    I'm talking morally not legally. If you go and decompile someones work and post it for everyone without even asking for permission you're an ass wipe, no question about it.

    All i can say is You ARE COMPLETELY right,

    His first bot, Who cares if it sucks he put alot of effort into it.

    You people who say he should get better and he stinks, doesnt give him the reason to try to get better and better, you are just making it worse...

    Anywho

    Good job on your first bot, Keep making it better and tweaking it

    And HOw would you feelif someone posted your source code on your Post???
    and talkd shit about your work ??

    Yeah thought so.


  4. #34
    Xarg0's Avatar Member
    Reputation
    61
    Join Date
    Jan 2008
    Posts
    389
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by korknob View Post
    You guys should be more supportive. If you're knocking his bot you should post some source code to help it get better, otherwise just don't reply.

    From Xarg0 at http://www.mmowned.com/forums/wow-me...resses-4.html:
    Code:
    $lvl1Pointer=_ReadProcess($Handle, 0x0127BFFC, "ptr")
    $lvl2Pointer=_ReadProcess($Handle, ($lvl1Pointer+0x30), "ptr")
    $PlayerBase=_ReadProcess($Handle, ($lvl2Pointer+0x28), "ptr")
    From Robske007a:
    Code:
    SetPrivilege ("SeDebugPrivilege", 1)
    
    ;Get the PID & Handle
    Global $wowPID = WinGetProcess("World of Warcraft")
    Global $Handle = _OpenProcess($wowPID, $WMRPROCESS_VM_READ)
    
    ;Read an INT from 0x0127BFFC, add 0x30 - 
    ;Read an INT from this value and add 0x28 - 
    ;This should be the playerbase 
    $playerBase = _ReadProcess($Handle, (_ReadProcess($Handle, 0x0127BFFC, "int")+0x30), "int")+0x28
    
    ;Add 0x7D0 to the playerBase and read a float value from it for the x-coordinate.
    $x=_readProcess($Handle, ($playerBase+0x7D0), "float")
    Read player_base, add 8 to it, then read that address for the player struct. you can read health/mana and a lot other stuff to make the bot a lot smarter, even in autoit.
    Hell, it's so damn easy I didn't even try if it would work, and btw Robs code does it wrong, it wont help any1 in this thread as they can't tell the difference between the working and the wrong code, nor do they know what a pointer is, so it's quite pointless(pointer?pointless? woho! a funny word game ) to post this stuff in here.

    @hackingmac if you don't want to mess with memory reading take a look at PixelSearch and PixelChecksum, along time back I had an autoit bot based on pixel reading, it checked it's health and mana to know if it was time to rest or heal, it spammed TAB while walking around to target enemy units, then it started to spamm spells on that unit, for a meele class you could add a check for the out of range error message with some pixels or pull with a ranged weapon. Still you could code a much better bot by reading information out of WoWs memory, but judging form your source code you should first learn about basical programm flow controlling mechanism.
    Learn how to use If claues, loops and switches, it's very important to do so when you want to programm a bot, because a bot needs to decide on data it reads in whatever manner out of the target programm, if your bot doesn't decide a thing it's not a bot.
    I hacked 127.0.0.1

  5. #35
    WannaBeProgrammer's Avatar Member
    Reputation
    2
    Join Date
    Feb 2009
    Posts
    156
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Clobie7777 View Post
    This way, you can do your whole bot, with substancially smaller code.

    I assume you're a hunter, or possibly a lock. I'll change the bot func according.
    Add in checks/macros and you'll have a decently working bot.
    ;----------------------------------------------------------------
    #Include <Misc.au3>


    Func Bot ()
    WinActivate("World of warcraft")
    Do
    Send ( "{TAB}" )
    Send ( "1" ) ; macro for send pet
    Sleep ( 1500 )
    Send ( "2" ) ;hunters mark
    Sleep ( 1500 )
    Send ( "3" ) ;serpent sting
    Sleep ( 1500 )
    Send ( "4" ) ;multi shot
    Sleep ( 1500 )
    Send ( "5" ) ;serpent sting
    Sleep ( 1500 )
    Send ( "6" ) ;steady shot
    Sleep ( 2000 )
    Send ( "6" ) ;steady shot
    Sleep ( 2000 )
    Send ( "7" ) ;food
    Send ( "8" ) ;drink
    Sleep ( 10000 )
    Until _IsPressed ( "23" )
    EndFunc

    While 1
    Select
    Case _IsPressed ( "24" )
    Bot ()
    Case ProcessExists ( "Explorer.exe" )
    Sleep ( 1 ) ;will sleep ( 1 ) forever, until you call the func. This reduces CPU usage.
    EndSelect
    WEnd
    Thats kinda nice of u to give a example for a good bot to the OP


Page 3 of 3 FirstFirst 123

Similar Threads

  1. [Mac] PocketGnome Multi-Botting!!!!!
    By tarnold in forum World of Warcraft Guides
    Replies: 8
    Last Post: 03-31-2009, 11:26 AM
  2. [Mac] PocketGnome Multi-Botting!!!!!
    By tarnold in forum World of Warcraft Bots and Programs
    Replies: 6
    Last Post: 03-30-2009, 10:14 PM
  3. WoW-Fly New (private) bot Out.
    By Hellson in forum World of Warcraft Bots and Programs
    Replies: 36
    Last Post: 03-26-2009, 08:10 AM
  4. ODW-Kill v2.0 Beta - New Leveling Bot
    By Toxik the Spammer in forum World of Warcraft Bots and Programs
    Replies: 23
    Last Post: 09-28-2008, 02:07 AM
  5. New Free Bot API
    By UnknOwned in forum World of Warcraft Bots and Programs
    Replies: 17
    Last Post: 09-03-2007, 09:37 PM
All times are GMT -5. The time now is 01:09 AM. 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