summaryrefslogtreecommitdiff
path: root/npc/cities/lighthalzen.txt
blob: 79c699f52b38301fe6938907df4cf1058a1edba5 (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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
//===== eAthena Script ======================================= 
//= Lighthalzen City
//===== By: ================================================== 
//=  erKURITA
//===== Current Version: ===================================== 
//= 0.3
//===== Compatible With: ===================================== 
//= eAthena 1.0
//===== Description: ========================================= 
//= Lighthalzen NPCs (Temporal names for now) [erKURITA]
//===== Additional Comments: ================================= 
//= 0.1 Placed temporal names, why there weren't on the SVN before? [erKURITA]
//= 0.2 Implemented some crap NPCs [MasterOfMuppets]
//= 0.3 Another load of NPCs. Scripted by Kargha [MasterOfMuppets]
//============================================================

lighthalzen.gat,154,100,5	script	Lighthalzen Guard#1	852,{end;}
lighthalzen.gat,207,310,5	script	Lighthalzen Guard#2	852,{end;}

lighthalzen.gat,239,64,5	script	Jade	862,{

	mes "[Jade]";
	mes "I've heard that there's a";
	mes "strange kingdom out there";
	mes "that's basically ruled by";
	mes "magic and swords, where";
	mes "adventurers are enlisted";
	mes "for the greater good.";
	next;
	mes "[Jade]";
	mes "So are you from";
	mes "Rune-Midgard?";
	mes "What do you think";
	mes "of our city with its";
	mes "advanced technology";
	mes "and economy? Huh...";
	next;
	mes "[Jade]";
	mes "Someday, I'd like";
	mes "to go visit the land";
	mes "where you came from.";
	mes "It sounds so fantastic";
	mes "and romantic in a way...";
	close;	

}

lighthalzen.gat,205,208,3	script	Greedy Looking Man	853,{

	mes "[Khramptd]";
	mes "The land around here";
	mes "is some pretty expensive";
	mes "property. Yes, it's perfect";
	mes "for building my awesome palace!";
	mes "I don't have enough funds at the";
	mes "moment, but the day will come~";
	close;

}

lhz_in02.gat,34,213,4	script	Maggie	91,{

	mes "[Maggie]";
	mes "Sure, I sell a lot";
	mes "of flowers here, but";
	mes "the lease that this city";
	mes "makes me pay cuts into";
	mes "my profits. It's almost not";
	mes "worth renting this property.";
	next;
	mes "[Maggie]";
	mes "I pay such a ridiculous";
	mes "amount for the lease and the";
	mes "laws here won't let me raise";
	mes "the price of my flowers. Why";
	mes "are the city officials so greedy?";
	close;

}

lighthalzen.gat,202,94,5	script	Wallace	847,{

	mes "[Wallace]";
	mes ".....";
	mes "That lady, working";
	mes "for that one company";
	mes "Kafra, Mafra or whatever";
	mes "She certainly is very charming.";
	next;
	mes "[Wallace]";
	mes "Now, if I were";
	mes "thirty years younger...";
	mes "Wait! I'm a rich and powerful";
	mes "man. I could ask her out now.";
	mes "Hm? What's that look for?";
	close;

}

lighthalzen.gat,182,102,3	script	Lucius	866,{

	mes "[Lucius]";
	mes "Hello youngster~";
	mes "Would you like to";
	mes "make a donation";
	mes "to help the hungry?";
	next;
	menu "Sure.",s_Sure,"No, thanks.",-;

s_Cancel:
	mes "[Lucius]";
	mes "I understand. Still,";
	mes "keep in mind that when";
	mes "you give from your heart,";
	mes "you will be rewarded tenfold.";
	mes "Though I admit, the benefits";
	mes "aren't always readily apparent.";
	close;

s_Sure:
	mes "[Lucius]";
	mes "Now, you can donate 1 to";
	mes "30,000 zeny that will be used";
	mes "to support the poor and feed";
	mes "starving children. If you wish";
	mes "to cancel, please enter '0'.";
	next;
	input @zenydonate;
		if(@zenydonate > 30000)goto s_Much;
		if(!@zenydonate)goto s_Cancel;
		if(Zeny < @zenydonate)goto s_NEnoughZ;
		set Zeny,Zeny - @zenydonate;
		set $donatedzeny,$donatedzeny + @zenydonate;
	mes "[Lucius]";
	mes "Thank you so much";
	mes "for your " + @zenydonate + " zeny donation.";
	mes "I promise that your money";
	mes "will be put to good use in";
	mes "benefiting the poor and needy.";
	next;
	mes "[Lucius]";
	mes "So far, I've received";
	mes "a total of " + $donatedzeny + " zeny in";
	mes "donations. I'm glad to see";
	mes "that there are still kinda and";
	mes "generous people in the world.";
	close;

s_Much:
	mes "[Lucius]";
	mes "I'm sorry but you can't";
	mes "donate more than 30,000";
	mes "zeny. Please choose another";
	mes "number.";
	close;

s_NEnoughZ:
	mes "[Lucius]";
	mes "I'm sorry but you do";
	mes "not have as much zeny";
	mes "as you wish to donate.";
	mes "Please come back when you";
	mes "do!";
	close;

}

lighthalzen.gat,147,105,3	script	Laqumet	869,{

	mes "[Laqumet]";
	mes "Sure, manliness is quite";
	mes "attractive, but I think women";
	mes "appreciate a guy who could";
	mes "sympathize and talk with them";
	mes "a little more. Don't you agree?";
	next;
	mes "[Laqumet]";
	mes "I might not be like Sefith,";
	mes "but I guess I've got a cute";
	mes "smile, a good personality and";
	mes "I'm a dandy to boo. Hopefull,";
	mes "my honesty and loyalty will";
	mes "help me find someone good.";
	close;

}

lhz_in02.gat,230,284,4	script	Hotel Employee	86,{

	mes "[Hotel Employee]";
	mes "Welcome to";
	mes "the Royal Dragon,";
	mes "where you can find the";
	mes "finest accomodations";
	mes "and the best service.";
	next;
	menu "Save Point",s_Save,"Rest - 5,000 zeny",s_Rest,"Cancel",-;

	mes "[Hotel Employee]";
	mes "Thank you and";
	mes "have a nice day.";
	close;

s_Save:
	savepoint "lhz_in02.gat",209,275;
	mes "[Hotel Employee]";
	mes "Thank you, your";
	mes "Respawn Point has";
	mes "been saved here in";
	mes "the Royal Dragon.";
	close;

s_Rest:
	if(Zeny < 5000)goto s_NEnoughZ;
	set Zeny,Zeny - 5000;
	mes "[Hotel Employee]";
	mes "Thank you~";
	mes "I hope you enjoy";
	mes "your stay in the";
	mes "Royal Dragon.";
	close2;
	warp "lhz_in02.gat",219,150;
	percentheal 100,100;
	sc_start SC_BLESSING,240000,10;
	skilleffect AL_BLESSING,0;
	end;

s_NEnoughZ:
	mes "[Hotel Employee]";
	mes "I'm sorry but you do not";
	mes "have enough zeny, please";
	mes "come back when you do!";
	close;
}

lhz_in02.gat,241,172,8	script	Hotel Employee	868,{

	mes "[Hotel Employee]";
	mes "Please use the stairs";
	mes "at the northern end to";
	mes "go downstairs so that you";
	mes "can go to the Front Desk.";
	mes "Thank you and I hope that";
	mes "you enjoy your stay here.";
	close;

}

lhz_in02.gat,210,189,2	script	Christopher Michael	849,{

	mes "[Christopher Michael]";
	mes "OoooOoh~";
	mes "Soooo comfortable";
	mes "Don't want to wake up.";
	mes "Don't want to get up.";
	mes "Ever again. OoOoooh...";
	close;

}

lhz_in02.gat,201,181,6	script	Safwat Fahmy	853,{

	mes "[Safwat Fahmy]";
	mes "This hotel is nice";
	mes "and comfortable, but";
	mes "to be quite frank, the";
	mes "drinks here are horrible.";
	mes "They're unfit for being";
	mes "drunk by men such as myself.";
	next;
	mes "[Safwat Fahmy]";
	mes "If this is the best hotel,";
	mes "I expect them to provide me";
	mes "with the best alcohol. When";
	mes "I stay at a hotel, that's what";
	mes "I want. To spend the entire";
	mes "day not being sober.";
	next;
	mes "[Safwat Fahmy]";
	mes "It looks like that";
	mes "today I'll be heading";
	mes "out ot to the bar again...";
	mes "I just wish there were";
	mes "some place quieter to drink.";
	close;

}

lhz_in02.gat,251,212,2	script	Hotel Employee	868,{

	mes "[Hotel Employee]";
	mes "This is the Couple Suite.";
	mes "A single can also check";
	mes "in here, but our hotel will";
	mes "prioritize couples when";
	mes "assigning this room.";
	close;

}

lhz_in02.gat,229,217,2	script	Tanoue	863,{

	mes "[Tanoue]";
	mes "This chair looks";
	mes "very nice, but it really";
	mes "chills my bottom. Brr...!";
	mes "It's mighty uncomfortable!";
	next;
	mes "[Tanoue]";
	mes "You know what the";
	mes "perfect chair would";
	mes "be like? It would be";
	mes "plush and have electronic";
	mes "massage and heating controls...";
	close;

}

lhz_in02.gat,209,277,4	script	Ben Allen	84,{

	mes "[Ben Allen]";
	mes "Aaahhh Oooooh~";
	mes "It's sooooo comfy~";
	mes "The air's so fresh and";
	mes "this couch is so plush...";
	mes "Why can't home be like this?";
	next;
	mes "[Ben Allen]";
	mes "I've been in those other";
	mes "hotels and let me tell you,";
	mes "this place is the best ever.";
	mes "After a night's sleep over";
	mes "here, I feel like a new man!";
	close;

}

lhz_in02.gat,221,276,4	script	Harp	869,{

	mes "[Harp]";
	mes "Oh sweet jiminy...";
	mes "That Kafra Lady is so hot.";
	mes "What a body. And those glasses.";
	mes "I just gotta ask her out somehow.";
	next;
	mes "[Harp]";
	mes "Hm, but what should";
	mes "I do? A love letter? Naw,";
	mes "that's kind of outdated.";
	mes "Argh, I can't think! Just";
	mes "looking at her makes me feel";
	mes "so happy! Praise be to Kafra!";
	close;

}

lhz_in02.gat,238,275,4	script	Hotel Employee	869,{

	mes "[Hotel Employee]";
	mes "\"Hospitality with a smile";
	mes "and total devotion to your";
	mes "comfort.\" That's our motto";
	mes "in the Royal Dragon Hotel.";
	mes "Please inquire at the front";
	mes "desk if you wish to check in.";
	close;

}

lhz_in02.gat,247,275,4	script	Hotel Employee	868,{

	mes "[Hotel Employee]";
	mes "Welcome to the";
	mes "Royal Dragon Hotel Bar.";
	mes "How about a nice night";
	mes "cap before going to bed?";
	next;
	mes "[Hotel Employee]";
	mes "If you're looking";
	mes "for a friend, you";
	mes "can almost always";
	mes "make one in this bar.";
	mes "Alcohol certainly is the";
	mes "grease for social gears.";
	close;

}

lhz_in02.gat,271,281,2	script	Citizen	47,{

	mes "[Hachi]";
	mes "Oh yeah. I love-love-love";
	mes "bars. If I don't come here";
	mes "for the booze, then I'm here";
	mes "for all these beautiful ladies.";
	next;
	mes "[Hachi]";
	mes "Weird. It's the very first";
	mes "time I've tried this place's";
	mes "rum, but doesn't it taste like";
	mes "pure sexiness to you? Huh...";
	mes "Oh well, back to schmoozin'";
	mes "with all the hot chicks~";
	close;

}

lhz_in02.gat,277,285,4	script	Bartender	61,{

	mes "[Duff]";
	mes "Hey, you're from";
	mes "Rune-Midgard, right?";
	mes "Please make yourself";
	mes "at home while you're here";
	mes "in Lighthalzen and have";
	mes "yourself a good time.";
	close;

}

lhz_in02.gat,281,280,6	script	Customer	816,{

	mes "[Rona]";
	mes "I hate it when guys";
	mes "just sidle up and sort";
	mes "of just skip Steps One";
	mes "and Two. And before you";
	mes "get all weird, Step Three";
	mes "is \"Ask for my phone number.\"";
	next;
	mes "[Rona]";
	mes "I would just really";
	mes "appreciate it if one";
	mes "nice boy would just";
	mes "talk to me for real.";
	close;

}

lhz_in02.gat,287,282,4	script	Customer	853,{

	mes "[Greenfield]";
	mes "I don't believe it...";
	mes "This unluck streak";
	mes "will never end, will it?";
	mes "I lost all my Apples";
	mes "playing Dice today.";
	mes "Again. Oh man...";
	next;
	mes "[Greenfield]";
	mes "Okay. Okay.";
	mes "If I just keep";
	mes "playing, eventually";
	mes "I'll win. I mean, that's";
	mes "the way the odds work, right?";
	mes "Even when they're against me...";
	close;

}

lighthalzen.gat,123,212,4	script	Merpi	700,{

	mes "[Merpi]";
	mes "Isn't the weather nice";
	mes "today? All this sunlight";
	mes "will dry these clothes";
	mes "quickly and give them";
	mes "a fresh, lovely scent.";
	next;
	mes "[Merpi]";
	mes "Oh, an adventurer from";
	mes "Rune-Midgarts, are you?";
	mes "How do you like our city?";
	mes "If you have any questions,";
	mes "feel free to ask me anything.";
	next;
	menu "Well, I have nothing to ask...",-,"Any news or rumors?",L_rumors,"I like laundry too.",L_laundry;
	mes "[Merpi]";
	mes "Oh, really?";
	mes "Well, if you've traveled";
	mes "all over the world, maybe";
	mes "you've found a place just";
	mes "like Lighthalzen, so maybe";
	mes "you're already comfortable?";
	close;
	
L_rumors:
	mes "[Merpi]";
	mes "Well, things have";
	mes "been pretty peaceful";
	mes "for the past few years.";
	mes "The only rumor floating";
	mes "around is about some";
	mes "weird axe murderer...";
	close;

L_laundry:
	mes "[Merpi]";
	mes "Oh, that's wonderful!";
	mes "I so love doing hand";
	mes "laundry, though I'm not";
	mes "quite sure why. Oh well~";
	close;
}

// ---------------------------------------------------------------------------

lighthalzen.gat,297,239,3	script	Pilia	818,{

	mes "[Pilia]";
	mes "Hmm? Oh, I'm sorry,";
	mes "but my little brother";
	mes "just won't stop crying.";
	mes "I'm sorry if we're loud...";
	close;
}

// ---------------------------------------------------------------------------

lighthalzen.gat,296,239,3	script	Berru	706,{

	mes "[Berru]";
	mes "Daddy...! Waaaaah~!";
	mes "I wanna see my daddy!";
	emotion 28;
	next;
	mes "[Pilia]";
	mes "Berru, I don't";
	mes "think Daddy's coming";
	mes "home tonight. Come on,";
	mes "we should go to bed.";
	next;
	mes "[Berru]";
	mes "No, I'm not gonna";
	mes "sleep 'til Daddy gets";
	mes "home! He said he'll";
	mes "bring us candy tonight!";
	mes "You go sleep first, Pilia!";
	emotion 7;
	next;
	mes "[Pilia]";
	mes "*Sigh...*";
	mes "Where's out Daddy?";
	mes "He said he found a";
	mes "good job, but we haven't";
	mes "heard from him since then...";
	close;
}

// ---------------------------------------------------------------------------

lighthalzen.gat,312,234,2	script	Beggar	777,{

	mes "[Beggar]";
	mes "Please...";
	mes "My child is starving...";
	mes "Would you give me";
	mes "some money?";
	next;
	menu "Give him some money.",L_give,"Ignore him.",-;
	mes "[" + strcharinfo(0) + "]";
	mes "...";
	mes "......";
	close;

L_give:
	if(Zeny < 50)goto L_zeny;
	mes "[" + strcharinfo(0) + "]";
	mes "Here you go,";
	mes "take this.";
	set Zeny,Zeny-50;
	next;
	mes "[Beggar]";
	mes "Thank you so much.";
	mes "I have nothing to offer you";
	mes "in exchange, but I can share";
	mes "a story with you and impart";
	mes "some of the wisdom I've";
	mes "learned over the years.";
	emotion 15;
	next;
	mes "[Beggar]";
	mes "Anger. People deal with";
	mes "it in different ways. Some";
	mes "suppress it. Some relish it.";
	mes "Some fear being angry. Now,";
	mes "to be simple, let's say there";
	mes "are two kinds of anger.";
	next;
	mes "[Beggar]";
	mes "The first is the kind that";
	mes "isn't so productive. More of";
	mes "a frustration that you can let";
	mes "go. Someone cut you off on the";
	mes "freeway or a friend innocently";
	mes "forgot your birthday? No Biggie.";
	next;
	mes "[Beggar]";
	mes "Don't let this kind of";
	mes "anger get to you or you'll";
	mes "look like a looser. Think of";
	mes "the big picture and if you're";
	mes "still upset, vent appropriatly.";
	mes "Be honest without hurting anyone.";
	next;
	mes "[Beggar]";
	mes "The second kind of anger is";
	mes "righteous anger. You've been";
	mes "wronged and need some form";
	mes "of retribution. Remember to";
	mes "make appropriate confontrations";
	mes "and don't misdirect your rage.";
	next;
	mes "[Beggar]";
	mes "Getting into a fight with";
	mes "righteous anger, say to protect";
	mes "someone dear to you, will make";
	mes "you a hero. Fighting with anger";
	mes "born of frustration will make you";
	mes "a bully. Know the difference.";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes ". . . . . . . . . . . .";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes ". . . . . . . . . . . .";
	mes ". . . . . . . . . . . .";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes ". . . . . . . . . . . .";
	mes ". . . . . . . . . . . .";
	mes ". . . . . . . . . . . .";
	next;
	mes "[Beggar]";
	mes "What's wrong?";
	mes "It might be a lot";
	mes "to take in, I know.";
	close;

L_zeny:
	mes "[Beggar]";
	mes "You don't seem to have";
	mes "enough zeny.";
	close;

}

// ---------------------------------------------------------------------------

lighthalzen.gat,311,194,3	script	Reuben	870,{

	mes "[Reuben]";
	mes "Someday...";
	mes "Someday I just gotta";
	mes "become a train conductor";
	mes "and just get outta here.!";
	mes "I really hate this place!";
	next;
	mes "[Reuben]";
	mes "Wh-whoa...!";
	mes "Did you just hear";
	mes "me talk to myself?";
	mes "Crud! Don't be so nosy!";
	emotion 6;
	close;
}

// ---------------------------------------------------------------------------

lighthalzen.gat,306,324,3	script	Shengwen	870,{

	mes "[Shengwen]";
	mes "Am I just getting";
	mes "paranoid? I really";
	mes "think that some of";
	mes "the people I know";
	mes "are dissapearing";
	mes "for no good reason!";
	next;
	mes "[Shengwen]";
	mes "I mean, all of my close";
	mes "friend are all right,";
	mes "but I'm starting not to see";
	mes "certain acquaintances and";
	mes "familiar faces. Maybe I'm";
	mes "just thinking too much...";
	close;
}

// ---------------------------------------------------------------------------

lhz_in03.gat,26,167,4	script	Shayna	850,{

	mes "[Shayna]";
	mes "*Sigh...*";
	mes "Oh, you poor";
	mes "darling girl...";
	close;
}

// ---------------------------------------------------------------------------

lhz_in01.gat,134,45,2	script	Cenku Dekdam#Cenku_Dekdam	869,{

	mes "[Cenku Dekdam]";
	mes "Man, if you were";
	mes "gonna take this whole";
	mes "city and sell it, what";
	mes "do you think Lighthalzen's";
	mes "price tag would be, eh?";
	next;
	mes "[Cenku Dekdam]";
	mes "I mean, this city";
	mes "is basically just made";
	mes "of money. Money is what";
	mes "makes this city such a nice";
	mes "and pleasant place to live.";
	close;
}

