diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-06-04 10:41:12 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-06-04 10:41:12 -0300 |
commit | a6d8f61dbc90021de9a2a77d5cc1a1f20bae5e36 (patch) | |
tree | 33b76846aeed03ce04c0a9f3afa0c9ccbaf63942 /npc | |
parent | 7b9655c8ec3d39a2a4a8c2cd2ebc12b7c7b1d39c (diff) | |
download | serverdata-a6d8f61dbc90021de9a2a77d5cc1a1f20bae5e36.tar.gz serverdata-a6d8f61dbc90021de9a2a77d5cc1a1f20bae5e36.tar.bz2 serverdata-a6d8f61dbc90021de9a2a77d5cc1a1f20bae5e36.tar.xz serverdata-a6d8f61dbc90021de9a2a77d5cc1a1f20bae5e36.zip |
Clean these timers
Diffstat (limited to 'npc')
-rw-r--r-- | npc/015-8-1/campaign.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/npc/015-8-1/campaign.txt b/npc/015-8-1/campaign.txt index 5c6062d87..4a6c59c05 100644 --- a/npc/015-8-1/campaign.txt +++ b/npc/015-8-1/campaign.txt @@ -132,6 +132,13 @@ OnW03: // Assassin, HoodedNinja, HoodedAssassin (boss) // Mouboo, ForestMushroom, Fluffy, Sagratha (boss) OnSagrathaDie: + .@m$=getmap(); + .@n$=instance_npcname(.name$); + + deltimer(.@n$+"::OnW01"); + deltimer(.@n$+"::OnW02"); + deltimer(.@n$+"::OnW03"); + npctalk "Defeat!"; dispbottom l("You failed to protect Sagratha..."); // and will need to start the quest again..."); setq1 HurnscaldQuest_Sagratha, 3; @@ -140,6 +147,13 @@ OnSagrathaDie: end; OnSagrathaWin: + .@m$=getmap(); + .@n$=instance_npcname(.name$); + + deltimer(.@n$+"::OnW01"); + deltimer(.@n$+"::OnW02"); + deltimer(.@n$+"::OnW03"); + npctalk "Victory!"; unittalk(.SAGRATHA, "ERROR, could not open dialog"); mapannounce(.@m$, "##2"+l("You win!"), 0); |