blob: 825d6bc37031093e87154dced32b7af015ca2bfe (
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
|
// Evol scripts.
// Author:
// Reid
// Description:
// Newbie merchant.
// Size = 2
// Gender = 1
000-1,83,98,0 script Fexil 108,{
mesn;
mesq lg("Greetings traveler.");
next;
mesq l("I have some clothes and other things for you at a fine price!");
next;
mesq l("What I sell comes from every corner of this archipelago.");
next;
mesq lg("Interested?");
next;
menu
l("Yes, why not."), L_Accepted,
l("No, sorry."), -;
mes "";
mesn;
mesq l("Oh... Well, I just started to trade... Thus my technique may not be the best.");
next;
mesq lg("Anyway, if you ever feel interested, just check my bag!");
close;
L_Accepted:
shop "Bag";
closedialog;
close;
}
|