// ---------------------------------------------------------------------------

lighthalzen.gat,330,276,3	script	Nun	79,{

	mes "[Angela]";
	mes "Greetings, adventurer.";
	mes "I'm Angela, a social";
	mes "worker for the Poor";
	mes "Relief Organization.";
	next;
	mes "[Angela]";
	mes "I've noticed that the";
	mes "people living here have";
	mes "extremely bad health and";
	mes "it's not just because of";
	mes "their circumstances.";
	next;
	mes "[Angela]";
	mes "I've filed a report";
	mes "to my superiors, but";
	mes "they haven't sent me";
	mes "a response yet for some";
	mes "reason. I'm starting to get";
	mes "a little worried about this...";
	close;
}

// ---------------------------------------------------------------------------

lighthalzen.gat,337,296,3	script	Employee	867,{

	mes "[Rekenber Employee]";
	mes "Greetings. As part of our";
	mes "effort to relieve the poor,";
	mes "Rekenber is providing job";
	mes "opportunities targeted for";
	mes "citizens of the slum areas.";
	next;
	mes "[Rekenber Employee]";
	mes "You can choose to work";
	mes "from home, or undergo a";
	mes "little bit of training for more";
	mes "professional positions. This";
	mes "is a great chance to make a";
	mes "difference... and some money~";
	emotion 21;
	close;
}

