mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-18 21:42:23 +00:00
F2 F3 F4 buttons have been restored when numpad targetting is off you can use numpad 1-4 to change intents pressing shift before any of the intent buttons doesn't change intents(for people with shift+1-4 macros) backspace now sets the focus to the chat bar
20 lines
421 B
Plaintext
20 lines
421 B
Plaintext
/mob/living/carbon/key_down(_key, client/user)
|
|
user.keys_held[_key] = world.time
|
|
if(!user.keys_held["Shift"])
|
|
switch(_key)
|
|
if("R", "Southwest") // Southwest is End
|
|
toggle_throw_mode()
|
|
return
|
|
if("1")
|
|
a_intent_change("help")
|
|
return
|
|
if("2")
|
|
a_intent_change("disarm")
|
|
return
|
|
if("3")
|
|
a_intent_change("grab")
|
|
return
|
|
if("4")
|
|
a_intent_change("harm")
|
|
return
|
|
return ..() |