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