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

26 lines
463 B
Plaintext

#include "qdb_include"
void main()
{
SetLine("Have you dealt with the [mob]?");
SetResponseNumber(1);
SetResponse("Yes.");
SetResponseInt("Check",1);
SetResponseNumber(2);
SetResponse("Not yet.");
SetCustomToken(100,GetLineInfo());
int iIndex=1;
while (iIndex<=5)
{
SetResponseNumber(iIndex);
string sResponse=GetResponse();
if (sResponse=="")
sResponse="(No Response)";
SetCustomToken(100+iIndex,sResponse);
iIndex++;
}
}