Results 1 to 4 of 4
  1. #1
    PapaHarlem's Avatar
    Join Date
    Apr 2019
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    3

    Smile #1 AUTO ATTACK Script! | Best for afking Ships/Towers!

    This script allows you to attack and do your abilities as well as having the option of auto picking up too while you attack!

    You also DO NOT NEED to be tabbed into the game!! This means you can play other games and do other things on your computer with no issues!

    Instructions
    1. Set your Basic Ability's Secondary keybind to M
    2. Set your Primary Ability's Secondary keybind to O
    3. Before starting the attacking, make sure you RENAME TROVE then you proceed accordingly.

    You can change those keybind settings within the script as well if you prefer to use 3 and 4 like others do..

    -- Right now it has the 1 account and the Multiple Accs(8) option. You can add more. The classes added currently are only Boomeranger and Dracolyte.
    -- BUT with a little bit of common sense you yourself can add as many classes that do the same thing. You just gotta add them.

    Code:
    #SingleInstance Force
    #NoEnv
    SetWorkingDir %A_ScriptDir%
    SetBatchLines -1
    
    Gui +AlwaysOnTop
    Gui Add, Button, x96 y80 w80 h40 gButtonReloadScript, Reload Script
    Gui Add, Button, x20 y20 w100 h30 gFirstAccount,  Singular Account
    Gui Add, Button, x150 y20 w100 h30 gSecondAccount, Multiple Accounts
    Gui, Show, w272 h125, AFK CENTRAL
    Return
    
    Gui Add, Button, x200 y100 w106 h23 gFirstAccount, Singular Account
    Gui Add, Button, x300 y100 w106 h23 gSecondAccount, Multiple Accounts
    Gui Add, Button, x248 y120 w106 h23 gButtonReloadScript, Reload Tool
    Gui, Show, w615 h225, AFK Central
    Return
    
    FirstAccount:
    	Gui, New, +AlwaysOnTop
    	Gui Add, GroupBox, x16 y40 w181 h122, Boomeranger
    	Gui Add, GroupBox, x224 y40 w181 h122, Dracolyte
    	Gui Add, Button, x155 y176 w111 h33 gButtonStopActionsOneAcc, Stop Attacking
    	Gui Add, Button, x456 y96 w110 h37 gButtonRenameTrove1, Rename Trove
    	Gui Add, Button, x24 y72 w163 h23 gButtonStartAttackingWithPickUpBR, Attack /w Looting
    	Gui Add, Button, x232 y72 w163 h23 gButtonStartAttackingWithPickUpDraco, Attack /w Looting
    	Gui Add, Button, x24 y120 w163 h23 gButtonStartAttackingWithoutPickUpBR, Attack no Looting
    	Gui Add, Button, x232 y120 w163 h23 gButtonStartAttackingWithoutPickUpDraco, Attack no Looting
    	Gui, Show, w615 h225, Singular Account
    	Return
    
    ButtonStartAttackingWithPickUpBR:
        startedPickup := true
        while(startedPickup){
            ControlSend,,{m down}, Account1AFKCentral
            ControlSend,,{e down}, Account1AFKCentral
            sleep, 5000
            ControlSend,,{e up}, Account1AFKCentral
            ControlSend,,{m up}, Account1AFKCentral
            ControlSend,,{o down}, Account1AFKCentral
            sleep, 500
            ControlSend,,{o up}, Account1AFKCentral
            ControlSend,,{2 down}, Account1AFKCentral
            sleep, 200
            ControlSend,,{2 up}, Account1AFKCentral
    		sleep, 100
        }
    Return
    ButtonStartAttackingWithoutPickUpBR:
        started := true
        while(started){
            ControlSend,,{m down}, Account1AFKCentral
            sleep, 5000
            ControlSend,,{m up}, Account1AFKCentral
            ControlSend,,{o down}, Account1AFKCentral
            sleep, 500
            ControlSend,,{o up}, Account1AFKCentral
            ControlSend,,{2 down}, Account1AFKCentral
            sleep, 200
            ControlSend,,{2 up}, Account1AFKCentral
    		sleep, 100
        }
    Return
    ButtonStartAttackingWithPickUpDraco:
        startedPickup := true
        while(startedPickup){
            ControlSend,, {m down}, Account1AFKCentral
            ControlSend,, {1 down}, Account1AFKCentral
            ControlSend,, {e down}, Account1AFKCentral
            Sleep, 100
            ControlSend,, {1 up}, Account1AFKCentral
            Sleep, 700
            ControlSend,, {2 down}, Account1AFKCentral
            ControlSend,, {e up}, Account1AFKCentral
            Sleep, 100
            ControlSend,, {2 up}, Account1AFKCentral
            ControlSend,, {m up}, Account1AFKCentral
        }
    Return
    ButtonStartAttackingWithoutPickUpDraco:
        started := true
        while(started){
            ControlSend,, {m down}, Account1AFKCentral
            ControlSend,, {1 down}, Account1AFKCentral
            Sleep, 100
            ControlSend,, {1 up}, Account1AFKCentral
            Sleep, 700
            ControlSend,, {2 down}, Account1AFKCentral
            Sleep, 100
            ControlSend,, {2 up}, Account1AFKCentral
            ControlSend,, {m up}, Account1AFKCentral
        }
    Return
    
    ButtonStopActionsOneAcc:
        started := false
        startedPickup := false
        startedJump := false
    Return
    
    ButtonRenameTrove1:
        If (WinExist("Trove") && !WinExist("Account1AFKCentral")){
            WinActivate, Trove
            WinSetTitle, Trove, , %Title%Account1AFKCentral
            Sleep, 5000
        }
    Return
    
    SecondAccount:
    	Gui, New, +AlwaysOnTop
    	Gui Add, GroupBox, x16 y40 w181 h122, Boomeranger
    	Gui Add, GroupBox, x224 y40 w181 h122, Dracolyte
    	Gui Add, Button, x155 y176 w111 h33 gButtonStopActionsAcc2, Stop Attacking
    	Gui Add, Button, x456 y96 w110 h37 gButtonRenameTrove2, Rename Trove
    	Gui Add, Button, x24 y72 w163 h23 gButtonStartAttackingWithPickUpBR2, Attack /w Looting
    	Gui Add, Button, x232 y72 w163 h23 gButtonStartAttackingWithPickUpDraco2, Attack /w Looting
    	Gui Add, Button, x24 y120 w163 h23 gButtonStartAttackingWithoutPickUpBR2, Attack no Looting
    	Gui Add, Button, x232 y120 w163 h23 gButtonStartAttackingWithoutPickUpDraco2, Attack no Looting
    	Gui Tab
    	Gui, Show, w615 h225, Multiple Accounts
    	return
    
    ButtonStartAttackingWithPickUpBR2:
    started := true
    while (started) {
        Loop, 8 {
            ControlSend,, {m down}, MultipleAFKCentral%A_Index%
            ControlSend,, {e down}, MultipleAFKCentral%A_Index%
        }
        sleep 5000
        Loop, 8 {
            ControlSend,, {e up}, MultipleAFKCentral%A_Index%
            ControlSend,, {m up}, MultipleAFKCentral%A_Index%
            ControlSend,, {o down}, MultipleAFKCentral%A_Index%
        }
        sleep 500
        Loop, 8 {
            ControlSend,, {o up}, MultipleAFKCentral%A_Index%
            ControlSend,, {2 down}, MultipleAFKCentral%A_Index%
            ControlSend,, {2 up}, MultipleAFKCentral%A_Index%
        }
        sleep 100
    }
    Return
    ButtonStartAttackingWithoutPickUpBR2:
    started := true
    while (started) {
        Loop, 8 {
            ControlSend,, {m down}, MultipleAFKCentral%A_Index%
        }
        sleep 5000
        Loop, 8 {
            ControlSend,, {m up}, MultipleAFKCentral%A_Index%
            ControlSend,, {o down}, MultipleAFKCentral%A_Index%
        }
        sleep 500
        Loop, 8 {
            ControlSend,, {o up}, MultipleAFKCentral%A_Index%
            ControlSend,, {2 down}, MultipleAFKCentral%A_Index%
            ControlSend,, {2 up}, MultipleAFKCentral%A_Index%
        }
        sleep 100
    }
    Return
    ButtonStartAttackingWithPickUpDraco2:
    started := true
    while (started) {
        Loop, 8 {
            ControlSend,, {1 down}, MultipleAFKCentral%A_Index%
            ControlSend,, {1 down}, MultipleAFKCentral%A_Index%
            ControlSend,, {e down}, MultipleAFKCentral%A_Index%
        }
        sleep 100
        Loop, 8 {
            ControlSend,, {1 up}, MultipleAFKCentral%A_Index%
    	ControlSend,, {1 up}, MultipleAFKCentral%A_Index%
    	ControlSend,, {2 down}, MultipleAFKCentral%A_Index%
        }
        sleep 700
        Loop, 8 {
            ControlSend,, {e up}, MultipleAFKCentral%A_Index%
    	ControlSend,, {2 up}, MultipleAFKCentral%A_Index%
        }
        sleep 100
    }
    Return
    ButtonStartAttackingWithoutPickUpDraco2:
    started := true
    while (started) {
        Loop, 8 {
            ControlSend,, {1 down}, MultipleAFKCentral%A_Index%
            ControlSend,, {1 down}, MultipleAFKCentral%A_Index%
        }
        sleep 100
        Loop, 8 {
            ControlSend,, {1 up}, MultipleAFKCentral%A_Index%
    	ControlSend,, {1 up}, MultipleAFKCentral%A_Index%
    	ControlSend,, {2 down}, MultipleAFKCentral%A_Index%
        }
        sleep 700
        Loop, 8 {
    	ControlSend,, {2 up}, MultipleAFKCentral%A_Index%
        }
        sleep 100
    }
    Return
    
    ButtonStopActionsAcc2:
        started := false
        startedPickup := false
        startedJump := false
    Return
    
    ButtonRenameTrove2:
    Loop, 8 {
        if WinExist("Trove") && !WinExist("MultipleAFKCentral" . A_Index) {
            WinActivate, Trove
            WinSetTitle, Trove, , MultipleAFKCentral%A_Index%
            sleep 1500
        }
    }
    Return
    
    ButtonReloadScript:
    {
        Reload
        IniRead, LoadText, %A_ScriptDir%/%IniFile%, Main, Text
    }
    
    global started := false
    return
    
    GuiClose:
        ExitApp
    return
    Last edited by PapaHarlem; 09-30-2023 at 08:21 PM.

  2. The Following 2 Users Say Thank You to PapaHarlem For This Useful Post:

    3rd (10-07-2023),thechiller1230 (02-28-2024)

  3. #2
    3rd's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    26
    Reputation
    10
    Thanks
    3
    for some reason the character doesn’t attack but only uses skills

  4. #3
    PapaHarlem's Avatar
    Join Date
    Apr 2019
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    3
    Quote Originally Posted by 3rd View Post
    for some reason the character doesn’t attack but only uses skills
    read instructions

  5. #4
    3rd's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    26
    Reputation
    10
    Thanks
    3
    I'm not stupid, I did everything according to the instructions, your software is just crap

Similar Threads

  1. [Request] Need a auto bhop script for cs 1.6 and a aimbot or wallhack that works would be nice.
    By kevman in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 2
    Last Post: 08-13-2014, 01:15 PM
  2. [Help Request] a working RealmRelay auto-ability script for Ninjas and archers
    By KingofSeattle in forum Realm of the Mad God Help & Requests
    Replies: 3
    Last Post: 05-20-2014, 02:02 PM
  3. [Help Request] Auto run script for alienware tact x keyboard
    By Robosky in forum DayZ Help & Requests
    Replies: 0
    Last Post: 09-22-2013, 04:46 PM
  4. A script for afking in 24mans?
    By crashsite in forum Vindictus Help
    Replies: 0
    Last Post: 10-08-2012, 12:39 PM
  5. [Tutorial] Container Ship Glitch (best for red team)
    By DestinSoul in forum WolfTeam Hacks
    Replies: 1
    Last Post: 01-19-2010, 06:36 AM