mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 03:33:21 +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"))
|
if(src.stat == 2.0 && (act != "deathgasp"))
|
||||||
return
|
return
|
||||||
|
if(attempt_vr(src,"emote_vr",list(act,m_type,message))) return //VOREStation Add - Custom Emote Handler
|
||||||
switch(act)
|
switch(act)
|
||||||
|
|
||||||
if ("airguitar")
|
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
|
||||||
@@ -1661,6 +1661,7 @@
|
|||||||
#include "code\modules\mob\living\carbon\human\appearance.dm"
|
#include "code\modules\mob\living\carbon\human\appearance.dm"
|
||||||
#include "code\modules\mob\living\carbon\human\death.dm"
|
#include "code\modules\mob\living\carbon\human\death.dm"
|
||||||
#include "code\modules\mob\living\carbon\human\emote.dm"
|
#include "code\modules\mob\living\carbon\human\emote.dm"
|
||||||
|
#include "code\modules\mob\living\carbon\human\emote_vr.dm"
|
||||||
#include "code\modules\mob\living\carbon\human\examine.dm"
|
#include "code\modules\mob\living\carbon\human\examine.dm"
|
||||||
#include "code\modules\mob\living\carbon\human\examine_vr.dm"
|
#include "code\modules\mob\living\carbon\human\examine_vr.dm"
|
||||||
#include "code\modules\mob\living\carbon\human\human.dm"
|
#include "code\modules\mob\living\carbon\human\human.dm"
|
||||||
|
|||||||
Reference in New Issue
Block a user