summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-03-11 09:42:27 +0000
committerLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-03-11 09:42:27 +0000
commitf16af9875351189970a11ca873720da3690e1520 (patch)
tree43d25c4018612fb9a8d09888b3f1c497e98c33a8 /npc
parentab76b5ee8de6220f739c6f0f2288df887a3a5f7e (diff)
downloadhercules-f16af9875351189970a11ca873720da3690e1520.tar.gz
hercules-f16af9875351189970a11ca873720da3690e1520.tar.bz2
hercules-f16af9875351189970a11ca873720da3690e1520.tar.xz
hercules-f16af9875351189970a11ca873720da3690e1520.zip
ipdated Mimc/MystCace cards. Update Thanatos Statues Quest.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5569 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc')
-rw-r--r--npc/Changelog.txt2
-rw-r--r--npc/custom/quests/tha_statues.txt31
2 files changed, 26 insertions, 7 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt
index 36db72348..75a404513 100644
--- a/npc/Changelog.txt
+++ b/npc/Changelog.txt
@@ -27,6 +27,8 @@ Nexon
Date Added
======
+03/11
+ * Updated, fixed Custom Thanatos Statues Quest, thx2Justin84 for help [Lupus]
03/10
* Fixed Turtle Island quest, got rid of 2 useless variables [Lupus]
* Added 3 Weapon shops, thanks to Muad_Dib. Still need SPRITES ID [Lupus]
diff --git a/npc/custom/quests/tha_statues.txt b/npc/custom/quests/tha_statues.txt
index d860d5c30..d33811847 100644
--- a/npc/custom/quests/tha_statues.txt
+++ b/npc/custom/quests/tha_statues.txt
@@ -3,13 +3,14 @@
//===== By: ==================================================
//= Bibilol & Moryagorn
//===== Current Version: =====================================
-//= 1.0
+//= 1.1
//===== Compatible With: =====================================
//= Any eAthena Version;
//===== Description: =========================================
//= Custom Thanatos Tower Quest
//===== Additional Comments: =================================
-//=
+//= 1.1 Fixed wrong NPC names in their dialogues, added
+//= Justin84's gems check in Sox NPC [Lupus]
//============================================================
@@ -221,7 +222,7 @@ tha_t12.gat,96,57,4 script Hox 111,{
close;
nook:
mes "[Hox]";
- mes "Sorry, Go back and talk to Nox.";
+ mes "Sorry, Go back and talk to Vox.";
next;
set TSQ_CHK,0;
close;
@@ -235,7 +236,7 @@ tha_t12.gat,153,17,4 script Dox 111,{
close;
nook:
mes "[Dox]";
- mes "Sorry, Go back and talk to Nox.";
+ mes "Sorry, Go back and talk to Hox.";
next;
set TSQ_CHK,0;
close;
@@ -245,16 +246,32 @@ tha_t12.gat,128,88,4 script Sox 111,{
if(TSQ_CHK != 4 ) goto nook;
mes "[Sox]";
mes "You have just passed the test successfully.";
+ next;
+ mes "[Sox]";
+ mes "You have to give me Red Magic Stone, Yellow Magic Stone, Blue Magic Stone & Green Magic Stone.";
+ next;
+ if(countitem(7426) < 1 || countitem(7427) < 1 || countitem(7428) < 1 || countitem(7429) < 1) goto nostone;
+ delitem 7426,1;
+ delitem 7427,1;
+ delitem 7428,1;
+ delitem 7429,1;
+ mes "[Sox]";
mes "I will now warp you to steps of Fate.";
mes "Good-bye.";
next;
set TSQ_CHK,0;
- warp "thana_step.gat", 186, 223;
+ warp "thana_step.gat", 186, 223;
close;
+
+nostone:
+ mes "[Sox]";
+ mes "Oh well, seems you don't have enough stones.";
+ close;
+
nook:
mes "[Sox]";
- mes "Sorry, Go back and talk to Nox.";
+ mes "Sorry, Go back and talk to Dox.";
next;
set TSQ_CHK,0;
close;
-}
+} \ No newline at end of file