mirror of
http://prc.nwn.ee:3000/Jaysyn/PRC8.git
synced 2026-03-18 01:39:23 -04: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:
24
nwn/trunk/epicspellscripts/wander_unseen.nss
Normal file
24
nwn/trunk/epicspellscripts/wander_unseen.nss
Normal file
@@ -0,0 +1,24 @@
|
||||
//:://////////////////////////////////////////////
|
||||
//:: FileName: "wander_unseen"
|
||||
/* Purpose: Wander Unseen - this is the ability that is granted to a player
|
||||
as the result of an Unseen Wanderer epic spell. Using this feat will
|
||||
either turn the player invisible, or if already in that state, visible
|
||||
again.
|
||||
*/
|
||||
//:://////////////////////////////////////////////
|
||||
//:: Created By: Boneshank
|
||||
//:: Last Updated On: March 13, 2004
|
||||
//:://////////////////////////////////////////////
|
||||
#include "prc_inc_spells"
|
||||
|
||||
void main()
|
||||
{
|
||||
PRCSetSchool(SPELL_SCHOOL_ILLUSION);
|
||||
|
||||
if(GetHasSpellEffect(SPELL_WANDER_UNSEEN))
|
||||
PRCRemoveEffectsFromSpell(OBJECT_SELF, SPELL_WANDER_UNSEEN);
|
||||
else
|
||||
ApplyEffectToObject(DURATION_TYPE_PERMANENT, SupernaturalEffect(EffectInvisibility(INVISIBILITY_TYPE_NORMAL)), OBJECT_SELF);
|
||||
|
||||
PRCSetSchool();
|
||||
}
|
||||
Reference in New Issue
Block a user