summaryrefslogtreecommitdiff
path: root/npc/quests/newgears/mask_of_alarm.txt
diff options
context:
space:
mode:
authorValaris <Valaris@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-01-29 16:00:45 +0000
committerValaris <Valaris@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-01-29 16:00:45 +0000
commita2675f07d7da22a7c6ae11f545bf8f671e785a82 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /npc/quests/newgears/mask_of_alarm.txt
parentb8801ae9585201eaaf9fdf80d9c7117ee18f52e2 (diff)
downloadhercules-a2675f07d7da22a7c6ae11f545bf8f671e785a82.tar.gz
hercules-a2675f07d7da22a7c6ae11f545bf8f671e785a82.tar.bz2
hercules-a2675f07d7da22a7c6ae11f545bf8f671e785a82.tar.xz
hercules-a2675f07d7da22a7c6ae11f545bf8f671e785a82.zip
Clearing trunk.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5091 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/newgears/mask_of_alarm.txt')
-rw-r--r--npc/quests/newgears/mask_of_alarm.txt53
1 files changed, 0 insertions, 53 deletions
diff --git a/npc/quests/newgears/mask_of_alarm.txt b/npc/quests/newgears/mask_of_alarm.txt
deleted file mode 100644
index ede29d3be..000000000
--- a/npc/quests/newgears/mask_of_alarm.txt
+++ /dev/null
@@ -1,53 +0,0 @@
-//===== eAthena Script =======================================
-//= Mask of Alarm Quest
-//===== By: ==================================================
-//= Halca (1.0)
-//= Mass Zero (1.1)
-//===== Current Version: =====================================
-//= 1.3
-//===== Compatible With: =====================================
-//= Any eAthena Version.
-//===== Description: =========================================
-//= Seperate Alarm Mask quest.
-//===== Additional Comments: =================================
-//= 1.2 Fixed wrong labels, added missing text and labels,
-//= changed Zeny amount, fixed wrong item ID [Lupus]
-//= 1.3 Fixed possible exploit [Lupus]
-//============================================================
-
-aldebaran.gat,236,235,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 Alarm Mask,";
- mes "bring me 300,000 Zeny,";
- mes "and 1 Monster Oxygen Mask.";
- next;
- mes "[Muslam]";
- mes "Got these?";
- next;
- menu "Yep!",-,"Nope!",M_EXIT;
-
- if ((countitem(10002) < 1) || (Zeny < 300000)) GOTO L_NOITEM;//Items: Monster Oxygen Mask,
- mes "[Muslam]";
- mes "Great!";
- delitem 10002,1;//Items: Monster Oxygen Mask,
- set Zeny,Zeny-300000;
- next;
- getitem 5086,1;//Items: Alarm Mask,
- mes "[Muslam]";
- mes "Enjoy your item!";
- close;
-
-L_NOITEM:
- mes "[Muslam]";
- mes "Where is 1 Monster Oxygen Mask and 300,000 Zeny?";
- close;
-
-M_EXIT:
- mes "[Muslam]";
- mes "Mkay! byeee.";
- close;
-}