18 lines
296 B
Plaintext
18 lines
296 B
Plaintext
|
#include "utl_i_sqluuid"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
int iQuest;
|
||
|
int iGuild;
|
||
|
|
||
|
iGuild = SQLocalsUUID_GetInt(GetPCSpeaker(),"PCGuild");
|
||
|
iQuest = SQLocalsUUID_GetInt(GetPCSpeaker(),"GuildQuests");
|
||
|
|
||
|
iResult = FALSE;
|
||
|
if (iQuest > 4 && iGuild == 2)
|
||
|
iResult = TRUE;
|
||
|
|
||
|
return iResult;
|
||
|
}
|