mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 02:34:00 +00:00
Adds *mlem and *awoo
YOU. MAKE. ME. ***SICK.*** That you somehow convinced me to do this.
This commit is contained in:
@@ -18,6 +18,7 @@
|
||||
|
||||
if(src.stat == 2.0 && (act != "deathgasp"))
|
||||
return
|
||||
if(attempt_vr(src,"emote_vr",list(act,m_type,message))) return //VOREStation Add - Custom Emote Handler
|
||||
switch(act)
|
||||
|
||||
if ("airguitar")
|
||||
|
||||
16
code/modules/mob/living/carbon/human/emote_vr.dm
Normal file
16
code/modules/mob/living/carbon/human/emote_vr.dm
Normal file
@@ -0,0 +1,16 @@
|
||||
/mob/living/carbon/human/emote_vr(var/act,var/m_type=1,var/message = null)
|
||||
|
||||
switch(act)
|
||||
if ("mlem")
|
||||
message = "mlems their tongue up over their nose. Mlem."
|
||||
m_type = 1
|
||||
if ("awoo")
|
||||
message = "awoos loudly. AwoooOOOOoooo!"
|
||||
m_type = 2
|
||||
|
||||
if (message)
|
||||
log_emote("[name]/[key] : [message]")
|
||||
custom_emote(m_type,message)
|
||||
return 1
|
||||
|
||||
return 0
|
||||
Reference in New Issue
Block a user