9 lines
215 B
Plaintext
9 lines
215 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oPC=GetPCSpeaker();
|
|
object oArea=GetArea(oPC);
|
|
string sTag=GetTag(oArea);
|
|
if (sTag=="AtSea"||sTag=="AtSea2"||sTag=="AtSeaPirates") return TRUE;
|
|
return FALSE;
|
|
}
|