* Maps and things no code/icons * helpers defines globalvars * Onclick world.dm orphaned_procs * subsystems Round vote and shuttle autocall done here too * datums * Game folder * Admin - chatter modules * clothing - mining * modular computers - zambies * client * mob level 1 * mob stage 2 + simple_animal * silicons n brains * mob stage 3 + Alien/Monkey * human mobs * icons updated * some sounds * emitter y u no commit * update tgstation.dme * compile fixes * travis fixes Also removes Fast digest mode, because reasons. * tweaks for travis Mentors are broke again Also fixes Sizeray guns * oxygen loss fix for vore code. * removes unused code * some code updates * bulk fixes * further fixes * outside things * whoops. * Maint bar ported * GLOBs.
43 lines
1.5 KiB
Plaintext
43 lines
1.5 KiB
Plaintext
/*
|
|
Defines for use in saycode and text formatting.
|
|
Currently contains speech spans and message modes
|
|
*/
|
|
|
|
//Message modes. Each one defines a radio channel, more or less.
|
|
#define MODE_HEADSET "headset"
|
|
#define MODE_ROBOT "robot"
|
|
#define MODE_R_HAND "right hand"
|
|
#define MODE_L_HAND "left hand"
|
|
#define MODE_INTERCOM "intercom"
|
|
#define MODE_BINARY "binary"
|
|
#define MODE_WHISPER "whisper"
|
|
#define MODE_WHISPER_CRIT "whispercrit"
|
|
#define MODE_DEPARTMENT "department"
|
|
#define MODE_ALIEN "alientalk"
|
|
#define MODE_HOLOPAD "holopad"
|
|
#define MODE_CHANGELING "changeling"
|
|
#define MODE_VOCALCORDS "cords"
|
|
|
|
//Spans. Robot speech, italics, etc. Applied in compose_message().
|
|
#define SPAN_ROBOT "robot"
|
|
#define SPAN_YELL "yell"
|
|
#define SPAN_ITALICS "italics"
|
|
#define SPAN_SANS "sans"
|
|
#define SPAN_PAPYRUS "papyrus"
|
|
#define SPAN_REALLYBIG "reallybig"
|
|
#define SPAN_COMMAND "command_headset"
|
|
#define SPAN_CLOWN "clown"
|
|
|
|
//bitflag #defines for return value of the radio() proc.
|
|
#define ITALICS 1
|
|
#define REDUCE_RANGE 2
|
|
#define NOPASS 4
|
|
|
|
//Eavesdropping
|
|
#define EAVESDROP_EXTRA_RANGE 1 //how much past the specified message_range does the message get starred, whispering only
|
|
|
|
// A link given to ghost alice to follow bob
|
|
#define FOLLOW_LINK(alice, bob) "<a href=?src=\ref[alice];follow=\ref[bob]>(F)</a>"
|
|
#define TURF_LINK(alice, turfy) "<a href=?src=\ref[alice];x=[turfy.x];y=[turfy.y];z=[turfy.z]>(T)</a>"
|
|
#define FOLLOW_OR_TURF_LINK(alice, bob, turfy) "<a href=?src=\ref[alice];follow=\ref[bob];x=[turfy.x];y=[turfy.y];z=[turfy.z]>(F)</a>"
|