Autoclickers

Discussion in 'Archive (Suggestion and Feedback)' started by Fousicek, Apr 6, 2016.

  1. Fousicek

    Fousicek Well-Known Member

    Messages:
    359
    Likes Received:
    15
    Local Time:
    10:21 PM
    So my question is.

    Are autoclickers banned to use ?

    If yes: I dont want ot destroy my mouse bcs i cant use autoclicker for some purperses.

    If no: Can some1 explain to me why 10 autoclickers i tryed to use is not working ?
     
  2. Slind

    Slind Founder

    Messages:
    8,332
    Likes Received:
    3,018
    Local Time:
    10:21 PM
    as long as they aren't used to bypass the afk kick or other server functions, its not a problem.
    Autohotkey would be the "professional" choice.
     
  3. Fousicek

    Fousicek Well-Known Member

    Messages:
    359
    Likes Received:
    15
    Local Time:
    10:21 PM
    ok bcs i want to use it to kill mobs from spawner and i hope that autohotkey is able to work with dual monitors :-D

    Thx[DOUBLEPOST=1459966623,1459960497][/DOUBLEPOST]Thank you for you answer slind. Now i would like to know why my script is not working at all. Because i think it should be farly easy to use.

    here it is.
    Code:
    #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
    ; #Warn  ; Enable warnings to assist with detecting common errors.
    SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
    SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
    
    #IfWinActive, Minecraft
    
    
    !f5::
    	SetTimer Rapid_Click, 100
    	toggle3 := !toggle3
    
    Rapid_Click:
    	if (!toggle3)
    		return
    	SendInput {LButton Down}
    	sleep, 5
    	SendInput {LButton Up}
    return
     
  4. Slind

    Slind Founder

    Messages:
    8,332
    Likes Received:
    3,018
    Local Time:
    10:21 PM
    you might want to look through the autohotkey forum there are a lot of autoclicker scripts already.
     
  5. Fousicek

    Fousicek Well-Known Member

    Messages:
    359
    Likes Received:
    15
    Local Time:
    10:21 PM
    I did look and already tryed few of them and no1 is working. So you dont have any anti autoclicker on server do you ?
     
  6. Slind

    Slind Founder

    Messages:
    8,332
    Likes Received:
    3,018
    Local Time:
    10:21 PM
    No we don't. They should be working.
     
  7. Fousicek

    Fousicek Well-Known Member

    Messages:
    359
    Likes Received:
    15
    Local Time:
    10:21 PM
    Sorry finaly figured it out...... i hve to run is as administrator.

    Thx and closing as done.
     

Share This Page