mirror of
http://prc.nwn.ee:3000/Jaysyn/PRC8.git
synced 2025-12-17 04:07:15 -05:00
Initial upload.
Adding base PRC 4.19a files to repository.
This commit is contained in:
24
trunk/scripts/pnp_lich_isdemi.nss
Normal file
24
trunk/scripts/pnp_lich_isdemi.nss
Normal file
@@ -0,0 +1,24 @@
|
||||
//::///////////////////////////////////////////////
|
||||
//:: FileName pnp_lich_isdemi
|
||||
//:://////////////////////////////////////////////
|
||||
//:://////////////////////////////////////////////
|
||||
//:: Created By: Script Wizard
|
||||
//:: Created On: 1/24/2004 9:30:45 AM
|
||||
//:://////////////////////////////////////////////
|
||||
#include "prc_alterations"
|
||||
#include "inc_epicspells"
|
||||
|
||||
// Determines if the the lich is able to start the process of becoming a demilich
|
||||
|
||||
int StartingConditional()
|
||||
{
|
||||
|
||||
// Restrict based on the player's class
|
||||
int iPassed = FALSE;
|
||||
|
||||
if((GetLevelByClass(CLASS_TYPE_LICH, GetPCSpeaker()) >= 4) &&
|
||||
GetIsEpicSpellcaster(GetPCSpeaker())) // if is an epic caster, meets prereq
|
||||
iPassed = TRUE;
|
||||
|
||||
return iPassed;
|
||||
}
|
||||
Reference in New Issue
Block a user