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

31 lines
428 B
Plaintext

#include "qdb_include"
void main()
{
string sLine;
string sResponse;
string sToken;
int iDone;
int iNPC;
int iIndex;
int iStep;
int iLine;
SetLineNumber(1);
sToken=GetLineInfo();
SetCustomToken(100,sToken);
iIndex=1;
while (iIndex<=5)
{
SetResponseNumber(iIndex);
sResponse=GetResponse();
if (sResponse=="")
sResponse="(No Response)";
SetCustomToken(100+iIndex,sResponse);
iIndex++;
}
}