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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
//===== eAthena Script ========================================
//= Lighthalzen Bank Area
//===== By: ==================================================
//= Au{R}oN (Translate by Alan)
//===== Current Version: =====================================
//= 1.1
//===== Compatible With: =====================================
//= eAthena 1.0+
//===== Description: =========================================
//= Lighthalzen Bank
//===== Additional Comments: =================================
//= Converted from Aegis
//= 1.0 Add all Bank NPC (TEMPORARY NAME and FACING PROBABLY INCORRECT) [Au{R}oN]
//= 1.1 Add correct name, and change some dialogue. [Au{R}oN]
//============================================================
lhz_in02,34,41,7 script Arthur 849,{
mes "[Arthur]";
mes "The chairs here are";
mes "so not ergonomic. And";
mes "they're uncomfortable too!";
mes "But it's sooo cool inside this";
mes "bank and I just wanted to get";
mes "get away from all this heat...";
close;
}
lhz_in02,28,39,3 script Helen 703,{
mes "[Helen]";
mes "You know, maybe when";
mes "I grow up, i'll be a bank";
mes "clerk. That sounds like a";
mes "really nice job, don't you";
mes "think? It's laid back and posh...";
close;
}
lhz_in02,31,34,3 script Tadem 847,{
mes "[Tadem]";
mes "I do so enjoy the";
mes "architectural structure";
mes "of this bank. It's quite";
mes "artistic with both classical";
mes "and modern elements. Would";
mes "you not agree? Fascinating";
close;
}
lhz_in02,31,33,3 script Gracie 863,{
mes "[Gracie]";
mes "Oh, it's so comfortable";
mes "in there~Though, why are";
mes "we inside the bank when";
mes "the bank services aren't even";
mes "working? Yes, we're standing,";
mes "but we're doing it in comfort";
next;
mes "[Gracie]";
mes "In fact, it's so";
mes "comfortable here,";
mes "I think I'll refuse to leave.";
mes "Though, I'm willing to change";
mes "my mind if you can find a place";
mes "that's even more comfortable.";
close;
}
lhz_in02,34,22,8 script Bank Clerk::1_st 755,{
mes "[Bank Clerk]";
mes "Due to some critical system";
mes "errors, all of the bank services";
mes "have been temporarily stopped.";
mes "We apologize for any inconvenience.";
mes "and appreciate your understanding.";
close;
}
lhz_in02,21,25,9 duplicate(1_st) Bank Clerk::2_nd 86
lhz_in02,21,38,9 duplicate(1_st) Bank Clerk::3_th 86
|