14 lines
150 B
Plaintext
14 lines
150 B
Plaintext
#include "qdb_include"
|
|
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = FALSE;
|
|
|
|
if (GetQuestInt("Type") ==2)
|
|
iResult=TRUE;
|
|
|
|
return iResult;
|
|
}
|