8 lines
191 B
Plaintext
8 lines
191 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
if(GetIsDM(oPC) == TRUE) return TRUE;
|
|
if(GetLocalString(GetModule(), "MODE") == "LOCAL") return TRUE;
|
|
return FALSE;
|
|
}
|