EN6_PRC8/_module/nss/qdb_setline.nss

15 lines
213 B
Plaintext
Raw Permalink Normal View History

#include "qdb_include"
void main()
{
string sTalk = GetLocalString(OBJECT_SELF, "Stack");
if (GetLine()=="")
SetLine(sTalk);
else
SetLine(GetLine() + " \n\n" + sTalk);
SetCustomToken(100,GetLine());
}