9 lines
210 B
Plaintext
9 lines
210 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC=GetPCSpeaker();
|
||
|
object oArea=GetArea(oPC);
|
||
|
string sTag=GetTag(oArea);
|
||
|
if (sTag=="IslandofDragons"||sTag=="IslandofMyths") return TRUE;
|
||
|
return FALSE;
|
||
|
}
|