Player Resource Consortium

 

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Rob Boss

Pages: [1]
1
Builders / Adding Manifester Progression
« on: March 20, 2017, 02:00:11 AM »
I'm trying to add manifester progression to the Tempest PrC. I've added what I believe are the necessary lines to psi_inc_core.nss but no matter what combination of Tempest levels (or even all levels) that I assign progression to, only the second level of Tempest seems to ever add progression. This is what I added in the section that has other PrC's with manifester progression
Code: [Select]
if(GetLevelByClass(CLASS_TYPE_TEMPEST, oCreature))
{
    nLevel += GetLevelByClass(CLASS_TYPE_TEMPEST, oCreature) - 1;
         if(GetLevelByClass(CLASS_TYPE_TEMPEST, oCreature) >= 5) nLevel -= 1;
         if(GetLevelByClass(CLASS_TYPE_TEMPEST, oCreature) >= 8) nLevel -= 1;
         if(GetLevelByClass(CLASS_TYPE_TEMPEST, oCreature) >= 10) nLevel -= 1;
}

Are there any other files I need to edit?

Pages: [1]