// ---------------------------------------------------------------------------

lhz_in01.gat,134,38,2	script	Bankri Kun#Bankri_Kun	86,{

	mes "[Bankri Kun]";
	mes "Must work...";
	mes "Must focus...";
	mes "Resist sleepiness...";
	mes "Why do I keep coming";
	mes "here? ugh, h-horrible.";
	next;
	mes "[Bankri Kun]";
	mes "hey youngster. You wanted";
	mes "adventuring advice? Okay.";
	mes "Um. Hm. Always. Brush.";
	mes "Your teeth. Brush them";
	mes "everyday. Oh, and don't";
	mes "forget to floss, either.";
	next;
	mes "[Bankri Kun]";
	mes "Now it's time for me";
	mes "to head back to work.";
	mes "I'll see you later, kid.";
	mes "Sorry my advice was so";
	mes "lame-- I couldn't think of";
	mes "anything else to tell you.";
	close;
}

// ---------------------------------------------------------------------------

lhz_in01.gat,139,40,2	script	Enoz	53,{

	mes "[Enoz]";
	mes "So, the novel I ordered from";
	mes "the Rune-Midgarts Kingdom";
	mes "just recently arrived. It's real";
	mes "good, by the guy who wrote";
	mes "\"Roda Frog Adventure\"";
	mes "years ago. Remember?";
	next;
	mes "[Enoz]";
	mes "Anyway, this new book,";
	mes "\"Where the Red Plant Grows\"";
	mes "is up for the Yggdrasilberry";
	mes "Award. I... I don't know why";
	mes "I was compelled to share that";
	mes "with you. Seriously, I don't...";
	close;
}

