diff options
author | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-08-13 09:13:21 +0000 |
---|---|---|
committer | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-08-13 09:13:21 +0000 |
commit | f7390b98e9b1d4f23d522bfeb2575201ee85f467 (patch) | |
tree | f7404eb6fb54c69b2d80f0ef5b69767eefcf5f6f /npc/quests/quests_prontera.txt | |
parent | a07d9f1bac5a32799d359476cdf23d154b0a97ee (diff) | |
download | hercules-f7390b98e9b1d4f23d522bfeb2575201ee85f467.tar.gz hercules-f7390b98e9b1d4f23d522bfeb2575201ee85f467.tar.bz2 hercules-f7390b98e9b1d4f23d522bfeb2575201ee85f467.tar.xz hercules-f7390b98e9b1d4f23d522bfeb2575201ee85f467.zip |
replaced some item names with item IDs, also fixed a bug in skill quest (some items weren't deleted)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10992 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/quests_prontera.txt')
-rw-r--r-- | npc/quests/quests_prontera.txt | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/npc/quests/quests_prontera.txt b/npc/quests/quests_prontera.txt index 8cee78a3e..2aa06a979 100644 --- a/npc/quests/quests_prontera.txt +++ b/npc/quests/quests_prontera.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= kobra_k88; L0ne_W0lf //===== Current Version: ===================================== -//= 1.7b +//= 1.7c //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -30,6 +30,7 @@ //= 1.6a Fixed a couple spelling mistakes. [L0ne_W0lf] //= 1.7 Updated "Ph.D Quest" Dialogs. [Samuray22] //= 1.7b Fixed some minor typos. [SinSloth] +//= 1.7c replaced item "names" with item id. [Lupus] //============================================================ // Prontera Culvert @@ -150,7 +151,7 @@ prt_fild05,270,212,5 script Culvert Guardian 105,{ // Ph.D Hat Quest //============================================================ prt_in,38,108,3 script Teacher 53,{ - if(countitem("Illusion_Flower") > 0 && countitem("Hinalle") > 0 && countitem("Aloe") > 0 && countitem("Ment") > 0) { + if(countitem(710) > 0 && countitem(703) > 0 && countitem(704) > 0 && countitem(708) > 0) { mes "[Teacher]"; mes "My God! The Flower you are holding..."; next; @@ -164,12 +165,12 @@ prt_in,38,108,3 script Teacher 53,{ mes "If you give them to me... I... I will give my precious item..."; close; case 2: - if(countitem("Illusion_Flower") > 0 && countitem("Hinalle") > 0 && countitem("Aloe") > 0 && countitem("Ment") > 0) { - delitem "Illusion_Flower",1; - delitem "Hinalle",1; - delitem "Aloe",1; - delitem "Ment",1; - getitem "Ph.D_Hat",1; + if(countitem(710) > 0 && countitem(703) > 0 && countitem(704) > 0 && countitem(708) > 0) { + delitem 710,1; + delitem 703,1; + delitem 704,1; + delitem 708,1; + getitem 5012,1; mes "[Teacher]"; mes "Thank you so much! First time in my life someone is nice to me!"; mes "I will give you my precious item like I promised you."; |