Initial upload. PRC8 has been added. Module compiles, PRC's default AI & treasure scripts have been integrated. Started work on top hak for SLA / Ability / Scripting modifications.
71 lines
2.0 KiB
Plaintext
71 lines
2.0 KiB
Plaintext
///::///////////////////////////////////////////////
|
|
//:: Continual Flame
|
|
//:: x0_s0_clight.nss
|
|
//:: Copyright (c) 2002 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Permanent Light spell
|
|
|
|
XP2
|
|
If cast on an item, item will get permanently
|
|
get the property "light".
|
|
Previously existing permanent light properties
|
|
will be removed!
|
|
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Brent Knowles
|
|
//:: Created On: July 18, 2002
|
|
//:://////////////////////////////////////////////
|
|
//:: VFX Pass By:
|
|
//:: Added XP2 cast on item code: Georg Z, 2003-06-05
|
|
//:://////////////////////////////////////////////
|
|
|
|
//#include "NW_I0_SPELLS"
|
|
#include "x2_inc_spellhook"
|
|
|
|
void main()
|
|
{
|
|
// If code within the PreSpellCastHook (i.e. UMD) reports FALSE, do not run
|
|
// this spell.
|
|
if (!X2PreSpellCastCode())
|
|
{
|
|
return;
|
|
}
|
|
int nDuration;
|
|
int nMetaMagic;
|
|
|
|
object oTarget = GetSpellTargetObject();
|
|
|
|
// Handle spell cast on item....
|
|
if (GetObjectType(oTarget) == OBJECT_TYPE_ITEM && ! CIGetIsCraftFeatBaseItem(oTarget))
|
|
{
|
|
// Do not allow casting on not equippable items
|
|
if (!IPGetIsItemEquipable(oTarget))
|
|
{
|
|
// Item must be equipable...
|
|
FloatingTextStrRefOnCreature(83326,OBJECT_SELF);
|
|
return;
|
|
}
|
|
itemproperty ip = ItemPropertyLight (IP_CONST_LIGHTBRIGHTNESS_BRIGHT, IP_CONST_LIGHTCOLOR_WHITE);
|
|
IPSafeAddItemProperty(oTarget, ip, HoursToSeconds(1),X2_IP_ADDPROP_POLICY_REPLACE_EXISTING,TRUE,TRUE);
|
|
}
|
|
else
|
|
{
|
|
|
|
//Declare major variables
|
|
effect eVis = (EffectVisualEffect(VFX_DUR_LIGHT_WHITE_20));
|
|
effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_POSITIVE);
|
|
effect eLink = SupernaturalEffect(EffectLinkEffects(eVis, eDur));
|
|
|
|
//Fire cast spell at event for the specified target
|
|
SignalEvent(oTarget, EventSpellCastAt(OBJECT_SELF, 419, FALSE));
|
|
|
|
//Apply the VFX impact and effects
|
|
ApplyEffectToObject(DURATION_TYPE_PERMANENT, eLink, oTarget);
|
|
}
|
|
}
|
|
|
|
|
|
|