Initial commit

Initial commit [v9.7]
This commit is contained in:
Jaysyn904
2025-04-03 12:54:47 -04:00
parent ff5835fcc7
commit ebc0c6a9b2
11298 changed files with 9432842 additions and 2 deletions

20
_module/nss/is_a_drd.nss Normal file
View File

@@ -0,0 +1,20 @@
#include "prc_class_const"
int StartingConditional()
{
object oPC = GetPCSpeaker();
int iDivine = GetLevelByClass(CLASS_TYPE_DRUID, oPC)
+ GetLevelByClass(CLASS_TYPE_SHAMAN, oPC);
// Restrict based on the player's class
int iPassed = 0;
/* if(GetLevelByClass(CLASS_TYPE_DRUID, GetPCSpeaker()) >= 1)
iPassed = 1;
if((iPassed == 0) && (GetLevelByClass(CLASS_TYPE_GIANT, GetPCSpeaker()) >= 1))
iPassed = 1; */
if(iDivine == 0)
return FALSE;
return TRUE;
}