// ---------------------------------------------------------------------------

lhz_in01.gat,124,28,2	script	Ellette	66,{

	mes "[Ellette]";
	mes "...";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "Excuse me.";
	next;
	mes "[Ellette]";
	mes "...";
	mes "......";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "Hello?";
	next;
	mes "[Ellette]";
	mes "...Oh! Everyone!";
	mes "I just completed";
	mes "another one! Hooray!";
	next;
	mes "[All other Employees]";
	mes "Wh-what?!";
	mes "No way, not again!";
	next;
	mes "[Leekal]";
	mes "Are you even human?";
	mes "You must have some";
	mes "secret for that much";
	mes "productivity. It's weird...";
	next;
	mes "[Ellette]";
	mes "Oh, come on.";
	mes "Maybe I'm a little";
	mes "good at this, but there's";
	mes "no way I can beat Cenku.";
	close;
}

// ---------------------------------------------------------------------------

lhz_in01.gat,125,40,2	script	Dowbow Ryuei#Dowbow_Ryuei	843,{

	mes "[Dowbow Ryuei]";
	mes "Just out of, oh I dunno,";
	mes "curiosity, which word do";
	mes "you like better?\"Uber-Cool\"";
	mes "or \"Reality?\" Pick one~";
	next;
	menu "Uber-Cool",-,"Reality",L_reality;
	mes "[Dowbow Ryuei]";
	mes "Oh yeah? Me too!";
	mes "Yeah, we got the same";
	mes "outlook on life. If you don't";
	mes "mind, I'd like to shake";
	mes "your hand, adventurer.";
	emotion 21;
	close;

