15 lines
241 B
Plaintext
15 lines
241 B
Plaintext
|
#include "utl_i_sqluuid"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
object oPC;
|
||
|
|
||
|
oPC=GetPCSpeaker();
|
||
|
iResult = FALSE;
|
||
|
|
||
|
if (SQLocalsUUID_GetInt(oPC,"OverallQuest")==4 && GetTag(OBJECT_SELF) == "Xander")
|
||
|
iResult=TRUE;
|
||
|
|
||
|
return iResult;
|
||
|
}
|