diff options
author | Mass <Mass@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-06 09:28:32 +0000 |
---|---|---|
committer | Mass <Mass@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-06 09:28:32 +0000 |
commit | 52040336b1e5b331ecd7744eb3d9ba9533eab599 (patch) | |
tree | d9a3f28606f5907051b35d2fec13048f708bf5af /npc/quests/newgears/mask_of_alarm.txt | |
parent | 34c5fb016f35aa69aa5de058162ced688cecd3eb (diff) | |
download | hercules-52040336b1e5b331ecd7744eb3d9ba9533eab599.tar.gz hercules-52040336b1e5b331ecd7744eb3d9ba9533eab599.tar.bz2 hercules-52040336b1e5b331ecd7744eb3d9ba9533eab599.tar.xz hercules-52040336b1e5b331ecd7744eb3d9ba9533eab599.zip |
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@474 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/newgears/mask_of_alarm.txt')
-rw-r--r-- | npc/quests/newgears/mask_of_alarm.txt | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/npc/quests/newgears/mask_of_alarm.txt b/npc/quests/newgears/mask_of_alarm.txt new file mode 100644 index 000000000..e79d3da63 --- /dev/null +++ b/npc/quests/newgears/mask_of_alarm.txt @@ -0,0 +1,44 @@ +//===== eAthena Script =======================================
+//= Mask of Alarm Quest
+//===== By: ==================================================
+//= Halca (1.0)
+//= Mass Zero (1.1)
+//===== Current Version: =====================================
+//= 1.1
+//===== Compatible With: =====================================
+//= Any eAthena Version.
+//===== Description: =========================================
+//= Seperate Mask of Alarm quest.
+//===== Additional Comments: =================================
+//=
+//============================================================
+
+aldebaran.gat,87,181,3 script Muslam 819,{
+ mes "[Muslam]";
+ mes "I love Alarms, so evil, just like me.";
+ mes "Touch me and I will rip your arm off!";
+ next;
+ mes "[Muslam]";
+ mes "Anyways... If you want a Mask of an Alarm,";
+ mes "bring me 3000 Zeny,";
+ mes "and 1 Monster Oxygen Mask.";
+ next;
+ mes "[Muslam]";
+ mes "Got these?";
+ next;
+ menu "Yep!",-,"Nope!",EXT;
+ if ((countitem(10002) < 1) || (Zeny < 300000)) GOTO EX_NR;
+ mes "[Muslam]";
+ mes "Great!";
+ next;
+ delitem 1002,1;
+ set Zeny,Zeny-300000;
+ getitem 5087,1;
+ mes "[Muslam]";
+ mes "Enjoy your item!";
+ close;
+EX_NR:
+ mes "[Muslam]";
+ mes "Kay! byeee.";
+ close;
+}
\ No newline at end of file |