11 lines
137 B
Plaintext
11 lines
137 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
string sTag;
|
||
|
|
||
|
sTag = GetTag(GetArea(OBJECT_SELF));
|
||
|
|
||
|
if (sTag == "TheAbyss")
|
||
|
return TRUE;
|
||
|
return FALSE;
|
||
|
}
|