PoA_PRC8/_module/nss/sc_isdm.nss
Jaysyn904 06a5578d2e Added server reset script
Added server reset script to rest conversation.
Full compile.
2025-05-04 21:25:10 -04:00

14 lines
249 B
Plaintext

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;
}