PRC8/nwn/nwnprc/trunk/scripts/prc_hvcm_btlcst.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

32 lines
999 B
Plaintext

// Written by Stratovarius
// Turns Battlecast on and off for the Havoc Mage.
#include "prc_spell_const"
#include "prc_ipfeat_const"
#include "prc_alterations"
void main()
{
object oPC = OBJECT_SELF;
object oSkin = GetPCSkin(oPC);
string nMes = "";
if(!GetLocalInt(oPC, "HavocMageBattlecast"))
{
SetLocalInt(oPC, "HavocMageBattlecast", TRUE);
//AddItemProperty(DURATION_TYPE_PERMANENT, PRCItemPropertyBonusFeat(IP_CONST_IMP_CC), oSkin);
IPSafeAddItemProperty(oSkin, PRCItemPropertyBonusFeat(IP_CONST_IMP_CC), 0.0f, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE);
nMes = "*Battlecast Activated*";
}
else
{
// Removes effects
PRCRemoveSpellEffects(SPELL_BATTLECAST, oPC, oPC);
DeleteLocalInt(oPC, "HavocMageBattlecast");
nMes = "*Battlecast Deactivated*";
RemoveSpecificProperty(oSkin, ITEM_PROPERTY_BONUS_FEAT, IP_CONST_IMP_CC);
}
FloatingTextStringOnCreature(nMes, oPC, FALSE);
}