This commit is contained in:
silicons
2020-11-26 23:37:27 -07:00
parent 8a2e996817
commit 5e965d099f
8 changed files with 90 additions and 131 deletions
@@ -3,35 +3,19 @@
/datum/keybinding/client/communication/say
hotkey_keys = list("CtrlT")
name = "say"
name = "Say"
full_name = "IC Say"
/datum/keybinding/client/communication/say/down(client/user)
var/mob/M = user.mob
var/speech = input(user, "", "say")
M.say_verb(speech)
/datum/keybinding/client/communication/ooc
hotkey_keys = list("O")
name = "OOC"
full_name = "Out Of Character Say (OOC)"
/datum/keybinding/client/communication/ooc/down(client/user)
var/speech = input(user, "", "OOC")
user.ooc(speech)
return TRUE
/datum/keybinding/client/communication/me
hotkey_keys = list("CtrlM")
name = "me"
name = "Me"
full_name = "Me (emote)"
/datum/keybinding/client/communication/me/down(client/user)
var/mob/M = user.mob
var/emote = input(user, "", "Me")
M.me_verb(emote)
return TRUE
//indicators
/datum/keybinding/client/communication/say_with_indicator
hotkey_keys = list("T")
@@ -53,4 +37,28 @@
/datum/keybinding/client/communication/me_with_indicator/down(client/user)
var/mob/M = user.mob
M.me_typing_indicator()
return TRUE
return TRUE
/datum/keybinding/client/communication/subtle
hotkey_keys = list("5")
classic_keys = list()
name = "Subtle"
full_name = "Subtle Emote"
/datum/keybinding/client/communication/subtler
hotkey_keys = list("6")
classic_keys = list()
name = "Subtler"
full_name = "Subtler Anti-Ghost Emote"
/datum/keybinding/client/communication/whisper
hotkey_keys = list("Y")
classic_keys = list()
name = "Whisper"
full_name = "Whisper"
/datum/keybinding/client/communication/looc
hotkey_keys = list("L")
classic_keys = list()
name = "LOOC"
full_name = "Local Out of Character chat"
-34
View File
@@ -76,37 +76,3 @@
else
user.mob.dropItemToGround(I)
return TRUE
/datum/keybinding/living/subtle
hotkey_keys = list("5")
classic_keys = list()
name = "subtle_emote"
full_name = "Subtle Emote"
/datum/keybinding/living/subtle/down(client/user)
var/mob/living/L = user.mob
L.subtle()
return TRUE
/datum/keybinding/living/subtler
hotkey_keys = list("6")
classic_keys = list()
name = "subtler_emote"
full_name = "Subtler Anti-Ghost Emote"
/datum/keybinding/living/subtler/down(client/user)
var/mob/living/L = user.mob
L.subtler()
return TRUE
/datum/keybinding/mob/whisper
hotkey_keys = list("Y")
classic_keys = list()
name = "whisper"
full_name = "Whisper"
/datum/keybinding/mob/whisper/down(client/user)
var/mob/M = user.mob
M.whisper_keybind()
return TRUE