10 lines
189 B
Plaintext
10 lines
189 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = FALSE;
|
|
if (GetTag(OBJECT_SELF) == "rd_evilquest0" && GetLocalInt(GetPCSpeaker(),"EvilCheck") == 0)
|
|
iResult = TRUE;
|
|
return iResult;
|
|
}
|