PoA_PRC8/_module/nss/sc_isdm.nss

14 lines
249 B
Plaintext
Raw Normal View History

int StartingConditional()
{
// Get the PC who is involved in this conversation
object oPC = GetPCSpeaker();
if(GetIsDM(oPC))
{
return TRUE;
}
// If we make it this far, we have passed all tests.
return FALSE;
}