Results 1 to 5 of 5
  1. #1
    davidx90's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    48
    Reputation
    10
    Thanks
    5
    My Mood
    Angelic

    LF Anti AFK AKH script

    Im looking for WORKING anti afk logout script. Anyone? :3

  2. #2
    tlfxtoskaman's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    167
    Reputation
    10
    Thanks
    391
    Use the 7sFishBot

    Or
    Make a simple script with a small random time and send a hotkey to the game

    Or
    If you don't want to learn .au3/.ahk, you can download MacroRecorder (for nubs xD)
    Last edited by tlfxtoskaman; 08-28-2015 at 03:57 PM.

  3. #3
    Yemiez's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    Sweden
    Posts
    2,566
    Reputation
    731
    Thanks
    16,280
    My Mood
    Devilish
    @davidx90 here you go simple anti-afk (just presses w-s-a-d at random intervals), game must be opened and be focused.

    Look on console for help.

    You may need this to run the .exe (if you get missing .dll's error then download this):
    C++ Redistributable for Visual Studio 2015


    Virusscans incase you're worried:
    Jotti
    Virustotal
    <b>Downloadable Files</b> Downloadable Files
    Last edited by Yemiez; 08-28-2015 at 04:50 PM.

  4. The Following User Says Thank You to Yemiez For This Useful Post:

    cgforme (06-12-2023)

  5. #4
    reppin's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    1,070
    Reputation
    17
    Thanks
    5,365
    My Mood
    Dead
    Something a little more simple. You will need autohotkey for this. google to get it.


    Just save the script below to a file and name it afk.ahk
    If you have autohotkey installed just compile it or run it. Might need to be ran as admin.

    Keys are f1 to start f1 to stop. You will hear one ding when you start and hear 2 when you stop.


    What it does is opens bag every 60 seconds. Feel free to change the lines between "AfkTimer:" and "return" on the vary bottom to what ever you wish. If you want to add a more random feeling timer add this

    Code:
    Random, rand, 100, 2000
    sleep %rand%
    anywhere in the same place at the bottom above return or below AfkTimer:. It will add a .1 to 2second delay it is random.

    If you wish it to do something else and you don't understand just pm me or quote me here I will read it.


    Code:
    #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
    ; #Warn  ; Enable warnings to assist with detecting common errors.
    SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
    SetKeyDelay 10,50
    
    AfkTimer = off
    
    
    
    F1::
    		If AfkTimer = off
    			{
    				AfkTimer = on
    				SetTimer, AfkTimer, 60000
    				Ticks := 0
    				SoundPlay, %A_WinDir%\Media\Windows Ding.wav
    			} else 	If AfkTimer = on
    			{
    
    			  AfkTimer = off
    			  SetTimer, AfkTimer, Off
    		  	SoundPlay, %A_WinDir%\Media\Windows Ding.wav
            sleep 100
            SoundPlay, %A_WinDir%\Media\Windows Ding.wav
    			}
    return
    
    
    AfkTimer:
     Send b
    return

    oh forgot to say that you need to have trove active for this to work. Sorry. If you want to be able to have it running in the background I can figure it out if you like but would take a little more time.
    Last edited by reppin; 08-28-2015 at 06:57 PM.
    Like what I do? Well feel free to donate to show your love.


  6. #5
    tlfxtoskaman's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    167
    Reputation
    10
    Thanks
    391
    Nice
    For others ppl, don't miss to always use random time or you will get kicked ^^

Similar Threads

  1. [Release] Anti AFK Working In Background Script
    By die254 in forum Trove Hacks & Cheats
    Replies: 7
    Last Post: 07-25-2015, 04:32 PM
  2. [Release] Endless Charge Anti-Afk Script
    By dirtyzerg in forum Dragon Nest Hacks & Cheats
    Replies: 58
    Last Post: 08-31-2012, 09:10 AM
  3. [Detected] Inactive Window Anti-AFK script
    By mrkiller222 in forum Dragon Nest Hacks & Cheats
    Replies: 23
    Last Post: 04-30-2012, 08:01 PM
  4. Inactive Window Anti-AFK script.
    By mrkiller222 in forum Dragon Nest Selling / Trading / Buying
    Replies: 0
    Last Post: 12-21-2011, 09:29 AM
  5. [Request] Anti AFK Hack For WarRock
    By oriav18 in forum WarRock - International Hacks
    Replies: 4
    Last Post: 03-16-2010, 02:00 PM