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

27 lines
527 B
Plaintext

#include "qdb_include"
void main()
{
SetLine("May I help you?");
SetResponseNumber(1);
SetResponse("Yes, I have this [item] from [giver].");
SetResponseInt("Check",2);
SetResponseInt("DeleteItem",1);
SetResponseNumber(2);
SetResponse("Not right now, thanks.");
SetCustomToken(100,GetLineInfo());
int iIndex=1;
while (iIndex<=5)
{
SetResponseNumber(iIndex);
string sResponse=GetResponse();
if (sResponse=="")
sResponse="(No Response)";
SetCustomToken(100+iIndex,sResponse);
iIndex++;
}
}