mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-29 03:32:28 +00:00
20 lines
386 B
Plaintext
20 lines
386 B
Plaintext
/mob/living/carbon/key_down(_key, client/user)
|
|
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 ..()
|