41 lines
715 B
Plaintext
41 lines
715 B
Plaintext
|
#include "jw_include_funct"
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
string sMyTag = GetTag(OBJECT_SELF);
|
||
|
//string sTag=GetStringLeft(sMyTag,8);
|
||
|
string sDiff=GetLocalString(OBJECT_SELF,"diff");
|
||
|
string sType=GetLocalString(OBJECT_SELF,"type");
|
||
|
object oCreator=GetLocalObject(OBJECT_SELF,"creator");
|
||
|
|
||
|
// the DC is the saving throw for half damage
|
||
|
int nDC=getdifficulty(sDiff);
|
||
|
nDC=nDC/2;
|
||
|
|
||
|
|
||
|
object oPC=GetLastDisarmed();
|
||
|
|
||
|
GiveXPToCreature(oPC,nDC);
|
||
|
|
||
|
// say we are no longer trapped
|
||
|
|
||
|
SetLocalInt(oCreator,"triggered",TRUE);
|
||
|
|
||
|
// destroy self
|
||
|
|
||
|
object oidDoor= OBJECT_SELF;
|
||
|
if (oidDoor != OBJECT_INVALID)
|
||
|
{
|
||
|
SetPlotFlag(oidDoor,0);
|
||
|
DestroyObject(oidDoor);
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|