Initial Commit

Initial Commit
This commit is contained in:
Jaysyn904
2023-09-21 19:51:32 -04:00
parent 65b5bd7fd3
commit 102ba7dab6
6400 changed files with 5741850 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
void main()
{
if (GetPlotFlag(OBJECT_SELF))
{
return;
}
ExecuteScript("nw_ch_ac6", OBJECT_SELF);
effect eVis = EffectVisualEffect(VFX_IMP_UNSUMMON);
if (GetLocalInt(OBJECT_SELF, "lowhp"))
{
return;
}
else if ( GetCurrentHitPoints( OBJECT_SELF ) <= 5 )
{
SpeakString("My service is concluded.", TALKVOLUME_TALK);
SetLocalInt(OBJECT_SELF, "lowhp", 1);
DelayCommand(1.0, ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, OBJECT_SELF));
DelayCommand(2.5, DestroyObject(OBJECT_SELF));
}
}