PRC8/nwn/nwnprc/trunk/scripts/prc_at_legertrap.nss
Jaysyn904 6ec137a24e Updated AMS marker feats
Updated AMS marker feats.  Removed arcane & divine marker feats.  Updated Dread Necromancer for epic progression. Updated weapon baseitem models.  Updated new weapons for crafting & npc equip.
 Updated prefix.  Updated release archive.
2024-02-11 14:01:05 -05:00

51 lines
1.3 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Ranged Legerdemain- Disable Trap
//:: prc_at_legertrap.nss
//:://////////////////////////////////////////////
//::
//:: Allows caster to use skills at a range
//:: of up to 30 feet.
//::
//:://///////////////////////////
//:: Created By: Stratovariust
//:: Created On: Mar 4, 2004
//::////////////////////////////////////////////////////////////
#include "prc_inc_nwscript"
void main()
{
//Declare major variables
int nDC;
object oCaster = OBJECT_SELF;
object oTrap = PRCGetSpellTargetObject();
int nType = GetObjectType(oTrap);
if(nType == OBJECT_TYPE_DOOR
|| nType == OBJECT_TYPE_PLACEABLE
|| nType == OBJECT_TYPE_TRIGGER)
{
if(GetDistanceToObject(oTrap) <= 30.0)
{
nDC = GetTrapDisarmDC(oTrap);
nDC = nDC + 5;
if(GetIsSkillSuccessful(oCaster, SKILL_DISABLE_TRAP, nDC))
{
SetTrapDisabled(oTrap);
}
}
}
if(nType == OBJECT_TYPE_DOOR
|| nType == OBJECT_TYPE_PLACEABLE)
{
if(GetDistanceToObject(oTrap) <= 30.0)
{
nDC = GetLockUnlockDC(oTrap);
nDC = nDC + 5;
if (GetIsSkillSuccessful(oCaster, SKILL_OPEN_LOCK, nDC))
{
SetLocked(oTrap, FALSE);
}
}
}
}