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