diff options
author | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-07 14:09:09 +0000 |
---|---|---|
committer | Playtester <Playtester@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-07 14:09:09 +0000 |
commit | 5ff2f8f9e559ccfea8d577abab8b018b07213b2d (patch) | |
tree | e0763a9f7ba1e6061af5ce10907eb044cedc0f97 | |
parent | 898e30a3c034c30ab26369a3cc322458e49aef49 (diff) | |
download | hercules-5ff2f8f9e559ccfea8d577abab8b018b07213b2d.tar.gz hercules-5ff2f8f9e559ccfea8d577abab8b018b07213b2d.tar.bz2 hercules-5ff2f8f9e559ccfea8d577abab8b018b07213b2d.tar.xz hercules-5ff2f8f9e559ccfea8d577abab8b018b07213b2d.zip |
Fixed Sea Otter Quest
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6511 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | npc/Changelog.txt | 2 | ||||
-rw-r--r-- | npc/quests/newgears/sea_otter_hat.txt | 7 |
2 files changed, 6 insertions, 3 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index cd1c121da..863762117 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -27,6 +27,8 @@ Nexon Date Added
======
+05/07
+ * Fixed Sea Otter Quest thanks to nolider [Playtester]
05/06
* Fixed the warp in the Turbo Track Room [Playtester]
05/04
diff --git a/npc/quests/newgears/sea_otter_hat.txt b/npc/quests/newgears/sea_otter_hat.txt index 244b9d564..79e7a6058 100644 --- a/npc/quests/newgears/sea_otter_hat.txt +++ b/npc/quests/newgears/sea_otter_hat.txt @@ -4,7 +4,7 @@ //= Halca (1.0)
//= Mass Zero (1.1)
//===== Current Version: =====================================
-//= 1.4
+//= 1.5
//===== Compatible With: =====================================
//= Any eAthena Version.
//===== Description: =========================================
@@ -14,6 +14,7 @@ //= 1.3 Fixed possible exploit [Lupus]
//= 1.4 Fixed required item (Lazy Racoon Hat -> Racoon Hat),
//= thanks to frugal [DracoRPG]
+//= 1.5 Transformation Leaf -> Smokie Leaf [Playtester]
//============================================================
xmas.gat,184,267,4 script Pretty Rency 818,{
@@ -23,7 +24,7 @@ xmas.gat,184,267,4 script Pretty Rency 818,{ mes "[Pretty Rency]";
mes "The requirements for this item, are very simple:";
mes "1 Raccoon Hat,";
- mes "1 Transformation Leaf";
+ mes "1 Smokie Leaf";
next;
mes "[Pretty Rency]";
mes "Do you have these items?";
@@ -32,7 +33,7 @@ xmas.gat,184,267,4 script Pretty Rency 818,{ if(countitem(5033) < 1 || countitem(5064) < 1) GOTO L_NOITEM;//Items: Raccoon Hat, Transformation Leaf,
delitem 5033,1;//Items: Raccoon Hat,
- delitem 5064,1;//Items: Transformation Leaf,
+ delitem 5064,1;//Items: Smokie Leaf,
mes "[Pretty Rency]";
mes "Congratulations!";
next;
|