blob: dda2600964bb52ef7e7ac691de5d9b4af482a96e (
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
|
001-2,28,21,0|script|Tathin|107
{
mes "[Tathin]";
mes "\"Hello what Can I do for you?\"";
next;
menu
"I'd like to join a party.", L_Give_Party,
"I'd like to create my own party.", L_Give_Make_Party,
"Nothing, I guess.", L_Close;
L_Give_Party:
mes "[Tathin]";
mes "\"You'll need to be invited by an existing member of a party to join it. You may also create your own party.\"";
next;
mes "[Tathin]";
mes "\"Remember, parties cannot share experience if any members are more than 10 levels apart.\"";
menu
"I'd like to create my own party.", L_Give_Make_Party,
"Goodbye.", L_Close;
L_Give_Make_Party:
mes "[Tathin]";
mes "\"You can create parties with the 'new' or 'create' commands on the Party tab in the client. Parties need to have unique names.\"";
close;
L_Close:
close;
}
|