971ef6a416
* Custom movement hotkeys and restore macros for T, O and M * stray comma * update movement keys on SSinput initialize * use cardinals
28 lines
604 B
Plaintext
28 lines
604 B
Plaintext
/datum/keybinding/movement
|
|
category = CATEGORY_MOVEMENT
|
|
weight = WEIGHT_HIGHEST
|
|
|
|
/datum/keybinding/movement/north
|
|
key = "W"
|
|
name = "North"
|
|
full_name = "Move North"
|
|
description = "Moves your character north"
|
|
|
|
/datum/keybinding/movement/south
|
|
key = "S"
|
|
name = "South"
|
|
full_name = "Move South"
|
|
description = "Moves your character south"
|
|
|
|
/datum/keybinding/movement/west
|
|
key = "A"
|
|
name = "West"
|
|
full_name = "Move West"
|
|
description = "Moves your character left"
|
|
|
|
/datum/keybinding/movement/east
|
|
key = "D"
|
|
name = "East"
|
|
full_name = "Move East"
|
|
description = "Moves your character east"
|