Added server reset script

Added server reset script to rest conversation.
Full compile.
This commit is contained in:
Jaysyn904
2025-05-04 21:25:10 -04:00
parent b41f46eb49
commit 06a5578d2e
63 changed files with 820 additions and 84 deletions

13
_module/nss/sc_isdm.nss Normal file
View File

@@ -0,0 +1,13 @@
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;
}