Skip to content

Instantly share code, notes, and snippets.

@Pendrokar
Created June 25, 2018 17:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pendrokar/bd1f2acd7ea1a941c71fdde8a9780d5d to your computer and use it in GitHub Desktop.
Save Pendrokar/bd1f2acd7ea1a941c71fdde8a9780d5d to your computer and use it in GitHub Desktop.
Sacred Underworld Autohotkey script
#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%
#SingleInstance force
#InstallKeybdHook
#IfWinActive ahk_class Sacred
;; new::original
; +/- (numeric keypad) Zoom in/out
Esc::Esc ; Close window; Open Game menu
z::a ; Collect all visible objects (single player only)
i::i ; Open Inventory
h::f ; Open Combat Arts
c::c ; Open Combo menu
l::l ; Open Log Book
m::m ; Show World Map
o::o ; Options
,::s ; Save menu
F8::F8 ; Quick Load
F9::F9 ; Quick Save
p::p ; Pause (single player only)
n::h ; Help Screens
; Ctrl + B Screen Shot (stored in CAPTURE folder)
space::space ; Drink Healing Potion
a::q ; Drink Potion of Undead Death
s::w ; Drink Potion of the Mentor
d::e ; Drink Viper’s Antidote
f::r ; Drink Potion of Concentration
g::b ; Heal Hireling
;; Weapons
1::1 ; Weapon Slot 1
2::2 ; Weapon Slot 2
3::3 ; Weapon Slot 3
4::4 ; Weapon Slot 4
5::5 ; Weapon Slot 5
;; Arts
q::6 ; Spell / Special Move / Combo Slot 1
w::7 ; Spell / Special Move / Combo Slot 2
e::8 ; Spell / Special Move / Combo Slot 3
r::9 ; Spell / Special Move / Combo Slot 4
t::0 ; Spell / Special Move / Combo Slot 5
;; Multiplayer:
; n::n ; Network/Party Information (multiplayer only)
Enter::Enter ; Open Chat Window (Enter = send message)
; Ctrl + Enter Send Message to Party
; Page up/down Scroll Chat Lines
;; Not mentioned in manual
Tab::Tab ; Overlay map
LCtrl::LShift ; Walk/Run
LShift::LCtrl ; Stand still
LAlt::LAlt ; view the objects on the ground, and also the names of both neutral characters and opponents
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment