REO-EE/_module/nss/quill_mod_chat.nss
Jaysyn904 f82740bbbd Initial commit
Initial commit
2024-02-22 13:22:03 -05:00

17 lines
437 B
Plaintext

void main()
{
object oPC = GetPCChatSpeaker();
string sSpoken = GetPCChatMessage();
int iVolume = GetPCChatVolume();
if (iVolume == TALKVOLUME_TALK || iVolume == TALKVOLUME_WHISPER)
{
// if message was a talk or whisper then delete previous string and save new one
// save last chat on PC.
DeleteLocalString(oPC,"TD_QUILLCHAT");
SetLocalString(oPC,"TD_QUILLCHAT", sSpoken);
}
}