Runescape chat fix

This commit is contained in:
quotefox
2022-09-20 08:04:00 +01:00
parent 1c2f134e2d
commit 979decc7f2
10 changed files with 84 additions and 29 deletions
+7 -3
View File
@@ -61,9 +61,9 @@
#define SPAN_SMALL "small"
//bitflag #defines for return value of the radio() proc.
#define ITALICS 1
#define REDUCE_RANGE 2
#define NOPASS 4
#define ITALICS (1<<0)
#define REDUCE_RANGE (1<<1)
#define NOPASS (1<<2)
//Eavesdropping
#define EAVESDROP_EXTRA_RANGE 1 //how much past the specified message_range does the message get starred, whispering only
@@ -88,3 +88,7 @@
// Audio/Visual Flags. Used to determine what sense are required to notice a message.
#define MSG_VISUAL (1<<0)
#define MSG_AUDIBLE (1<<1)
//Used in visible_message_flags, audible_message_flags and runechat_flags
#define EMOTE_MESSAGE (1<<0)