diff options
author | KarLaeda <KarLaeda@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-11-28 18:15:10 +0000 |
---|---|---|
committer | KarLaeda <KarLaeda@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-11-28 18:15:10 +0000 |
commit | de9ba8dc89aaa1ba7d0d7bab06001e3e284a2d4d (patch) | |
tree | 6dddbfbac5570e19a31ef6e37632fe386dcf8536 | |
parent | 54fe748a4dbc548687f71a27a32b7d46a920bfff (diff) | |
download | hercules-de9ba8dc89aaa1ba7d0d7bab06001e3e284a2d4d.tar.gz hercules-de9ba8dc89aaa1ba7d0d7bab06001e3e284a2d4d.tar.bz2 hercules-de9ba8dc89aaa1ba7d0d7bab06001e3e284a2d4d.tar.xz hercules-de9ba8dc89aaa1ba7d0d7bab06001e3e284a2d4d.zip |
Fixed Thanatos Tower Quest
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9349 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | npc/quests/thana_quest.txt | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/npc/quests/thana_quest.txt b/npc/quests/thana_quest.txt index 71fe4810b..5a6e455a6 100644 --- a/npc/quests/thana_quest.txt +++ b/npc/quests/thana_quest.txt @@ -1580,22 +1580,23 @@ thana_boss.gat,141,217,0 script Carvings#6 111,{ if ($Thana == 15) {
- mes "[Carvings]";
- mes "You stepped on the plate, and it seems it activated some sort of mechanism.";
- next;
-
- if (!getmapmobs("thana_boss.gat")) {
- monster "thana_boss.gat",135,119,"Thanatos",1708,1,"TimerThana::OnThanaDead";
- stopnpctimer "TimerThana";
- set $Thana, $Thana | 16;
- mapannounce "thana_boss.gat", "The Seal of Thanatos has been broken.",bc_npc;
- mes "[Carvings]";
- mes "You hear the screams of the undead coming from below...";
- close;
- } else {
mes "[Carvings]";
- mes "But nothing happened...";
- close;
+ mes "You stepped on the plate, and it seems it activated some sort of mechanism.";
+ next;
+
+ if (!getmapmobs("thana_boss.gat")) {
+ monster "thana_boss.gat",135,119,"Thanatos",1708,1,"TimerThana::OnThanaDead";
+ stopnpctimer "TimerThana";
+ set $Thana, $Thana | 16;
+ mapannounce "thana_boss.gat", "The Seal of Thanatos has been broken.",bc_npc;
+ mes "[Carvings]";
+ mes "You hear the screams of the undead coming from below...";
+ close;
+ } else {
+ mes "[Carvings]";
+ mes "But nothing happened...";
+ close;
+ }
}
mes "[Carvings]";
|