L_reality:
	mes "[Dowbow Ryuei]";
	mes "Reality, eh?";
	mes "Well, I agree that";
	mes "being realistic has its";
	mes "perks, I'm more of a dreamer.";
	close;
}

// ---------------------------------------------------------------------------

lhz_in01.gat,125,46,2	script	Leekal	849,{

	mes "[Leekal]";
	mes "So... Very broke.";
	mes "Why did I spend so much";
	mes "money on wine, women and";
	mes "song? I regret it all, all the";
	mes "pleasure I've had this month.";
	mes "Yes, it was too much pleasure.";
	next;
	mes "[Ninjose]";
	mes "That's what happens";
	mes "when you're irresponsible";
	mes "with your money. You really";
	mes "should read this \"Anybody";
	mes "Can Be Rich\" book.";
	close;
}

// ---------------------------------------------------------------------------

lhz_in01.gat,116,53,6	script	Ninjose	841,{

	mes "[Ninjose]";
	mes "At long last, I've finally";
	mes "bought my own home. You";
	mes "should invest your money for";
	mes "your future too! Read this,";
	mes "\"Anybody Can Be Rich!\"";
	mes "It's such a great book.";
	close;
}

// ---------------------------------------------------------------------------

lhz_in01.gat,116,39,6	script	Kejulle Rekenber#Kejulle_Rekenber	822,{

	mes "[Kejulle Rekenber]";
	mes "Hm? Sure, my last name";
	mes "is Rekenber and that's the";
	mes "same name as our chairman,";
	mes "but that's just a coincidence.";
	mes "I'm merely a normal employee.";
	mes "Yeah, no special treatment...";
	close;
}

