Search found 31 matches

by Rangerbot
02 Jun 2018, 05:01
Forum: Gaming Help (v1)
Topic: Dark Souls Remastered move camera with keyboard
Replies: 10
Views: 5053

Re: Dark Souls Remastered move camera with keyboard

if you have your camera assigned to wasd you could spoof the sensitivity like this

sen := 3
w::
loop %sen%
send w
return
a::
loop %sen%
send a
return
s::
loop %sen%
send s
return
d::
loop %sen%
send d
return
by Rangerbot
27 May 2018, 17:08
Forum: Gaming Scripts (v1)
Topic: CSGO BHop (w/ strafe) AHK Script (That I made)
Replies: 13
Views: 41552

Re: CSGO BHop (w/ strafe) AHK Script (That I made)

aH yes thanks swag, I've been doing too many subs and forget about function scope in autohotkey
I am also curious about the y-axis mouse movement

http://flafla2.github.io/2015/02/14/bunnyhop.html
by Rangerbot
27 May 2018, 11:23
Forum: Gaming Help (v1)
Topic: Need help in getting this script to work.
Replies: 9
Views: 1933

Re: Need help in getting this script to work.

~m:: Sleep, 300 click ; try this Return ;this stops the program and sends it back to before ~m was called. ;therefore "Send,{Blind}{LButton Up}" was only being called on m up and not within 300ms of pressing m ;I dont think you needed the second declaration for M up
by Rangerbot
27 May 2018, 10:44
Forum: Gaming Help (v1)
Topic: Need help in getting this script to work.
Replies: 9
Views: 1933

Re: Need help in getting this script to work.

adjust the milliseconds of sleep from 300 to something lower.
you can omit the line or change it to Sleep -1 to allow for interrupts there as well.
by Rangerbot
27 May 2018, 10:39
Forum: Gaming Scripts (v1)
Topic: Tedious Action Repeater / Idle Farmer +Help request
Replies: 0
Views: 1579

Tedious Action Repeater / Idle Farmer +Help request

