26 lines
474 B
Plaintext
26 lines
474 B
Plaintext
|
#include "qdb_include"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
SetLine("Are the [camp] dead?");
|
||
|
SetResponseNumber(1);
|
||
|
SetResponse("Yes, the [camp] are dead.");
|
||
|
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++;
|
||
|
}
|
||
|
}
|