16 lines
228 B
Plaintext
16 lines
228 B
Plaintext
#include "utl_i_sqluuid"
|
|
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
int iQuest;
|
|
|
|
iQuest = SQLocalsUUID_GetInt(GetPCSpeaker(),"GuildQuests");
|
|
|
|
iResult = FALSE;
|
|
if (iQuest > 4 && iQuest < 10)
|
|
iResult = TRUE;
|
|
|
|
return iResult;
|
|
}
|