971ef6a416
* Custom movement hotkeys and restore macros for T, O and M * stray comma * update movement keys on SSinput initialize * use cardinals
36 lines
892 B
Plaintext
36 lines
892 B
Plaintext
/datum/keybinding/client
|
|
category = CATEGORY_CLIENT
|
|
weight = WEIGHT_HIGHEST
|
|
|
|
|
|
/datum/keybinding/client/admin_help
|
|
key = "F1"
|
|
name = "admin_help"
|
|
full_name = "Admin Help"
|
|
description = "Ask an admin for help."
|
|
|
|
/datum/keybinding/client/admin_help/down(client/user)
|
|
user.get_adminhelp()
|
|
return TRUE
|
|
|
|
|
|
/datum/keybinding/client/screenshot
|
|
key = "F2"
|
|
name = "screenshot"
|
|
full_name = "Screenshot"
|
|
description = "Take a screenshot."
|
|
|
|
/datum/keybinding/client/screenshot/down(client/user)
|
|
winset(user, null, "command=.screenshot [!user.keys_held["shift"] ? "auto" : ""]")
|
|
return TRUE
|
|
|
|
/datum/keybinding/client/minimal_hud
|
|
key = "F12"
|
|
name = "minimal_hud"
|
|
full_name = "Minimal HUD"
|
|
description = "Hide most HUD features"
|
|
|
|
/datum/keybinding/client/minimal_hud/down(client/user)
|
|
user.mob.button_pressed_F12()
|
|
return TRUE
|