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