PoA_PRC8/_module/nss/gc_is_druid.nss
Jaysyn904 6937da5f87 Further PRC integration
Further PRC integration. Updated racial & class hooks.  Updated NPC AI  for PRC NPC events.  Updated loot generation tables for PRC classes.
2022-10-09 23:07:18 -04:00

21 lines
504 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName gc_is_druid
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 9/11/2008 11:46:37 AM
//:://////////////////////////////////////////////
int StartingConditional()
{
// Restrict based on the player's class
int iPassed = 0;
if(GetLevelByClass(CLASS_TYPE_DRUID, GetPCSpeaker()) >= 1)
return TRUE;
return FALSE;
}