when character said something then in server console i have this line
Code: Select all
character_name speaking w/ color 0x34thanks in advance
Code: Select all
character_name speaking w/ color 0x34Code: Select all
exported function HandleSpeech( character, byref packet )
var color := packet.GetInt16(4);
if ((color < 2) || (color > 1001))
SendSysMessage(character, "You are speaking with an out of range text color. Please go into your options and change your speech color.");
packet.SetInt16(4, 1001);
endif
return 0;
endfunctionCode: Select all
#
# ShowSpeechColors: If enabled, reports the speech colors clients are using when they talk.
#
ShowSpeechColors=0