forked from johnl0l/AdobeRO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBloody Branch Quest.txt
45 lines (40 loc) · 998 Bytes
/
Bloody Branch Quest.txt
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
// Ariane & Venus
// EternityRO
// A mirage ...
itemmall,174,57,5 script Bloody Branch 497,{
mes "[Bloody Branch]";
mes "I can create for you";
mes "^61B031Bloody Branch ^000000!";
next;
menu "What should I give?",L_Bl2, "Make Bloody Branch",-,"Cancel",L_Cancel2;
mes "[Bloody Branch]";
mes "Then let's see...";
next;
if(countitem(604)<100) goto L_NoMake2;
delitem 604,100;
mes "[Bloody Branch]";
mes "Leave me a second.....";
next;
getitem 12103,1;
mes "[Bloody Branch]";
mes "Here it is !!!";
close;
L_NoMake2:
mes "[Bloody Branch]";
mes "You do not have the required items.";
mes "Come back when you have !...";
close;
L_Bl2:
mes "[Bloody Branch]";
mes "For a Bloody Branch you must bring me :";
mes "^362ED6 100 Dead Branch ^000000";
close;
L_Leave2:
mes "[Bloody Branch]";
mes "See you soon !";
close;
L_Cancel2:
mes "[Bloody Branch]";
mes "Too bad for you...";
close;
}