PoA_PRC8/_module/nss/gc_is_ranger.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

20 lines
517 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName gc_is_ranger
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 9/11/2008 12:18:32 PM
//:://////////////////////////////////////////////
int StartingConditional()
{
// Restrict based on the player's class
int iPassed = 0;
if(GetLevelByClass(CLASS_TYPE_RANGER, GetPCSpeaker()) >= 1)
iPassed = 1;
if(iPassed == 0)
return FALSE;
return TRUE;
}