14 lines
187 B
Plaintext
14 lines
187 B
Plaintext
#include "qdb_include"
|
|
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = FALSE;
|
|
|
|
if (GetStepNumber() == GetQuestInt("Steps") && GetStepNumber()>1)
|
|
iResult=TRUE;
|
|
|
|
return iResult;
|
|
}
|