Rift AutoHotkey Script menu

User Tag List

Results 1 to 13 of 13
  1. #1
    a73k's Avatar Corporal
    Reputation
    1
    Join Date
    Jan 2011
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Rift AutoHotkey Script

    Working as of 4/20/2011

    Just a basic script i threw together using AutoHotkey, it works pretty well.

    $1::
    While GetKeyState("1","p"){
    Send 1
    Sleep 100
    }
    return

    $2::
    While GetKeyState("2","p"){
    Send 2
    Sleep 100
    }
    return
    $3::
    While GetKeyState("3","p"){
    Send 3
    Sleep 100
    }
    return
    $4::
    While GetKeyState("4","p"){
    Send 4
    Sleep 100
    }
    return
    $5::
    While GetKeyState("5","p"){
    Send 5
    Sleep 100
    }
    return
    $6::
    While GetKeyState("6","p"){
    Send 6
    Sleep 100
    }
    return
    $7::
    While GetKeyState("7","p"){
    Send 7
    Sleep 100
    }
    return
    $8::
    While GetKeyState("8","p"){
    Send 8
    Sleep 100
    }
    return
    $9::
    While GetKeyState("9","p"){
    Send 9
    Sleep 100
    }
    return
    $0::
    While GetKeyState("0","p"){
    Send 0
    Sleep 100
    }
    return
    $q::
    While GetKeyState("q","p"){
    Send q
    Sleep 100
    }
    return
    $e::
    While GetKeyState("e","p"){
    Send e
    Sleep 100
    }
    return
    $f::
    While GetKeyState("f","p"){
    Send f
    Sleep 100
    }
    return


    Rift AutoHotkey Script
  2. #2
    jazman84's Avatar Site Donator
    Reputation
    41
    Join Date
    May 2008
    Posts
    185
    Thanks G/R
    2/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sorry I'm not totally familiar with that program, can you please explain what these commands do?

  3. #3
    Xcesiuss's Avatar Contributor CoreCoins Purchaser
    Reputation
    119
    Join Date
    Mar 2008
    Posts
    135
    Thanks G/R
    14/85
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ;---------------------------------------------------------
    ; Buff That Bard
    ; this part is the script's autoexecute section
    ; this assumes your buffs are on one of the active key sets.
    ; If you put them on the Shift-3 key set for example...
    ; you get something like this
    ;---------------------------------------------------------
    ; Set up a hotkey for Buffing a Rift Bard
    ;---------------------------------------------------------
    Setkeydelay, 100,50 ;<--- added 041311
    DefaultKeySet = 1
    BardBuffKeySet = 3 ; key set to switch to
    BardBuffKeys = 1,2,3,4,5,6 ; 5 buffs in the order they are to be sent
    CoolDownDelay = 1100 ; delay between key sends with a 100ms fudge factor
    NormalSleep = 300 ; normal sleep delay
    Return

    ;---------------------------------------------------------
    ; Buff that bard!!! Uses the alt-b hotkey
    ;---------------------------------------------------------
    !b::
    Gosub SendBardBuffs
    Return

    ;---------------------------------------------------------
    ; Buff that bard!!! Do the Buffing
    ; Assumes the game window is active
    ;---------------------------------------------------------
    SendBardBuffs: ;<----- fixed 041311
    StringSplit,BardBuffArray,BardBuffKeys,`,
    Send, {Shift Down}%BardBuffKeySet%{Shift Up} ;<----- moved out of fn 041311
    Sleep, %NormalSleep%
    Loop, %BardBuffArray0%
    { Buff := BardBuffArray%A_Index%
    Send, %Buff%
    Sleep, %CoolDownDelay%
    }
    Send, {Shift Down}%DefaultKeySet%{Shift Up} ;<----- moved out of fn 041311
    Return

    ;---------------------------------------------------------
    ; End of Script
    ;---------------------------------------------------------

    Credits to girlgamer from autohotkey forums.

    This script executes 1,2,3,4,5,6 from keyset 3 (hotkey bar #3 ingame) Just place your buffs there. (you can modify more buttons if you want)

    How to buff. Press alt + b (you can modify this as you like)

  4. #4
    a73k's Avatar Corporal
    Reputation
    1
    Join Date
    Jan 2011
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jazman84 View Post
    Sorry I'm not totally familiar with that program, can you please explain what these commands do?


    $1::
    While GetKeyState("1","p"){
    Send 1
    Sleep 100
    }
    return



    This is the basic chunk, if you want to change the key it applies to, simply insert the desired key everywhere you see "1".

    While running, this code will spam the key of your choice while you just hold the key down. No more beating your keyboard to death for rapid fire.

  5. #5
    StupidDog's Avatar Private
    Reputation
    1
    Join Date
    Mar 2011
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Oh sweet, so this the same as that key spamming add on posted somewhere around here, but doesnt need WMP installed. Win! thanks bud

  6. #6
    shaddydxd's Avatar Banned
    Reputation
    29
    Join Date
    Jul 2009
    Posts
    54
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice find m8 xD gonna try this out

  7. #7
    a73k's Avatar Corporal
    Reputation
    1
    Join Date
    Jan 2011
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've got a Ranger/Marks and a warrior. So far this has worked perfectly for me.

    if anyone has any suggestions for improvement please feel free to post.


    Btw, I also wanted to say that there is a thread on the AutoHotkey forum called "The definitive AutoFire thread here: The definitive autofire thread!

    This is where i got the basic chunk of code for the script. So true to my title, I'm a lazy leecher.

  8. #8
    a73k's Avatar Corporal
    Reputation
    1
    Join Date
    Jan 2011
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Any other macro programs out there?

    AutoHotkey isn't bad but it's pretty much limited to just what can be assigned to keys.

  9. #9
    sol82's Avatar Banned
    Reputation
    20
    Join Date
    Feb 2007
    Posts
    428
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I used AHK while using a flyhack to solo Duke Letareus. Macroed several abilities, st it as 1 on my hotboar, and went to grab a burger and cigerettes. 1 hour 15 minutes later, he was dead, I had 3 awesome loots, and a server first for "That's Not Fair!"

  10. #10
    a73k's Avatar Corporal
    Reputation
    1
    Join Date
    Jan 2011
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone know if ranged can shoot up from underneath the terrain while using a clipping hack?

  11. #11
    gamer204's Avatar Private
    Reputation
    1
    Join Date
    May 2011
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    not possible. You have to be standing in a "valid" location to attack anything.

  12. #12
    zanathos77's Avatar Active Member
    Reputation
    22
    Join Date
    Aug 2009
    Posts
    348
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You get LoS issues because there is in fact a 'wall' beneath you. even if it is the ground.

  13. #13
    Xenocs's Avatar Member
    Reputation
    1
    Join Date
    Jul 2011
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by alexsteh View Post
    ;---------------------------------------------------------
    ; Buff That Bard
    ; this part is the script's autoexecute section
    ; this assumes your buffs are on one of the active key sets.
    ; If you put them on the Shift-3 key set for example...
    ; you get something like this
    ;---------------------------------------------------------
    ; Set up a hotkey for Buffing a Rift Bard
    ;---------------------------------------------------------
    Setkeydelay, 100,50 ;<--- added 041311
    DefaultKeySet = 1
    BardBuffKeySet = 3 ; key set to switch to
    BardBuffKeys = 1,2,3,4,5,6 ; 5 buffs in the order they are to be sent
    CoolDownDelay = 1100 ; delay between key sends with a 100ms fudge factor
    NormalSleep = 300 ; normal sleep delay
    Return

    ;---------------------------------------------------------
    ; Buff that bard!!! Uses the alt-b hotkey
    ;---------------------------------------------------------
    !b::
    Gosub SendBardBuffs
    Return

    ;---------------------------------------------------------
    ; Buff that bard!!! Do the Buffing
    ; Assumes the game window is active
    ;---------------------------------------------------------
    SendBardBuffs: ;<----- fixed 041311
    StringSplit,BardBuffArray,BardBuffKeys,`,
    Send, {Shift Down}%BardBuffKeySet%{Shift Up} ;<----- moved out of fn 041311
    Sleep, %NormalSleep%
    Loop, %BardBuffArray0%
    { Buff := BardBuffArray%A_Index%
    Send, %Buff%
    Sleep, %CoolDownDelay%
    }
    Send, {Shift Down}%DefaultKeySet%{Shift Up} ;<----- moved out of fn 041311
    Return

    ;---------------------------------------------------------
    ; End of Script
    ;---------------------------------------------------------

    Credits to girlgamer from autohotkey forums.

    This script executes 1,2,3,4,5,6 from keyset 3 (hotkey bar #3 ingame) Just place your buffs there. (you can modify more buttons if you want)

    How to buff. Press alt + b (you can modify this as you like)
    mate it's working but can you put a command so it will automatically cast them every 30 seconds?
    Last edited by Xenocs; 07-26-2011 at 09:31 AM.

Similar Threads

  1. [Release][Autohotkey script] PoE Autoflasks & autoquit.
    By Wrongusername in forum PoE Bots and Programs
    Replies: 472
    Last Post: 12-20-2016, 02:09 PM
  2. [script] pray autohotkey script
    By proteu in forum Neverwinter Bots and Programs
    Replies: 19
    Last Post: 10-29-2014, 01:21 PM
  3. Looking for AUTOHOTKEY script for WoW
    By mcglolmmo in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 12-08-2013, 05:02 AM
  4. [script] pray autohotkey script
    By proteu in forum Neverwinter
    Replies: 1
    Last Post: 05-25-2013, 02:08 PM
  5. LF Help in modifying an autohotkey script
    By Unholyshaman in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 10-10-2011, 09:58 PM
All times are GMT -5. The time now is 02:02 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