mirror of
http://prc.nwn.ee:3000/Jaysyn/PRC8.git
synced 2026-01-15 22:36:28 -05:00
Updated Release Archive
Updated Release Archive. Fixed Mage-killer prereqs. Removed old LETO & ConvoCC related files. Added organized spell scroll store. Fixed Gloura spellbook. Various TLK fixes. Reorganized Repo. Removed invalid user folders. Added DocGen back in.
This commit is contained in:
18
nwn/trunk/newspellbook/inv_splweave_act.nss
Normal file
18
nwn/trunk/newspellbook/inv_splweave_act.nss
Normal file
@@ -0,0 +1,18 @@
|
||||
#include "prc_feat_const"
|
||||
|
||||
void main()
|
||||
{
|
||||
object oPC = OBJECT_SELF;
|
||||
string sMes;
|
||||
|
||||
if(GetLocalInt(oPC, "INV_SPELLWEAVE"))
|
||||
{
|
||||
FloatingTextStringOnCreature("Eldritch Spellweave is already active!", oPC, FALSE);
|
||||
IncrementRemainingFeatUses(oPC, FEAT_ELDRITCH_SPELLWEAVE);
|
||||
}
|
||||
else
|
||||
{
|
||||
ApplyEffectToObject(DURATION_TYPE_INSTANT, EffectVisualEffect(VFX_IMP_PDK_FINAL_STAND), oPC);
|
||||
SetLocalInt(oPC, "INV_SPELLWEAVE", TRUE);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user