summaryrefslogtreecommitdiff
path: root/npc/quests/mage_solution.txt
diff options
context:
space:
mode:
authorDastgir <dastgirpojee@rocketmail.com>2015-12-10 15:35:54 +0530
committerHaru <haru@dotalux.com>2015-12-18 05:13:36 +0100
commit48122727289c06906d8c4e38e183bb0a16ddbb53 (patch)
treedecd7a501b337f730cb2c16285e2d10049a4026e /npc/quests/mage_solution.txt
parentecb934ebba6ac3fbd35d8816c1802f0d134ef4ac (diff)
downloadhercules-48122727289c06906d8c4e38e183bb0a16ddbb53.tar.gz
hercules-48122727289c06906d8c4e38e183bb0a16ddbb53.tar.bz2
hercules-48122727289c06906d8c4e38e183bb0a16ddbb53.tar.xz
hercules-48122727289c06906d8c4e38e183bb0a16ddbb53.zip
ItemID to Constant: quests/woe Folder
Diffstat (limited to 'npc/quests/mage_solution.txt')
-rw-r--r--npc/quests/mage_solution.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/quests/mage_solution.txt b/npc/quests/mage_solution.txt
index 696b3bffa..fad23dba1 100644
--- a/npc/quests/mage_solution.txt
+++ b/npc/quests/mage_solution.txt
@@ -45,13 +45,13 @@ pay_arche,122,100,0 script Dollshoi 4_M_ORIENT01,{
mes "Hey! You don't have enough money to cover my 50 Zeny charge.";
close;
}
- if (countitem(1092) == 0) {
+ if (countitem(Empty_Cylinder) == 0) {
mes "You can't carry solutions without a bottle! Bring me an Empty Test Tube.";
close;
}
- delitem 1092,1; //Empty_Cylinder
+ delitem Empty_Cylinder,1;
Zeny -= 50;
- getitem 1089,1; //Payon_Potion
+ getitem Payon_Potion,1;
}
close;
}
@@ -66,13 +66,13 @@ moc_ruins,91,150,0 script Ponka-Hontas 4_F_04,{
mes "I'm sorry, but you don't have enough money to cover the 50 Zeny fee.";
close;
}
- if (countitem(1092) == 0) {
+ if (countitem(Empty_Cylinder) == 0) {
mes "You can't carry liquids without using a bottle. Bring an Empty Test Tube the next time you see me.";
close;
}
- delitem 1092,1; //Empty_Cylinder
+ delitem Empty_Cylinder,1;
Zeny -= 50;
- getitem 1088,1; //Morocc_Potion
+ getitem Morocc_Potion,1;
}
close;
}