PRC8/nwn/trunk/newspellbook/tob_etbl_bldg.nss
Jaysyn904 5914ed2ab5 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.
2023-08-22 10:00:21 -04:00

27 lines
630 B
Plaintext

/*
----------------
Eternal Blade
Blade guide vfx cast
tob_etbl_bldg.nss
----------------
10 MAR 09 by GC
*/ /** @file
Adds vfx for blade guide so that is can be removed
by PRCRemoveEffectsFromSpell()
*/
#include "tob_inc_tobfunc"
#include "tob_inc_recovery"
////#include "prc_alterations"
void main()
{
object oInitiator = PRCGetSpellTargetObject();//OBJECT_SELF;
effect eGuide = ExtraordinaryEffect(EffectVisualEffect(VFX_DUR_IOUNSTONE_BLUE));
SPApplyEffectToObject(DURATION_TYPE_PERMANENT, eGuide, oInitiator);//, 0.0f, FALSE, 19313);
SetLocalInt(oInitiator, "ETBL_BladeGuideVis", TRUE);
}