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
50
51
52
53
54
55
|
//===== eAthena Script =======================================
//= Burning Blood Bandana Quest
//===== By: ==================================================
//= Halca (1.0)
//= Mass Zero (1.1)
//===== Current Version: =====================================
//= 1.1
//===== Compatible With: =====================================
//= Any eAthena Version.
//===== Description: =========================================
//= Seperate Burning Blood Bandana quest.
//===== Additional Comments: =================================
//=
//============================================================
yuno.gat,301,188,6 Genbolt 826,{
mes "[Genbolt]";
mes "Why, don't you think looking badass is most important?";
mes "After all, we all have to fend for ourselves in this world!";
next;
mes "[Genbolt]";
mes "I am the only one who can make you look the coolest,";
mes "as I can craft a ^000090Burning Blood Bandana^000000.";
mes "You can wear this, and you clench your fist without knowing";
mes "because of the raw power you feel!";
next;
menu "Wow! make me one!",-,"What do I need?",REQ,"Naw, bye",EXT;
if ((countitem(7216) < 300) || (countitem(7097) < 300) || (countitem(982) < 1) || (countitem(2211) < 1)) GOTO EX_NI;
mes "[Genbolt]";
mes "Very well, here you go.";
next;
delitem 7216,300;
delitem 7097,300;
delitem 982,1;
delitem 2211,1;
mes "[Genbolt]";
mes "Now I can make it...";
next;
getitem 5071,1;
mes "[Genbolt]";
mes "Enjoy.";
close;
REQ:
mes "[Genbolt]";
mes "Bring me:";
mes "300 Red Scarfs,";
mes "300 Burning Hearts,";
mes "1 White Dyestuff,";
mes "and 1 Bandana.";
close;
EXT:
mes "[Genbolt]";
mes "Bye then.";
close;
}
|