root/npc/custom/quests/ironcane.txt @ 1

Revision 1, 1.6 kB (checked in by jinshiro, 17 years ago)
RevLine 
[1]1//===== eAthena Script =======================================
2//= Quest For Iron Cain
3//===== By: ==================================================
4//= eA Dev Team
5//===== Current Version: =====================================
6//= 1.1
7//===== Compatible With: =====================================
8//= eAthena 1.0
9//===== Description: =========================================
10//= Iron Cain (lower part of a full helmet)
11//===== Additional Comments: =================================
12//= 1.1 Fixed exploit [Lupus]
13//============================================================
14
15payon,109,118,5 script  Iron Cain Quest 76,{
16        mes "[Iron Cain Quest]";
17        mes "Here's what you need";
18        mes "The requirements, should you be brave enough to collect them, are:";
19        mes "- 200 Orcish vouchers";
20        mes "- 1 Heroic Emblem";
21        next;
22        mes "[Iron Cain Quest]";
23        mes "Are you ready for me to make this special item?";
24        next;
25        menu "Sure am!",-, "The requirements are unfathomable!",L_Unfathomable;
26
27        mes "[Iron Cain Quest]";
28        if(countitem(931) < 200 || countitem(968) < 1) goto L_NotEnough;
29        delitem 931,200;
30        delitem 968,1;
31        mes "Wow!  You are brave indeed!";
32        next;
33        mes "[Iron Cain Quest]";
34        mes "Enjoy!";
35        getitem 2266,1;
36        close;
37
38L_NotEnough:
39        mes ". . .I'm sorry. You don't have enough money and items.";
40        mes "I can't afford to make this if you don't bring all materials needed.";
41        mes "Please understand this is to benefit heroes such as yourself!";
42        close;
43
44L_Unfathomable:
45        mes "[Iron Cain Quest]";
46        mes "What I had to go through was more unfathomable..";
47        mes "If you succeed in getting these items, you will have incredible strength!";
48        close;
49}
Note: See TracBrowser for help on using the browser.