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