16 lines
198 B
Plaintext
16 lines
198 B
Plaintext
#include "rd_spawn"
|
|
|
|
int StartingConditional()
|
|
{
|
|
int iQuestActive;
|
|
int iResult;
|
|
|
|
iQuestActive = IsQuestCampUsed("TST", 1);
|
|
|
|
iResult = TRUE;
|
|
if (iQuestActive)
|
|
iResult = FALSE;
|
|
|
|
return iResult;
|
|
}
|