// ---------------------------------------------------------------------------
lhz_in01.gat,110,40,2	script	Jorjerro	89,{

	mes "^0000AAThis man here";
	mes "is motionless,";
	mes "and for all intents";
	mes "and purposes, is";
	mes "soundly asleep.^000000";
	close;
}

// ---------------------------------------------------------------------------

lhz_in01.gat,116,45,6	script	Joshua	704,{

	mes "[Joshua]";
	mes "What am I doing here?";
	mes "Waiting for my dream";
	mes "woman to fall into my lap,";
	mes "what else does it look like?";
	next;
	mes "[Joshua]";
	mes "Tall, blond, creamy";
	mes "complexion and smooth";
	mes "skin. That's right. Come";
	mes "right to Joshua, babes.";
	mes "I got my pheremone spray";
	mes "on and I'm ready to cruise~";
	close;
}

// ---------------------------------------------------------------------------

lhz_in01.gat,93,45,4	script	Researcher	865,{

	mes "[Researcher]";
	mes "You know what's weird?";
	mes "Why do they use blue and";
	mes "red wires when they make";
	mes "bombs? There's so many";
	mes "others you could use, like";
	mes "pink or yellow or or green...";
	close;
}

// ---------------------------------------------------------------------------

lhz_in01.gat,286,226,2	script	Secretary Slierre#Secretary_Slierre	831,{

	mes "[Sueii Slierre]";
	mes "Excuse me, but you are";
	mes "not allowed to be in here.";
	mes "Please visit the Help Desk";
	mes "if you have any questions about";
	mes "the Rekenber Corporation.";
	mes "Thank you for cooperating.";
	close;
}

// ---------------------------------------------------------------------------

