[DFO SPLOITS] Simple AutoIt AutoClicker menu

User Tag List

Results 1 to 2 of 2
  1. #1
    [Royal]'s Avatar Banned
    Reputation
    336
    Join Date
    Mar 2008
    Posts
    694
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [DFO SPLOITS] Simple AutoIt AutoClicker

    Darkfall Autoclicker Acript for AutoIT - Macro That Auto Clicks For You


    Darkfall is a recently released MMO game. As in many other MMOs gathering and crafting mostly consists of pressing the same button over and over at the same spot.

    This can be a bit tedious to say the least, but the Darkfall team recently stated in a post on their forums that it's OK to use macros, as long as you don't go AFK.

    An autoclicking macro will help you with both gathering and crafting in Darkfall, by clicking for you at regular intervals.

    So I guess a lot of folks are asking right now, how does this work? Well I'll give you my solution.

    We'll be using a program called AutoIT. This program sends key/mouse presses to Darkfall. It does not modify the game in any way.

    First you need to download and install AutoIT from here: AutoIt v3 - Automate and Script Windows Tasks - For Free!

    After you have installed AutoIT, create a new text file somewhere on your computer. Name this file something like DarkfallAutoClicker.au3 (the .au3 is important).

    In this file you put the script below. After you have saved it, you should be able to just double-click it to start.

    How to use
    F1: Run / Pause
    F3: Shorter delay
    F4: Longer delay
    F5-F8: Speed 1/2/3/4
    The default speeds for F5-F8 can be set in the script (in milliseconds) and the hotkeys can be changed aswell.

    Should be pretty straightforward.. Here is the script:

    Code:
    ; ----------------------------------------------------
    ;
    ; Darkfall AutoClicker script for AutoIT
    ; 
    ; The script below is released into the public domain
    ; by me, the author 
    ;
    ; http://lostontheintarweb.blogspot.com/
    ;
    ; AutoIT can be found at http://www.autoitscript.com/autoit3/
    ;
    
    
    ; --- Configurable constants ---
    
    ; Default speeds for F4-F8
    Const $speed_1 = 5200
    Const $speed_2 = 10200
    Const $speed_3 = 15200
    Const $speed_4 = 21200
    
    ; Minimum and maximum speed
    ; To avoid nasty stuff like negative speed
    Const $min_speed = 1000
    Const $max_speed = 120000
    
    ; F3-F4 will vary the speed with this amount
    Const $speed_step = 1000
    
    ; Fade time for tray-bubble
    Const $bubble_fade_time = 1000
    
    ; --- Hotkey Definition ---
    ; + is SHIFT ^ for CTRL and ! for ALT
    ; Read more here: http://www.autoitscript.com/autoit3/docs/functions/Send.htm
    HotKeySet("+{F1}", "Toggle")
    
    HotKeySet("+{F3}", "SpeedDown")
    HotKeySet("+{F4}", "SpeedUp")
    
    HotKeySet("+{F5}", "Speed1")
    HotKeySet("+{F6}", "Speed2")
    HotKeySet("+{F7}", "Speed3")
    HotKeySet("+{F8}", "Speed4")
    
    ; --- User configurable variables end here ---
    ; --- Do not edit below unless you know what you are doing ---
    
    
    Global $run = False   ; Runs while true
    Global $speed = $speed_1 ; Default is speed_1
    Global $fade = False  ; After bubble
    Global $fadetime   ; Time bubble starts
    Global $click = False  ; Click-in-progress
    Global $clicktime   ; Time of last click
    
    
    ; Displays tray bubble
    Func Bubble($text)
     TrayTip("Darkfall AutoClicker", $text, 5)
     $fade = True
     $fadetime = TimerInit()
    EndFunc
    
    ; Increase speed
    Func SpeedUp()
     $speed = $speed + $speed_step
     If $speed > $max_speed Then
      $speed = $max_speed
     EndIf
     Bubble(StringFormat("Speed set to: %d", $speed))
    EndFunc
    
    ; Decrease speed
    Func SpeedDown()
     $speed = $speed - $speed_step
     If $speed < $min_speed Then
      $speed = $min_speed
     EndIf
     Bubble(StringFormat("Speed set to: %d", $speed))
    EndFunc
    
    ; Set speed 1
    Func Speed1()
     $speed = $speed_1
     Bubble(StringFormat("Speed set to: %d", $speed))
    EndFunc
    
    ; Set speed 2
    Func Speed2()
     $speed = $speed_2
     Bubble(StringFormat("Speed set to: %d", $speed))
    EndFunc
    
    ; Set speed 3
    Func Speed3()
     $speed = $speed_3
     Bubble(StringFormat("Speed set to: %d", $speed))
    EndFunc
    
    ; Set speed 4
    Func Speed4()
     $speed = $speed_4
     Bubble(StringFormat("Speed set to: %d", $speed))
    EndFunc
    
    ; Toggle run/pause
    Func Toggle()
     $run = NOT $run
     If $run Then
      Bubble(StringFormat("Running at speed: %d", $speed))
      TraySetIcon("explorer.exe",110)
     Else
      Bubble("Paused")
      TraySetIcon("explorer.exe",111)
     EndIf
    EndFunc
    
    ; --- Function definitions end here ---
    ; --- Start of main routine ---
    TraySetIcon("explorer.exe",111)
    Bubble("Darkfall AutoClicker started")
    WinActivate ( "Darkfall Online" ) 
    
    While 1
     ; Fade out bubble now?
     If $fade Then
      If TimerDiff($fadetime) > 1000 Then
       $fade = False
       Bubble("")
      EndIf
     EndIf
     
     ; Run mode?
     If $run Then
      If Not $click Then  ; First click
       WinWaitActive("Darkfall Online")
       MouseClick("left")
       $click = True
       $clicktime = TimerInit()
      Else
       ; Delay has passed, time for new click
       If TimerDiff($clicktime) > $speed Then
        $click = False
       EndIf
      EndIf
     EndIf
    
     Sleep(50) ; IMPORTANT! Don't eat too much CPU
    WEnd
    ; ----------------------------------------------------

    [DFO SPLOITS] Simple AutoIt AutoClicker
  2. #2
    Scrubs's Avatar Contributor
    Reputation
    255
    Join Date
    Aug 2006
    Posts
    507
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Haha very nice jumping on the auto it bot quickly, can't believe they are OK with it, Is that a first for MMO's?
    Oh +rep btw.



Similar Threads

  1. Way to farm gold with a simple autoit bot? [3.3.5a]
    By hrot in forum WoW EMU Questions & Requests
    Replies: 2
    Last Post: 10-18-2014, 08:14 AM
  2. Simple AutoIt script help.
    By Simonzi in forum Diablo 3 Bots Questions & Requests
    Replies: 3
    Last Post: 06-10-2012, 02:29 PM
  3. Need simple autoit script
    By lironf20 in forum Diablo 3 Bots Questions & Requests
    Replies: 0
    Last Post: 06-08-2012, 12:20 PM
  4. simple autoit bot
    By sixbenz in forum MMO Exploits|Hacks
    Replies: 23
    Last Post: 10-06-2008, 08:01 AM
All times are GMT -5. The time now is 09:34 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