Maximus's Clickbot (can be used anyware) menu

User Tag List

Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 36
  1. #16
    Maxmaximuss2's Avatar Member
    Reputation
    12
    Join Date
    Sep 2008
    Posts
    246
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    re:

    Originally Posted by TommyT View Post
    nice i suppose
    Thanks as tould I only provide the best service for mmowned .. btw you might can use this in PVP battleground for wow as AFK bot I had posted a AIMbot who helps you to move .. and can detects what color it has to press on then its keep doing it .


    The CyberSpace will cover the future of AutoIT!
    Maxmaximuss2.

    Maximus's Clickbot (can be used anyware)
  2. #17
    Kallblodig's Avatar Contributor
    Reputation
    113
    Join Date
    Dec 2008
    Posts
    129
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Maxmaximuss2, I would gladly co-op on a bot project. But right now Im co-oping with personinquestion with the leveling bot. But I would love to make ex, a improved BG bot. ( Update my Darkangel PvP bot ) and make it XML reading with custom waypoints.

    Pm me if your intressed!

    Mjauuu

  3. #18
    alym6's Avatar Banned
    Reputation
    1
    Join Date
    Jul 2007
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Maxmaximuss2 View Post
    Well you can just pause the bot and then press start whenever you want to ? I'll guess that would be okay then ?

    cheers,


    Maxmaximuss2:wave:
    ty for answer but dont understood i think.
    background mode for work on another windows during autoclicking.
    not possible ?

  4. #19
    Maxmaximuss2's Avatar Member
    Reputation
    12
    Join Date
    Sep 2008
    Posts
    246
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mjauuu View Post
    Maxmaximuss2, I would gladly co-op on a bot project. But right now Im co-oping with personinquestion with the leveling bot. But I would love to make ex, a improved BG bot. ( Update my Darkangel PvP bot ) and make it XML reading with custom waypoints.

    Pm me if your intressed!

    Mjauuu
    Sure I am !
    The CyberSpace will cover the future of AutoIT!
    Maxmaximuss2.

  5. #20
    woozabi10's Avatar Member
    Reputation
    11
    Join Date
    Apr 2009
    Posts
    89
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    any way to make a right clicker for things like buying? instead of like left like to select stuff you know, right click? ect ect

  6. #21
    Maxmaximuss2's Avatar Member
    Reputation
    12
    Join Date
    Sep 2008
    Posts
    246
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    re:

    Originally Posted by woozabi10 View Post
    any way to make a right clicker for things like buying? instead of like left like to select stuff you know, right click? ect ect
    Yea I can make it right click or just post the code for you if you want to ?
    The CyberSpace will cover the future of AutoIT!
    Maxmaximuss2.

  7. #22
    Spaztick's Avatar Member
    Reputation
    1
    Join Date
    Aug 2008
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Maxmaximuss2 View Post
    Yea I can make it right click or just post the code for you if you want to ?
    A right-click option would be great for picking up WSG flags.

  8. #23
    woozabi10's Avatar Member
    Reputation
    11
    Join Date
    Apr 2009
    Posts
    89
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i dont have compiler so make please

  9. #24
    Maxmaximuss2's Avatar Member
    Reputation
    12
    Join Date
    Sep 2008
    Posts
    246
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    re:

    Originally Posted by woozabi10 View Post
    i dont have compiler so make please
    Well I'm not in my summerhouse right now .. but slow down guyes .. I will altso make a new download link for a rightclicker


    Have fun untill we meat again.:wave:
    The CyberSpace will cover the future of AutoIT!
    Maxmaximuss2.

  10. #25
    blackarmfan's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Bleurgh

    I just added a GUI and a right click function to Maxi's script out of pure boredom. Here's the code (btw was gonna add an input box but only had a few min):

    Code:
    #include <GUIConstants.au3>
    
    $Form1 = GUICreate("Maximus's Clickbot", 150, 134, 191, 118)
    $Label1 = GUICtrlCreateLabel("1 sec between clicks, ", 0, 56, 132, 25)
    $Label3 = GUICtrlCreateLabel("F4 for leftclick, f5 for right, f6 for pause, f10 for exit", 8, 72, 124, 41)
    $Label2 = GUICtrlCreateLabel("Maximus's Clickbot of AMAZING Awesomeness", 0, 0, 140, 41)
    *****tState(@SW_SHOW)
    *****tBkColor(0x9999ee)
    
    
    HotKeySet( "{f4}","Left")
    HotKeySet( "{f5}","right")
    HotKeySet( "{f6}","pause")
    HotKeySet( "{f10}","exit2")
    
    While 1
    	$nMsg = GUIGetMsg()
    	Switch $nMsg
    		Case $GUI_EVENT_CLOSE
    			Exit
    
    	EndSwitch
    WEnd
    
    ; I prefer keeping a loop like this through functions instead of ifs and such
    func left()
    	while 1
    		sleep(1000)
    		mouseclick("left")
    	WEnd
    EndFunc
    
    ;right clicking
    func right()
    	while 1
    		sleep(1000)
    		mouseclick("right")
    	WEnd
    EndFunc
    
    ;pause the program
    func pause()
    	while 1
    		sleep(50)
    	WEnd
    EndFunc
    
    ;exit the program.
    func exit2()
    	Exit
    EndFunc


    BTW currently working on a bit similar bot, but instead you program a mouse path for the mouse to go (both left and right click) and when you start the bot it will loop through the waypoints clicking and whatnot.

    Oh and, +Rep for giving me inspiration on the waypoint clicker



    Blackarmfan

  11. #26
    Maxmaximuss2's Avatar Member
    Reputation
    12
    Join Date
    Sep 2008
    Posts
    246
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    re:

    Originally Posted by blackarmfan View Post
    I just added a GUI and a right click function to Maxi's script out of pure boredom. Here's the code (btw was gonna add an input box but only had a few min):

    Code:
    #include <GUIConstants.au3>
    
    $Form1 = GUICreate("Maximus's Clickbot", 150, 134, 191, 118)
    $Label1 = GUICtrlCreateLabel("1 sec between clicks, ", 0, 56, 132, 25)
    $Label3 = GUICtrlCreateLabel("F4 for leftclick, f5 for right, f6 for pause, f10 for exit", 8, 72, 124, 41)
    $Label2 = GUICtrlCreateLabel("Maximus's Clickbot of AMAZING Awesomeness", 0, 0, 140, 41)
    *****tState(@SW_SHOW)
    *****tBkColor(0x9999ee)
    
    
    HotKeySet( "{f4}","Left")
    HotKeySet( "{f5}","right")
    HotKeySet( "{f6}","pause")
    HotKeySet( "{f10}","exit2")
    
    While 1
    	$nMsg = GUIGetMsg()
    	Switch $nMsg
    		Case $GUI_EVENT_CLOSE
    			Exit
    
    	EndSwitch
    WEnd
    
    ; I prefer keeping a loop like this through functions instead of ifs and such
    func left()
    	while 1
    		sleep(1000)
    		mouseclick("left")
    	WEnd
    EndFunc
    
    ;right clicking
    func right()
    	while 1
    		sleep(1000)
    		mouseclick("right")
    	WEnd
    EndFunc
    
    ;pause the program
    func pause()
    	while 1
    		sleep(50)
    	WEnd
    EndFunc
    
    ;exit the program.
    func exit2()
    	Exit
    EndFunc


    BTW currently working on a bit similar bot, but instead you program a mouse path for the mouse to go (both left and right click) and when you start the bot it will loop through the waypoints clicking and whatnot.

    Oh and, +Rep for giving me inspiration on the waypoint clicker



    Blackarmfan
    Thanks for the great feedback Blackarmfan!.

    Well I've been consider to make a PVP bot since i'm going to level my shaman to 80 .. and the PVP for the rest so I get epic gears .


    Anywayes I'll be posting news when I've done it .. altso I've gonna post a download link for a rightclicker of my bot .


    Have a nice day.
    The CyberSpace will cover the future of AutoIT!
    Maxmaximuss2.

  12. #27
    Smeegle's Avatar Member
    Reputation
    1
    Join Date
    Feb 2009
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I will try it out later tonight

  13. #28
    Shadowbrowser's Avatar Member
    Reputation
    12
    Join Date
    Mar 2009
    Posts
    104
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What can it be useful for though?

  14. #29
    Maxmaximuss2's Avatar Member
    Reputation
    12
    Join Date
    Sep 2008
    Posts
    246
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    re:

    Originally Posted by Shadowbrowser View Post
    What can it be useful for though?
    it can be used for eksample in WSG to pick up the flag .. inside wow or anywhere els .

    btw. . I've belive I'm gonna release a new bot very soon .. it would have the abillity to choose what spells I'm gonna use on a monster f.eks every time .. and when it killed the one mob then it automaticly go kill the same mobs every time it targets the mob with the same name.


    Well anywayes cya around !
    The CyberSpace will cover the future of AutoIT!
    Maxmaximuss2.

  15. #30
    Skaarlaw's Avatar Active Member
    Reputation
    38
    Join Date
    Nov 2007
    Posts
    159
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    wtf am i using that for?

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. Priest Mind Control bug - can be used to kill bosses.
    By bobtoe in forum WoW EMU Exploits & Bugs
    Replies: 4
    Last Post: 02-06-2008, 05:12 AM
  2. [Problem] I can't use spells or skills on NPC's i make with ADE.
    By Wheeze201 in forum World of Warcraft Emulator Servers
    Replies: 3
    Last Post: 01-04-2008, 10:39 PM
  3. Can't use GM commands. (Broken)
    By Saridormi in forum World of Warcraft Emulator Servers
    Replies: 6
    Last Post: 10-30-2007, 09:06 AM
  4. 14 rep and can't use search button
    By mafiaboy in forum Community Chat
    Replies: 3
    Last Post: 10-29-2007, 03:08 AM
  5. Can You Use Ascent DB With Any Repack?
    By Frosthowl in forum World of Warcraft Emulator Servers
    Replies: 1
    Last Post: 10-09-2007, 04:36 PM
All times are GMT -5. The time now is 02:10 PM. 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