65 lines
1.7 KiB
Plaintext
65 lines
1.7 KiB
Plaintext
|
///::///////////////////////////////////////////////
|
||
|
//:: Expeditious retreat
|
||
|
//:: x0_s0_exretreat.nss
|
||
|
//:: Copyright (c) 2002 Bioware Corp.
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
Increases movement rate to the max, allowing
|
||
|
the spell-caster to flee.
|
||
|
Also gives + 2 AC bonus
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Brent Knowles
|
||
|
//:: Created On: September 6, 2002
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Last Update By: Andrew Nobbs May 01, 2003
|
||
|
|
||
|
#include "NW_I0_SPELLS"
|
||
|
|
||
|
#include "x2_inc_spellhook"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
/*
|
||
|
Spellcast Hook Code
|
||
|
Added 2003-06-20 by Georg
|
||
|
If you want to make changes to all spells,
|
||
|
check x2_inc_spellhook.nss to find out more
|
||
|
|
||
|
*/
|
||
|
|
||
|
if (!X2PreSpellCastCode())
|
||
|
{
|
||
|
// If code within the PreSpellCastHook (i.e. UMD) reports FALSE, do not run this spell
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
// End of Spell Cast Hook
|
||
|
|
||
|
|
||
|
//Declare major variables
|
||
|
object oTarget = GetSpellTargetObject();
|
||
|
|
||
|
if (GetHasSpellEffect(SPELL_HASTE, oTarget) == TRUE)
|
||
|
{
|
||
|
return ; // does nothing if caster already has haste
|
||
|
}
|
||
|
effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_POSITIVE);
|
||
|
effect eFast = EffectMovementSpeedIncrease(150);
|
||
|
effect eLink = EffectLinkEffects(eFast, eDur);
|
||
|
|
||
|
int nMetaMagic = GetMetaMagicFeat();
|
||
|
int nDuration = GetCasterLevel(OBJECT_SELF);
|
||
|
if (nMetaMagic == METAMAGIC_EXTEND)
|
||
|
{
|
||
|
nDuration = nDuration *2; //Duration is +100%
|
||
|
}
|
||
|
|
||
|
//Fire cast spell at event for the specified target
|
||
|
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, 455, FALSE));
|
||
|
|
||
|
//Apply the VFX impact and effects
|
||
|
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oTarget, RoundsToSeconds(nDuration));
|
||
|
}
|