Initial upload
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.
This commit is contained in:
17
_module/nss/jw_pltspik_tri_s.nss
Normal file
17
_module/nss/jw_pltspik_tri_s.nss
Normal file
@@ -0,0 +1,17 @@
|
||||
// if trap is trigerred, turn OFF the associated trigger
|
||||
|
||||
void main()
|
||||
{
|
||||
object oPC=GetEnteringObject();
|
||||
|
||||
if (ReflexSave(oPC,24,SAVING_THROW_TYPE_TRAP)==0)
|
||||
|
||||
{
|
||||
|
||||
ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectDamage(d6(5)+8,DAMAGE_TYPE_PIERCING),oPC);
|
||||
}
|
||||
|
||||
ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(VFX_IMP_SPIKE_TRAP ),oPC);
|
||||
SetLocalInt(GetObjectByTag(GetTag(OBJECT_SELF)+"t"),"trapped",FALSE);
|
||||
DestroyObject(OBJECT_SELF);
|
||||
}
|
||||
Reference in New Issue
Block a user