diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-10-28 21:47:27 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-10-28 21:47:27 -0300 |
commit | 5760e09aa12224aff92508befc6c62c5645df019 (patch) | |
tree | 12f593a6c26fc4194b268a13e03524e47b3dd842 /npc/017-10 | |
parent | 5043315e96c04dd3e1c6c026aa910613fb8c79df (diff) | |
download | serverdata-5760e09aa12224aff92508befc6c62c5645df019.tar.gz serverdata-5760e09aa12224aff92508befc6c62c5645df019.tar.bz2 serverdata-5760e09aa12224aff92508befc6c62c5645df019.tar.xz serverdata-5760e09aa12224aff92508befc6c62c5645df019.zip |
Fix bugs. It is not optimal yet (in special, you need HP) but will do.
Diffstat (limited to 'npc/017-10')
-rw-r--r-- | npc/017-10/airship.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/npc/017-10/airship.txt b/npc/017-10/airship.txt index cebfa62ee..751be8cea 100644 --- a/npc/017-10/airship.txt +++ b/npc/017-10/airship.txt @@ -36,7 +36,7 @@ OnTouch: addtimer 70000, "#ToFortress::OnWarper"; addtimer 60000, "#ToFortress::OnNotif"; } - end; + close; OnNotif: specialeffect FX_MAGIC, SELF, getcharid(3); @@ -56,6 +56,8 @@ OnWarper: 017-10,63,28,0 script #ToFortressAbort NPC_NO_SPRITE,5,0,{ end; OnTouch: + removespecialeffect(FX_CIRCLE, SELF, getcharid(3)); + atcommand("@refresh"); // FIXME :( deltimer "#ToFortress::OnWarper"; deltimer "#ToFortress::OnNotif"; end; |