Color Aimbot, WoW idea/source menu

User Tag List

Results 1 to 14 of 14
  1. #1
    caleb77's Avatar Member
    Reputation
    7
    Join Date
    Aug 2007
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Color Aimbot, WoW idea/source

    Make sure you keep reading, it's not just a CS Aim bot

    I was really bored last night and made a simple little script, for CS.
    I found a CS skin for the players head, which made it a pure red color.
    So I got to thinking, and made this color aim bot.

    Now... for the WoW part of this.

    I'm not too experienced with model editing, but if it's possible to change the look of your bobber, to one solid color, then you could turn this in to a pretty nifty fishing bot. 6):

    (otherwise, it might still work with just the normal bobber color if you can click it and there is no other colors with the same color code on your screen)


    (Obviously to make a fully afk-able fishing bot, you would have to add a loop and tell it to click when the color changes from the coordinate, etc.)

    F1-F11, HOME, END, etc. seem to work perfectly as hot keys.
    Letters and numbers worked for a few of my friends, but for me it did not, not too sure why, though.:yuck:

    I might take out the hotkeys and use _IsPressed instead, but as I said, I was bored and whipped it up pretty fast last night.

    Anyway, here is my source.
    The actual core part:
    Code:
    ;Reads the color hotkeys from the ini file.
    $GetColor = IniRead("Color.ini", "HotKeys", "GetColor", "")
    $ClickColor = IniRead("Color.ini", "HotKeys", "ClickColor", "")
    
    ;Sets hotkeys
    While 1
        HotKeySet ("{"&$GetColor&"}", "GetColor")
        HotKeySet ("{"&$ClickColor&"}", "ClickColor")
    WEnd
    
    ;The color it clicks is absolute
    Opt("PixelCoordMode", 1)
    
    
    
    Func GetColor()
    ;Gets mouse coordinates.
        $Coords = MouseGetPos()
    ;Gets color of the pixel at mouse coordinates.
        $Color = PixelGetColor($Coords[0], $Coords[1])
    ;Writes the color to an ini file.
        IniWrite("Color.ini", "Target", "Color", $Color)
    EndFunc
    
    Func ClickColor()
    ;Reads the color from the ini file.
        $Color = IniRead("Color.ini", "Target", "Color", "")
    ;Pixel search for the color.
        $Click = PixelSearch (0, 0, @DesktopWidth, @DesktopHeight, $Color)
    ;If successful, Clicks the first instance of that color
        If @error = 0 Then
        MouseClick ("left", $Click[0], $Click[1], 1, 0)
    ;If unsuccessful, sleeps for 0ms, (prevents crashing).
    ElseIf @Error = 1 Then 
        Sleep (0)
    EndIf
    EndFunc



    Next is this simple "setup" I made to go with it:

    Code:
    MsgBox(0, "Reminder", "When you get asked for hotkeys," & @CRLF & "use things such as: F1-F8, HOME, etc." & @CRLF & "You may use many more, though.")
    $GetColor = InputBox("GetColor Hotkey", "Choose your hotkey for" & @CRLF & "Getting your Color")
    $ClickColor = InputBox("ClickColor Hotkey", "Choose your hotkey for" & @CRLF & "Clicking your Target color.")
    
    IniWrite("Color.ini", "HotKeys", "GetColor", $GetColor)
    IniWrite("Color.ini", "HotKeys", "ClickColor", $ClickColor)
    
    MsgBox(0, "Success!", "You may now start using your new Color Aimbot!")


    And last but not least, the INI file:

    Code:
    [HotKeys]
    GetColor=
    ClickColor=
    
    [Target]
    Color=


    P.S. Any model editor who can make a solid red, solid blue bobber, etc. should pst me.

    Thanks to all who took the time to give this a look! :wave:

    Color Aimbot, WoW idea/source
  2. #2
    Marlo's Avatar Banned
    Reputation
    84
    Join Date
    Jul 2006
    Posts
    2,453
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Color Aimbot, WoW idea/source

    Im pretty sure this has already been done

  3. #3
    caleb77's Avatar Member
    Reputation
    7
    Join Date
    Aug 2007
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Color Aimbot, WoW idea/source

    Originally Posted by Marlo View Post
    Im pretty sure this has already been done
    Awe, I know there's been fishing bots coordinated with autoit by color, but I wanted to make my own, and I figured I could use my little cs program to do it

    and this "Site n00b.." is getting to me :P
    Last edited by caleb77; 10-30-2007 at 10:03 AM.

  4. #4
    Flying Piggy's Avatar Banned
    Reputation
    1169
    Join Date
    Jan 2007
    Posts
    2,286
    Thanks G/R
    0/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Color Aimbot, WoW idea/source

    I like the idea, but model editing is getting nerfed bad so don't make the bot just yet ; )
    +rep for sharing.

  5. #5
    caleb77's Avatar Member
    Reputation
    7
    Join Date
    Aug 2007
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Color Aimbot, WoW idea/source

    Originally Posted by Flying Piggy View Post
    I like the idea, but model editing is getting nerfed bad so don't make the bot just yet ; )
    +rep for sharing.

    True, and thanks for the rep!

  6. #6
    Claes's Avatar Member
    Reputation
    8
    Join Date
    Aug 2006
    Posts
    157
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Color Aimbot, WoW idea/source

    How's model editing getting nerfed? I haven't heard anything about it.

  7. #7
    Sallix's Avatar Member
    Reputation
    19
    Join Date
    Mar 2007
    Posts
    340
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Color Aimbot, WoW idea/source

    Good idea +rep

    also most servers on CS will ban you for it :\ Well IF they find out

    Where's your GM now?

  8. #8
    caleb77's Avatar Member
    Reputation
    7
    Join Date
    Aug 2007
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Color Aimbot, WoW idea/source

    Originally Posted by Sallix View Post
    also most servers on CS will ban you for it : Well IF they find out
    Yeah true, if there's no spectators you can use it for the first 1-2 kills, and then play the rest legitimately. 6):

    That's usually what I do, because if no ones watching.. you can't really get banned unless they say "okay, he's 100/5, wtf.." lol


    On the contrary, thanks for the rep!

  9. #9
    Marlo's Avatar Banned
    Reputation
    84
    Join Date
    Jul 2006
    Posts
    2,453
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Color Aimbot, WoW idea/source

    first 2 kills? lol i went a whole 3 hours before someone said "wtf he aimed for that guys foot and shot him in the face"

  10. #10
    caleb77's Avatar Member
    Reputation
    7
    Join Date
    Aug 2007
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Color Aimbot, WoW idea/source

    Originally Posted by Marlo View Post
    first 2 kills? lol i went a whole 3 hours before someone said "wtf he aimed for that guys foot and shot him in the face"

    lol!
    I meant the first 1-2 of every round, but that's hilarious :P

  11. #11
    .Baine.'s Avatar Active Member
    Reputation
    19
    Join Date
    Apr 2007
    Posts
    138
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Color Aimbot, WoW idea/source

    Originally Posted by Marlo View Post
    first 2 kills? lol i went a whole 3 hours before someone said "wtf he aimed for that guys foot and shot him in the face"
    lol im almost shat my pants when i heard that

  12. #12
    lopolop's Avatar Member
    Reputation
    49
    Join Date
    May 2006
    Posts
    124
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Color Aimbot, WoW idea/source

    i used to use a sick aimbot for CSS i was gonna release a mad cool one, then i stopped playing css and BAM it works SOOO slowly idk why it sucks

  13. #13
    wondoman's Avatar Member
    Reputation
    4
    Join Date
    Aug 2006
    Posts
    51
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Color Aimbot, WoW idea/source

    sounds pretty doable
    XD METAL :icon_headbang: HEAD

  14. #14
    IBeSeeN's Avatar Member
    Reputation
    1
    Join Date
    May 2007
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Color Aimbot, WoW idea/source

    sounds cool ... i had a friend on cs back in the day and he used mad hacks in regular servers but they never banned him and i used a wall hack and bam.. gone lol they just said he was really good.... psh my luck eh

Similar Threads

  1. [RELEASE] Core of Time WoW Emulator Source Code
    By CoolManBob in forum World of Warcraft Emulator Servers
    Replies: 21
    Last Post: 02-04-2008, 11:22 PM
  2. WoW armory source code
    By seizure507 in forum WoW Scam Prevention
    Replies: 23
    Last Post: 01-04-2008, 03:00 AM
  3. How do i change text color in wow???
    By Coffzor in forum World of Warcraft General
    Replies: 1
    Last Post: 11-04-2007, 03:50 PM
  4. WoW Color Hack WoW Color Hack (Use color-codes in text)
    By AlexM in forum World of Warcraft Bots and Programs
    Replies: 34
    Last Post: 08-24-2007, 12:42 PM
  5. WoW! thing source code
    By Relz in forum World of Warcraft Bots and Programs
    Replies: 13
    Last Post: 05-15-2007, 03:55 PM
All times are GMT -5. The time now is 11:51 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