1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
018-1,77,60,0|script|Mike|113
{
mes "[Mike]";
mes "\"Be careful with the mines over there, during digging they broke in a monster nest and dangerous monsters inhabit it now. All mining operations have been suspended, but unfortunately, not everyone managed to get out in time or unharmed.\"";
next;
mes "[Mike]";
mes "\"So, I need black stingers to make some medicine to cure my sister.\"";
next;
set @dq_level, 40;
set @dq_cost, 16;
set @dq_count, 4;
set @dq_name$, "BlackScorpionStinger";
set @dq_friendly_name$, "black stingers";
set @dq_money, 2500;
set @dq_exp, 500;
callfunc "DailyQuest";
next;
mes "\"Hopefully I'll have enough soon.\"";
close;
}
|