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

49 lines
929 B
Plaintext

#include "qdb_include"
void main()
{
string sLine;
string sResponse;
string sToken;
int iDone;
int iNPC;
int iIndex;
int iStep;
int iLine;
int iOriginalLine;
iOriginalLine=GetLineNumber();
iLine=GetResponseInt("Goto");
SetLineNumber(iLine);
if (GetLine() == "")
{
DelayCommand(0.1,SendMessageToPC(GetPCSpeaker(),"No Line To Goto."));
iLine=iOriginalLine;
SetLineNumber(iLine);
}
sLine=GetLine();
iStep=GetStepNumber();
iDone=GetLineInt("Done");
iNPC=GetLineInt("NPC");
sToken=sLine + "\n\n";
sToken=sToken + "Step=" + IntToString(iStep) + " | Line=" + IntToString(iLine) + "\n";
sToken=sToken + "Done=" + IntToString(iDone) + " | NPC=" + IntToString(iNPC);
SetCustomToken(100,sToken);
iIndex=1;
while (iIndex<=5)
{
SetResponseNumber(iIndex);
sResponse=GetResponse();
if (sResponse=="")
sResponse="(No Response)";
SetCustomToken(100+iIndex,sResponse);
iIndex++;
}
}