04-06-2015, 03:40 PM
(This post was last modified: 04-06-2015, 03:50 PM by Rustyclippers.)
http://www.mmominion.com/Thread-Gold-Saucer?page=9
I made a few different scripts trying different things. There is an example script I made in that link, just to show how to handle races being full (pixel reading).
A few pages prior someone made a script that Sprints during the race (without pixel reading, however if the races are full... or there is a timing issue at some point you would run into a wall and would no longer Q)
Below is a very basic Q and leave AHK script
This script has tons of extra delay in it. The 190000 sleep value needs to roughly be the time from when you accept Q + longest possible race time + 10 seconds. This was my day 1 shitty ahk script. I ran a seperate script to sprint, but it works off pixel reading.
Do you use windows 8? I shared a few scripts with people who use windows 8 and they all failed (image / pixel reading). AutoIt may have better pixel reading functionality. I have never used AutoIT but it appears to be more robust
With the hit to 8th place finishes in the last patch a Sprint is necessary for decent chocobo leveling time / mgp
I made a few different scripts trying different things. There is an example script I made in that link, just to show how to handle races being full (pixel reading).
A few pages prior someone made a script that Sprints during the race (without pixel reading, however if the races are full... or there is a timing issue at some point you would run into a wall and would no longer Q)
Below is a very basic Q and leave AHK script
Code:
CoordMode, ToolTip, Screen
^s::
WinGet, programid, List, FINAL FANTASY
Loop
{
Sleep 1200
tooltip, `n Race # : %A_Index%`n, 0, 0
ControlSend,,{Numpad0}, ahk_id %programid1%
Sleep 1200
ControlSend,,{Numpad0}, ahk_id %programid1%
Sleep 1200
ControlSend,,{Numpad0}, ahk_id %programid1%
Sleep 1200
ControlSend,,{Numpad2}, ahk_id %programid1%
Sleep 1200
ControlSend,,{Numpad0}, ahk_id %programid1%
Sleep 1200
ControlSend,,{Numpad0}, ahk_id %programid1%
Sleep 1200
ControlSend,,{Numpad6}, ahk_id %programid1%
Sleep 1200
ControlSend,,{Numpad0}, ahk_id %programid1% ;Queue
Sleep 35000 ;universal wait timer (Q pops at 0,15,30 seconds)
ControlSend,,{Numpad0}, ahk_id %programid1% ; accept Queue
Sleep 190000 ;race duration
ControlSend,,{Numpad0}, ahk_id %programid1% ; double hit numpad 0 to exit
Sleep 500
ControlSend,,{Numpad0}, ahk_id %programid1%
Sleep 12000
}
INS::pause
Return
This script has tons of extra delay in it. The 190000 sleep value needs to roughly be the time from when you accept Q + longest possible race time + 10 seconds. This was my day 1 shitty ahk script. I ran a seperate script to sprint, but it works off pixel reading.
Do you use windows 8? I shared a few scripts with people who use windows 8 and they all failed (image / pixel reading). AutoIt may have better pixel reading functionality. I have never used AutoIT but it appears to be more robust
With the hit to 8th place finishes in the last patch a Sprint is necessary for decent chocobo leveling time / mgp