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_morocc.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_morocc.txt')
-rw-r--r-- | npc/quests/quests_morocc.txt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/npc/quests/quests_morocc.txt b/npc/quests/quests_morocc.txt index 09d7af125..fb217a15b 100644 --- a/npc/quests/quests_morocc.txt +++ b/npc/quests/quests_morocc.txt @@ -15,8 +15,8 @@ //= 1.3a added GM lvl check as in other invansion quests [Lupus] //= 1.4 Fixed a small bug in Dandelion's Request. [SinSloth] //= 1.5 Fixed a little bug with "Job_Alchemist" changed to "Job_Alchem". [Samuray22] -// -Thanks to Nobuo //= 1.6 Fixed a nasty bug in last part of the quest. [SinSloth] +//= 1.6a replaced item "names" with item id. [Lupus] //= 1.7 Fixed a bug with XP rewards. [SinSloth] //============================================================ @@ -45,14 +45,14 @@ morocc_in,142,100,4 script Pierce 89,{ mes "For producing ^3355FF'Stop Post'^000000, we need ^3355FF' 91100 Zeny '^000000"; mes "And 50 ^3355FF' Trunk '^000000 and one ^3355FF' Black Dyestuffs'^000000."; next; - if(countitem("Wooden_Block") > 49 && countitem("Black_Dyestuffs") > 0 && Zeny > 91099) { - delitem "Wooden_Block",50; - delitem "Black_Dyestuffs",1; + if(countitem(1019) > 49 && countitem(983) > 0 && Zeny > 91099) { + delitem 1019,50; + delitem 983,1; set Zeny,Zeny-91100; mes "[Pierce]"; mes "Alright! This is the famous ^3355FF'Stop Post '^000000 of 250 years history!"; mes "Thank you for shopping here! See you soon!"; - getitem "Stop_Post",1; + getitem 2272,1; close; } mes "[Pierce]"; @@ -100,19 +100,19 @@ morocc_in,76,163,4 script Marius 64,5,5{ mes "One ^3355FFGeek Glasses^000000! 100 ^3355FFSteel^000000! And ^3355FF50.000 Zeny^000000!"; close; case 2: - if (countitem("Spinning_Eyes") > 0 && countitem("Steel") > 99 && Zeny > 49999) { + if (countitem(2243) > 0 && countitem(999) > 99 && Zeny > 49999) { mes "[Marius]"; mes "Great! It is great!"; mes "I made one Binoculars!"; mes "And I found the right owner for it!"; next; - delitem "Spinning_Eyes",1; - delitem "Steel", 100; + delitem 2243,1; + delitem 999, 100; set Zeny,Zeny-50000; next; mes "[Marius]"; mes "Here you are... Binoculars!"; - getitem "Binoculars",1; + getitem 2296,1; next; mes "[Marius]"; mes "I hope you won't need to use this Binoculars..."; |