Skip to content

Instantly share code, notes, and snippets.

@peterthehan
Created August 12, 2020 04:58
Show Gist options
  • Select an option

  • Save peterthehan/8abd99c90517aafffa03b28b3cafb716 to your computer and use it in GitHub Desktop.

Select an option

Save peterthehan/8abd99c90517aafffa03b28b3cafb716 to your computer and use it in GitHub Desktop.
Ragnarok Online macro for the Creator class.
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
!`::Suspend
!r::Reload
Spam(keyStroke, delay){
while GetKeyState(keyStroke, "P"){
Random, rand, 10, 20
Send %keyStroke%
Sleep rand
SendEvent {Click}
Sleep delay+rand
}
}
#IfWinActive ahk_class Forsaken Ragnarok Online - forsaken-ro.net
;ACID DEMONSTRATION
$s::
Spam("s", 55)
return
;BOLT
$d::
Spam("d", 55)
return
;HEAVENS DRIVE
$g::
Spam("g", 80)
return
;SIGHT
$w::
Send a
Sleep 125
Send w
Sleep 125
Send q
return
;MAGNUM BREAK
$e::
Send m
Sleep 125
Send e
Sleep 125
Send x
return
;SAFETY WALL
$r::
Send i
Sleep 150
Send r
Sleep 150
SendEvent {Click 2}
Sleep 150
Send o
return
;LIF
$h::
Send h
Sleep 80
Send j
Sleep 80
Send k
Sleep 150
Send h
Sleep 100
Send l
Sleep 80
Send k
return
#IfWinActive
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment