mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-09 16:09:15 +00:00
25 lines
388 B
Plaintext
25 lines
388 B
Plaintext
/datum/admins/key_down(_key, client/user)
|
|
switch(_key)
|
|
if("F3")
|
|
user.get_admin_say()
|
|
return
|
|
if("F5")
|
|
user.admin_ghost()
|
|
return
|
|
if("F6")
|
|
player_panel_new()
|
|
return
|
|
if("F7")
|
|
user.togglebuildmodeself()
|
|
return
|
|
if("F8")
|
|
if(user.keys_held["Ctrl"])
|
|
user.stealth()
|
|
else
|
|
user.invisimin()
|
|
return
|
|
if("F10")
|
|
user.get_dead_say()
|
|
return
|
|
..()
|