lhz_in03.gat,32,162,2	script	Crippled Girl#Crippled_Girl	53,{

	mes "[Crippled Girl]";
	mes "...";
	mes "......";
	mes "*Sigh...*";
	next;
	menu "Hello, how are you?",-;
	mes "[Crippled Girl]";
	mes "Oh, I'm fine,";
	mes "thanks for asking.";
	mes "I'm just waiting for";
	mes "somebody, that's all.";
	close;
}

// ---------------------------------------------------------------------------

lighthalzen.gat,346,263,2	script	Elder	846,{

	mes "[Elder]";
	mes "Predators are always";
	mes "on the lookout for easy";
	mes "prey. Be careful, youngster!";
	mes "You look innocent enough";
	mes "to become a victim in the city.";
	next;
	menu "About Lighthalzen",L_lighthalzen,"About the Slum",L_slum,"????",-;
	mes "[Elder]";
	mes "Well, if you need any";
	mes "help around here or have";
	mes "any questions, come back";
	mes "and ask me. I get the feeling";
	mes "that we'll probably meet again.";
	close;

L_lighthalzen:
	mes "[Elder]";
	mes "Lighthalzen might seem";
	mes "like a splendid city at first,";
	mes "but you'll learn quickly that";
	mes "the poor are segregated from";
	mes "the rich and treated as less";
	mes "than second class citizens.";
	next;
	mes "[Elder]";
	mes "At first, separation between";
	mes "the rich and poor districts was";
	mes "subtly enforced. They built the";
	mes "railroad right between the two";
	mes "districts to make it easier for";
	mes "the rich to ignore the poor.";
	next;
	mes "[Elder]";
	mes "But now they even have";
	mes "guards to make sure that";
	mes "the poor can't bother the";
	mes "rich. I'm pretty sure that";
	mes "this segregation won't be";
	mes "ending anytime soon...";
	next;
	mes "[Elder]";
	mes "Now, I've heard that the";
	mes "Rekenber Corporation is";
	mes "actually providing jobs for";
	mes "people in the slums. Beggars";
	mes "can't be choosers, so I'm sure";
	mes "these jobs aren't that great.";
	close;

L_slum:
	mes "[Elder]";
	mes "To live in the slum is to";
	mes "be familiar with poverty,";
	mes "disease, condemnation";
	mes "and contempt. But we're all";
	mes "still people, you know, so let";
	mes "go of any of your misgivings.";
	next;
	mes "[Elder]";
	mes "We're struggling just";
	mes "to survive here. At the";
	mes "very least, please respect";
	mes "that. It's a fact that the";
	mes "people in the rich district";
	mes "seem to keep forgetting.";
	close;
}

// ---------------------------------------------------------------------------

lighthalzen.gat,326,249,5	script	Grinnel	870,{

	mes "[Grinnel]";
	mes "You know the men in";
	mes "black suits? Boy, did";
	mes "I get a scare! They actually";
	mes "tracked me down to ask me";
	mes "all these weird questions!";
	next;
	mes "[Grinnel]";
	mes "They kept wanting to";
	mes "know if I had ever met";
	mes "anyone from the Rekenber";
	mes "Corporation, if I've ever been";
	mes "Uptown, that sort of thing. They";
	mes "really scared the crap out of me.";
	next;
	mes "[Grinnel]";
	mes "Man, living in the";
	mes "slums is such a drag.";
	mes "Not only is life rough,";
	mes "but all sorts of people";
	mes "think they can push you";
	mes "around. I hate Lighthalzen...";
	close;
}

// ---------------------------------------------------------------------------

lhz_in03.gat,192,19,2	script	Haggar	855,{

	mes "[Haggar]";
	mes "Whiskey!";
	mes "I need me some";
	mes "hard liquor now!";
	next;
	mes "[Haggar]";
	mes "Wha--? I didn't";
	mes "order this stinkin'";
	mes "rum! I want a man's";
	mes "drink! Gimme whisky!";
	Close;
}

// ---------------------------------------------------------------------------

lhz_in03.gat,193,25,2	script	Bartender	61,{

	mes "[Tony]";
	mes "Hey man, I know this";
	mes "joint is a dive, pretty much";
	mes "on the verge of bein' totally";
	mes "ghetto, but we're proud to";
	mes "have the best rum in all of";
	mes "Rune-Midgard. It's true~";
	next;
	mes "[Tony]";
	mes "Just a sip of this";
	mes "beautiful drink and";
	mes "you're on top of the";
	mes "world! But it's best";
	mes "for helpin' yah relax";
	mes "and forget your worries.";
	next;
	mes "[Tony]";
	mes "I don't take to bein'";
	mes "a poet, but I do know";
	mes "this. Our rum has the";
	mes "sweet sweet flavor of";
	mes "loneliness. You really";
	mes "oughta try it when you can	.";
	close;
}

// ---------------------------------------------------------------------------

