Further PRC integration

Further PRC integration.  Class & race integration.  Updated PoA loot spawn scripts for PRC classes.  Integrated PRC NPC event scripts.  Full compile.
This commit is contained in:
Jaysyn904
2022-10-09 22:53:12 -04:00
parent 55766b63b5
commit baf0860664
1708 changed files with 1746 additions and 242 deletions

View File

@@ -5,16 +5,25 @@
//:: Created By: Script Wizard
//:: Created On: 9/11/2008 11:46:37 AM
//:://////////////////////////////////////////////
#include "prc_class_const"
int StartingConditional()
{
// Restrict based on the player's class
int iPassed = 0;
if(GetLevelByClass(CLASS_TYPE_DRUID, GetPCSpeaker()) >= 1)
return TRUE;
object oPC = GetPCSpeaker();
// Restrict based on the player's class
int nClass;
nClass = GetLevelByClass(CLASS_TYPE_DRUID, oPC)
+GetLevelByClass(CLASS_TYPE_HATHRAN, oPC);
if(nClass <= 0)
return FALSE;
return FALSE;
return TRUE;
}