16 lines
271 B
Plaintext
16 lines
271 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
|
||
|
iResult = FALSE;
|
||
|
|
||
|
if (GetTag(OBJECT_SELF) == "ss1_evilquest")
|
||
|
iResult = TRUE;
|
||
|
if (GetTag(OBJECT_SELF) == "dw1_evilquest")
|
||
|
iResult = TRUE;
|
||
|
if (GetTag(OBJECT_SELF) == "ip1_evilquest")
|
||
|
iResult = TRUE;
|
||
|
|
||
|
return iResult;
|
||
|
}
|