This is a simple script I made for those games ( or any UI really ) where you have to repeat tedious actions. To start, hold ctrl, shift or alt and click anywhere on the screen to store the position you would like to repeatedly click. You can use all three to cycle through multiple positions (i.e. "...
by Rangerbot
27 May 2018, 10:02
Forum: Gaming Scripts (v1)
Topic: CSGO BHop (w/ strafe) AHK Script (That I made)
Replies: 13
Views: 41552

Re: CSGO BHop (w/ strafe) AHK Script (That I made)

Dam bud! you got a pretty fine script here. My first piece of advice is to indent your code. It not only helps us reading it but also yourself one day maybe. I tidied it up for myself to read and am nowhere near imposing a format on you. Your use of DLL calls is exquisite in keeping the script smoot...
by Rangerbot
27 May 2018, 09:43
Forum: Gaming Help (v1)
Topic: play mouse click sound while holding left button
Replies: 4
Views: 2010

Re: play mouse click sound while holding left button

you wont be able to hear the sound because it is played many hundreds of times a second. i used SoundBeep and commented out SoundPlay because it would just fill your audioCard and create a mess sound wise. I have visual alerts turned on for hearing impairment in the Accessibility page of Control Pan...
by Rangerbot
26 May 2018, 16:26
Forum: Gaming Help (v1)
Topic: play mouse click sound while holding left button
Replies: 4
Views: 2010

Re: play mouse click sound while holding left button

SetBatchLines -1 ListLines, Off Pause::Reload $LButton:: MouseGetPos, x, y ; retrieves the current position of the mouse cursor ;if (Between(532, 771, x) and Between(203, 523, y)) { While (GetKeyState("LButton", "P")) { click ;SoundPlay, *-1 ;plays a console beep, exchange this with your mp3 file's...
by Rangerbot
21 May 2018, 10:47
Forum: Gaming Help (v1)
Topic: Can you make me a repeating script that repeats /!rtv and /!revoke in that order with F5 and stop with F3 Topic is solved
Replies: 3
Views: 1170

Re: Can you make me a repeating script that repeats /!rtv and /!revoke in that order with F5 and stop with F3 Topic is solved

Click on ✔ (Accept this answer) on top-right part of the post if it has answered your question / solved your problem.
i think SirRFI has nailed it! :beer:
by Rangerbot
21 May 2018, 10:40
Forum: Gaming Help (v1)
Topic: Script to use hotkeys for low and high dpi. Topic is solved
Replies: 12
Views: 3698

Re: Script to use hotkeys for low and high dpi. Topic is solved

thats not a noob request, that's a lazy request.
by Rangerbot
21 May 2018, 10:37
Forum: Gaming Help (v1)
Topic: Sprint with Double Tap "W"
Replies: 10
Views: 8972

Re: Sprint with Double Tap "W"

freq:=150

~$w::
wcount++
SetTimer sub, %freq% ; make this number smaller for quicker successive presses
return

sub:
if (wcount==2) {
Send {u down}
}
wcount := 0
SetTimer,, off ;Stop this timer for "sub"
return

u & w up::send {u up}

pause::reload
by Rangerbot
14 May 2018, 16:49
Forum: Gaming Help (v1)
Topic: Trying to make a multishine macro for fox in Super Smash Bros Melee for the Dolphin Emulator.
Replies: 9
Views: 3671

Re: Trying to make a multishine macro for fox in Super Smash Bros Melee for the Dolphin Emulator.

in my opinion it is beyond my scope of Smash/AHK knowledge to time something as precise as a multishine, I too have used autohotkey for games like pokemon where I automate menus and StreetFighter 2 for the combo moves. I think it's worth mentioning that there is different latencies in Dolhpin as com...
by Rangerbot
14 May 2018, 04:01
Forum: Ask for Help (v1)
Topic: Buttons: Rename and Action Topic is solved
Replies: 5
Views: 1533

Re: Buttons: Rename and Action Topic is solved

[/quote]Gui, Add, ControlType [, Options, Text] Adds a control to a GUI window (first creating the GUI window itself, if necessary). ControlType is one of the following: Text, Edit, UpDown, Picture Button, Checkbox, Radio DropDownList, ComboBox ListBox, ListView, TreeView Link, Hotkey, DateTime, Mon...
by Rangerbot
14 May 2018, 03:51
Forum: Ask for Help (v1)
Topic: Need script that emulates my mouse clicks on second half of screen
Replies: 5
Views: 1462

Re: Need script that emulates my mouse clicks on second half of screen

if you could link the two applications I maybe be able to test some code. Here's some idea just to get the ball rolling tho 1. make a constant for the width of each square a. width1 := 32 ; width2 := 22 2. collect the location of the top left square of each board a. origin1x, origin1y ; origin2x, or...
by Rangerbot
14 May 2018, 03:21
Forum: Ask for Help (v1)
Topic: Web scraping using IE - problem when the index number of a element changes Topic is solved
Replies: 6
Views: 1928

Re: Web scraping using IE - problem when the index number of a element changes Topic is solved

What is the reason you need the correct index value? are you trying to grab only one DOM elements text from a webpage? are you looking for a kind of DOM element and collecting it's text for every instance? can you give a URL to the webpage you're scraping or a similar URL along with the desired cont...
by Rangerbot
14 May 2018, 03:14
Forum: Ask for Help (v1)
Topic: Hotkeys w/ Window Detection Script
Replies: 4
Views: 1069

Re: Hotkeys w/ Window Detection Script

SetTimer, Close_Script_d, 1000 XButton2::>^F12 XButton1::>^F11 ;Close_Script: ;if !WinExist("SwgClient") or !WinExist("Aftermath Launcher") ; ExitApp ;return Close_Script_d: ToolTip % gameActive() return gameActive(){ iF WinExist("ahk_exe SwgClient.exe") SwgClient := 1 if WinExist("ahk_exe Aftermat...
by Rangerbot
14 May 2018, 02:48
Forum: Gaming Help (v1)
Topic: Sprint with Double Tap "W"
Replies: 10
Views: 8972

Re: Sprint with Double Tap "W"

Let us know if that works for you, you can also try this from the docs but it is a bit convoluted for beginners ; Example #4: Detects when a key has been double-pressed (similar to double-click). ; KeyWait is used to stop the keyboard's auto-repeat feature from creating an unwanted ; double-press wh...
by Rangerbot
14 May 2018, 02:37
Forum: Gaming Help (v1)
Topic: Trying to make a multishine macro for fox in Super Smash Bros Melee for the Dolphin Emulator.
Replies: 9
Views: 3671

Re: Trying to make a multishine macro for fox in Super Smash Bros Melee for the Dolphin Emulator.

https://autohotkey.com/board/topic/109116-attempting-to-create-simple-script-macro-for-super-smash-bros-on-dolphin-emulator-having-some-success/ from what I've found Dolphin doesn't like to play with things like TAS, Macros and Bots however there are some references to how to make python(/lua?) plug...
by Rangerbot
14 May 2018, 02:31
Forum: Gaming Help (v1)
Topic: Any idea how this script looks like?
Replies: 2
Views: 755

Re: Any idea how this script looks like?

Pause:: SetTimer, a, ((toggle:=!toggle) ? 20000 : "off") ;press pause to turn the timer on and off for label "a::" if (!toggle) ;releases w when the timer is off Send {w up} return a:: Send {control down} Send {w down} sleep 1000 ;milliseconds Send {control up} return tell me how it goes i cant tes...

Go to advanced search