diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-09-13 22:27:43 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-09-13 22:27:43 -0300 |
commit | 581446f0c0f211b996bad9e3d3db8f14ceaa6bf3 (patch) | |
tree | f39e86478c2d273d5facb52ec19e8039017bf7af | |
parent | e8596019c219152f53e0f89244b8ded88356fc56 (diff) | |
download | serverdata-581446f0c0f211b996bad9e3d3db8f14ceaa6bf3.tar.gz serverdata-581446f0c0f211b996bad9e3d3db8f14ceaa6bf3.tar.bz2 serverdata-581446f0c0f211b996bad9e3d3db8f14ceaa6bf3.tar.xz serverdata-581446f0c0f211b996bad9e3d3db8f14ceaa6bf3.zip |
In case the player misses the success message
-rw-r--r-- | npc/018-5-4/elder.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/npc/018-5-4/elder.txt b/npc/018-5-4/elder.txt index bf150d1e3..ee87b8fb7 100644 --- a/npc/018-5-4/elder.txt +++ b/npc/018-5-4/elder.txt @@ -294,12 +294,14 @@ function elderPirateVictory { stopnpctimer(); .pirate_killed = 0; .duck_killed = -50; // Set to -50 to make sure defeat doesn't trigger when monsters are killed - announce("Duck Elder: Success! The pirates have been thwarted.", bc_self); + announce("Duck Elder : Success! The pirates have been thwarted.", bc_self); setnpcdisplay .name$, NPC_DUCK_ELDER; setq(LilitQuest_PiratesOfSARAH, 3); getmapxy(.@m$, .@x, .@y, 0); killmonsterall(.@m$); warp "018-5-4", .@x, .@y; + sleep2(10); + dispbottom l("Duck Elder : Success! The pirates have been thwarted."); end; } |