Ancordia_PRC8/_removed/nw_s0_knock.nss
2024-06-14 00:06:09 -04:00

65 lines
2.0 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Knock
//:: NW_S0_Knock
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
Opens doors not locked by magical means.
*/
//:://////////////////////////////////////////////
//:: Created By: Preston Watamaniuk
//:: Created On: Nov 29, 2001
//:://////////////////////////////////////////////
//:: Last Updated By: Georg 2003/07/31 - Added signal event and custom door flags
//:: VFX Pass By: Preston W, On: June 22, 2001
#include "70_inc_spells"
#include "nw_i0_spells"
#include "x2_inc_spellhook"
void main()
{
/*
Spellcast Hook Code
Added 2003-06-23 by GeorgZ
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
spellsDeclareMajorVariables();
object oTarget;
effect eVis = EffectVisualEffect(VFX_IMP_KNOCK);
oTarget = GetFirstObjectInShape(SHAPE_SPHERE, 50.0, spell.Loc, FALSE, OBJECT_TYPE_DOOR | OBJECT_TYPE_PLACEABLE);
float fDelay;
int nResist;
while(GetIsObjectValid(oTarget))
{
SignalEvent(oTarget,EventSpellCastAt(spell.Caster,spell.Id));
fDelay = GetRandomDelay(0.5, 2.5);
if(!GetPlotFlag(oTarget) && GetLocked(oTarget))
{
nResist = GetDoorFlag(oTarget,DOOR_FLAG_RESIST_KNOCK);
if ((nResist == 0) && (GetLockUnlockDC(oTarget) < 31))
{
DelayCommand(fDelay, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oTarget));
AssignCommand(oTarget, ActionUnlockObject(oTarget));
}
else if (nResist == 1)
{
FloatingTextStrRefOnCreature(83887,spell.Caster); //
}
}
oTarget = GetNextObjectInShape(SHAPE_SPHERE, 50.0, spell.Loc, FALSE, OBJECT_TYPE_DOOR | OBJECT_TYPE_PLACEABLE);
}
}