lhz_in03.gat,185,20,6	script	Bad Drunk#Bad_Drunk	869,{

	mes "[Garry]";
	mes "Hey! Hey you...!";
	mes "D'you wanna, you";
	mes "wanna hear me tell";
	mes "you a joke?! It goes...";
	mes "Um, it goes like this...";
	next;
	mes "[Garry]";
	mes "Hey riddle middle,";
	mes "the cat and th--";
	mes "No! No, damn it!";
	mes "That's a song!";
	mes "No, wait, that's";	
	mes "not a song either...";
	close;
}

// ---------------------------------------------------------------------------

lhz_in03.gat,186,29,6	script	Bad Drunk#Bad_Drunk2	869,{

	mes "[Bonse]";
	mes "*Hiccup* I loooove";
	mes "this rum! I caught a cold";
	mes "once and one glass made";
	mes "it go away! 'Course, I slept";
	mes "for a week too, but that doesn't";
	mes "matter! Pshaw! Science...";
	next;
	mes "[Bonse]";
	mes "Oh, the flavor is just";
	mes "so clean, but it's also";
	mes "got a bit of a kick. I don't";
	mes "know how to describe it.";
	mes "Its the taste of happiness?";
	mes "I'm too drunk to even tell!";
	close;
}

// ---------------------------------------------------------------------------

lhz_in03.gat,192,93,2	script	City Girl#City_Girl	862,{

	mes "[Lanko]";
	mes "Oh, I'm only here";
	mes "working as a waitress";
	mes "to help my father.";
	mes "This job is so tiring, but";
	mes "it's nice to see people so";
	mes "relaxed and having a good time.";
	next;
	mes "[Lanko]";
	mes "When I get some time";
	mes "off, I'm going to explore";
	mes "Lighthalzen and see all that";
	mes "there is to see. But for now,";
	mes "it doesn't look like we've got";
	mes "any real shortage of drunks...";
	close;
}

// ---------------------------------------------------------------------------

lhz_in03.gat,189,87,4	script	Drunken Man#Drunken_Man	869,{

	mes "[Enku]";
	mes "*Sob* I just got";
	mes "dumped! Yeah, I thought";
	mes "we were gonna get married,";
	mes "but obviously I was wrong!";
	mes "Damn it Sheryline! I loved you!";
	next;
	mes "[Enku]";
	mes "I usually don't care for";
	mes "drinking, especiallys stuff";
	mes "like gin or rum, but today,";
	mes "this stuff tastes just like";
	mes "my misery. This is all the";
	mes "comfort I need, you hear?!";
	close;

}

// ---------------------------------------------------------------------------

lhz_in03.gat,183,82,6	script	Drunken Man#Drunken_Man2	870,{

	mes "[Linus]";
	mes "After ten years";
	mes "of marriage. My";
	mes "wife divorced me...";
	next;
	mes "[Linus]";
	mes "So I guess there's no";
	mes "place for me but here for";
	mes "now. I don't know what it is,";
	mes "but the rum is really good";
	mes "today. Like, it's the flavor";
	mes "of relaxing, joyous relief~";
	close;

}

// ---------------------------------------------------------------------------

lhz_dun03.gat,180,83,6	script	Citizen	86,{

	mes "[Mitchell]";
	mes "You know, everyone";
	mes "is different, but I think";
	mes "humans are similar enough";
	mes "that we can all meaningfully";
	mes "connect on some level, right?";
	next;
	mes "[Mitchell]";
	mes "Sure, a rich person might";
	mes "have different problem than";
	mes "a poor person, but the point";
	mes "is, they've both got problems!";
	mes "Pain, pleasure, sadness, joy.";
	mes "Those link us all together.";
	next;
	mes "[Mitchell]";
	mes "So try not to be picky";
	mes "about who's your pal and";
	mes "who's not. We all need";
	mes "somebody to be with, right?";
	close;

}

// ---------------------------------------------------------------------------

lhz_in03.gat,176,85,4	script	Citizen#Citizen2	869,{

	mes "[Dique]";
	mes "One of the things I look";
	mes "forward to during my day";
	mes "is the drink I enjoy right";
	mes "after work. It's the most";
	mes "relaxing thing in the world.";
	next;
	mes "[Dique]";
	mes "Of course, there's";
	mes "more to life than just";
	mes "hanging out in pubs and";
	mes "bars. The thing is, in my";
	mes "case, pubs and bars are";
	mes "all I happen to need~";
	close;

}


// ---------------------------------------------------------------------------

lhz_in03.gat,184,38,2	script	Loudmouth	55,{

	mes "[Loudmouth]";
	mes "Do you know who I am?!";
	mes "Just look at this peg leg.";
	mes "I was in the Comodo War,";
	mes "Ski Troop division! I lost my";
	mes "leg to earn your freedom!";
	next;
	mes "[Loudmouth]";
	mes "H-hey! What's that";
	mes "look for? What, you";
	mes "don't believe me?!";
	close;

}