EN6_PRC8/_module/nss/tst_grabtxt.nss
Jaysyn904 a6f6db7303 Initial commit
Initial commit.  Updated release archive.
2024-06-13 15:08:33 -04:00

16 lines
416 B
Plaintext

#include "qdb_include"
void main()
{
string sTalk = GetLocalString(OBJECT_SELF, "Stack");
//SendMessageToPC(GetPCSpeaker(),"You said: " + sTalk);
//PrintString(sTalk);
string sQuest;
sQuest = "Name: " + sTalk + "\n";
sQuest = sQuest + "Lvls=1-40 | Freq=2 | DoOnce=1 \n";
sQuest = sQuest + "Gold=0 | ItemChance=0 | Item= \n";
sQuest = sQuest + "NPCType=1 | NPCSpawn=0 | OneLiner= \n";
SetCustomToken(100,sQuest);
}