9 lines
246 B
Plaintext
9 lines
246 B
Plaintext
|
/// if trap is disarmed it will GET THE LION TO RE-ARM IT in 5 mins
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
GiveXPToCreature(GetLastDisarmed(),10);
|
||
|
SetLocalInt(OBJECT_SELF,"triggered",1);
|
||
|
DelayCommand(100.0,SignalEvent(GetObjectByTag("jw_lion"),EventUserDefined(50)));
|
||
|
}
|