PRC8/nwn/nwnprc/trunk/scripts/prc_levelup.nss
Jaysyn904 6ec137a24e Updated AMS marker feats
Updated AMS marker feats.  Removed arcane & divine marker feats.  Updated Dread Necromancer for epic progression. Updated weapon baseitem models.  Updated new weapons for crafting & npc equip.
 Updated prefix.  Updated release archive.
2024-02-11 14:01:05 -05:00

67 lines
2.6 KiB
Plaintext

/*
Put into: OnLevelup Event
*/
//:://////////////////////////////////////////////
//:: Created By: Stratovarius and DarkGod
//:: Created On: 2003-07-16
//:://////////////////////////////////////////////
//Added hook into EvalPRCFeats event
// Aaon Graywolf - Jan 6, 2004
//Added delay to EvalPRCFeats event to allow module setup to take priority
// Aaon Graywolf - Jan 6, 2004
#include "prc_inc_function"
#include "prc_inc_domain"
#include "psi_inc_psifunc"
#include "true_inc_trufunc"
#include "inv_inc_invfunc"
#include "tob_inc_tobfunc"
#include "prc_inc_wpnrest"
void main()
{
object oPC = GetPCLevellingUp();
//if(DEBUG) DoDebug("prc_levelup running for '" + GetName(oPC) + "'");
// Update class info for EvalPRCFeats()
SetupCharacterData(oPC);
object oSkin = GetPCSkin(oPC);
DelayCommand(0.0, ScrubPCSkin(oPC, oSkin));
DelayCommand(0.0, DeletePRCLocalInts(oSkin));
//if(DEBUG) DoDebug("prc_levelup: DeleteLocals");
// Gives people the proper spells from their bonus domains
// This should run before EvalPRCFeats, because it sets a variable
DelayCommand(0.1, CheckBonusDomains(oPC));
//if(DEBUG) DoDebug("prc_levelup: BonusDomain");
//All of the PRC feats have been hooked into EvalPRCFeats
//The code is pretty similar, but much more modular, concise
//And easy to maintain.
// - Aaon Graywolf
DelayCommand(0.2, EvalPRCFeats(oPC));
DelayCommand(0.4, DoWeaponsEquip(oPC));
//if(DEBUG) DoDebug("prc_levelup: PRCFeats");
// Check to see which special prc requirements (i.e. those that can't be done)
// through the .2da's, the newly leveled up player meets.
ExecuteScript("prc_prereq", oPC); // update prereqs now, for prc_enforce_feat
DelayCommand(0.5, ExecuteScript("prc_prereq", oPC)); // Execute again after delay so that deleveling (if necessary) gets to happen before it.
//:: Run PrC marker feat check
ExecuteScript("prc_enforce_mark", oPC);
ExecuteScript("prc_enforce_feat", oPC);
ExecuteScript("prc_enforce_psi", oPC);
//Restore Power Points for Psionics
ExecuteScript("prc_psi_ppoints", oPC);
//if(DEBUG) DoDebug("prc_levelup: PowerPoints");
DelayCommand(0.1, FeatSpecialUsePerDay(oPC));
// These scripts fire events that should only happen on levelup
ExecuteScript("prc_vassal_treas", oPC);
ExecuteScript("tob_evnt_recover", oPC);
ExecuteScript("moi_wchb_royal", oPC);
// Execute scripts hooked to this event for the player triggering it
ExecuteAllScriptsHookedToEvent(oPC, EVENT_ONPLAYERLEVELUP);
if(DEBUG) DoDebug("prc_levelup: Exiting");
}