Fixed War Mind prereqs
Fixed War Mind prereqs.
This commit is contained in:
parent
5914ed2ab5
commit
f1d8241acf
@ -1,6 +1,6 @@
|
|||||||
//::///////////////////////////////////////////////
|
//::///////////////////////////////////////////////
|
||||||
//:: [PRC Feat Router]
|
//:: [PRC Feat Router]
|
||||||
//:: [inc_prc_function.nss]
|
//:: [prc_inc_function.nss]
|
||||||
//:://////////////////////////////////////////////
|
//:://////////////////////////////////////////////
|
||||||
//:: This file serves as a hub for the various
|
//:: This file serves as a hub for the various
|
||||||
//:: PRC passive feat functions. If you need to
|
//:: PRC passive feat functions. If you need to
|
||||||
|
@ -687,6 +687,19 @@ void WildMageReq(object oPC)
|
|||||||
SetLocalInt(oPC, "PRC_PresWildMageReq", 0);
|
SetLocalInt(oPC, "PRC_PresWildMageReq", 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Warmind(object oPC)
|
||||||
|
{
|
||||||
|
SetLocalInt(oPC, "PRC_AllowWarmind", 1);
|
||||||
|
|
||||||
|
int iPwrPoints = GetMaximumPowerPoints(oPC);
|
||||||
|
|
||||||
|
//:: Requires at least one Power Point
|
||||||
|
if (iPwrPoints > 0)
|
||||||
|
{
|
||||||
|
SetLocalInt(oPC, "PRC_AllowWarmind", 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void DalQuor(object oPC)
|
void DalQuor(object oPC)
|
||||||
{
|
{
|
||||||
SetLocalInt(oPC, "PRC_PrereqDalQuor", 1);
|
SetLocalInt(oPC, "PRC_PrereqDalQuor", 1);
|
||||||
@ -1503,6 +1516,7 @@ void main()
|
|||||||
RacialHD(oPC);
|
RacialHD(oPC);
|
||||||
Virtuoso(oPC);
|
Virtuoso(oPC);
|
||||||
LichPrereq(oPC);
|
LichPrereq(oPC);
|
||||||
|
Warmind(oPC);
|
||||||
DalQuor(oPC);
|
DalQuor(oPC);
|
||||||
Pyro(oPC);
|
Pyro(oPC);
|
||||||
Suel();
|
Suel();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user