summaryrefslogblamecommitdiff
path: root/npc/cities/lighthalzen.txt
blob: 18ca9f3ad4cf74a95a44171d6c9b0a80d8e7a13d (plain) (tree)
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
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058








































































































































                                                                                            
                                            































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                   
//===== eAthena Script ======================================= 
//= Lighthalzen City
//===== By: ================================================== 
//=  erKURITA
//===== Current Version: ===================================== 
//= 1.0b
//===== 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]
//= 0.4 More Town NPCs. [Musashiden]
//= 0.5 Added a BIG load of Lighthalzen NPCs. [musashiden]
//= 0.6 Fixed some typos+Coordinates. [Musashiden]
//= 0.7 Implemented some more crap NPCs and the second entrance to biolabs [MasterOfMuppets]
//= 0.8 Removed Duplicates [Silent]
//= 0.9 Removed Duplicates [Toms]
//= 1.0 Added a missing feature to the donation NPC [MasterOfMuppets]
//= 1.0a added constants to emotions, minor optimization [Lupus]
//= 1.0b npcid fix [KarLaeda]
//=============================================================

lighthalzen.gat,198,285,5	script	Jiwon	862,{

	mes "[Jiwon]";
	mes "I think we're really";
	mes "fortunate to be able to";
	mes "live in such a beautiful";
	mes "and peaceful city like this.";
	next;
	mes "[Jiwon]";
	mes "It's just so nice to";
	mes "have this pleasant weather,";
	mes "these lush gardens and to";
	mes "meet all of these kind people.";
	mes "Lighthalzen is like Asgard";
	mes "in Midgard, heaven on earth~";
	close;
}


lighthalzen.gat,220,244,3	script	Samnang	863,{

	mes "[Samnang]";
	mes "*Sigh...*";
	mes "It gets harder for me";
	mes "to move around as I get";
	mes "older. That's understandable";
	mes "for an elderly person, right?";
	next;
	mes "[Samnang]";
	mes "Just the other day, these";
	mes "hoodlums in black suits";
	mes "were yelling at me to get out";
	mes "of their way. But of course,";
	mes "I didn't move quickly enough.";
	mes "So what did they do to me?";
	next;
	mes "[Samnang]";
	mes "They punched me.";
	mes "Right in the womb!";
	mes "I know that i'm not";
	mes "pregnant, but that's";
	mes "besides the point. Never hit";
	mes "a lady, especially an old one!";
	close;
}


lighthalzen.gat,261,112,3	script	Ruth	862,{

	mes "[Ruth]";
	mes "Sweety, isn't it";
	mes "nice to be together";
	mes "under this beautiful";
	mes "sunlight? It's perfect";
	mes "for our date. Ahhhh~";
	next;
	mes "[Ruth]";
	mes "I'm so happy to be";
	mes "with you. I feel like";
	mes "I'm just melting with";
	mes "happiness. Ohm I love";
	mes "you so much, Oyoung.";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "Whoa...";
	mes "This couple is";
	mes "really headed for";
	mes "Cloud 9, aren't they?";
	close;
}


lighthalzen.gat,259,108,7	script	Oyoung	869,{

	mes "[Oyoung]";
	mes "Girl, you look like";
	mes "you're comin' down with";
	mes "the love bug. But there's";
	mes "only one prescription for";
	mes "this ailment, ooooh yeah...";
	next;
	mes "[Oyoung]";
	mes "You need yo'self";
	mes "your daily dose of";
	mes "vitamin O-YOUNG.";
	mes "And your lips look like";
	mes "they got vitamin deficiency.";
	mes "i better take care of that~";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "Sweet Sister!";
	mes "I don't know what's";
	mes "more mind boggling--";
	mes "The fact that he used";
	mes "that line or the fact that";
	mes "it's actually working...";
	close;
}

lighthalzen.gat,233,121,4	script	Kariya	72,{

	mes "[Kariya]";
	mes "I think \"Lighthalzen\" is";
	mes "supposed to mean \"crest of";
	mes "light\", though i hear that this";
	mes "city was actually named after";
	mes "somebody. Who knows for sure?";
	next;
	mes "[Kariya]";
	mes "Still, It's a fitting";
	mes "name for the wealthiest";
	mes "and most luxurious city in";
	mes "all the Schwarzwald Republic.";
	mes "So how do you like this place?";
	close;
}


lighthalzen.gat,233,82,4	script	Sung	716,{

	mes "[Sung]";
	mes "When i grow up, I want";
	mes "to become such a great";
	mes "person that they'll make";
	mes "a statue of me, just like";
	mes "those statues over there.";
	next;
	mes "[Sung]";
	mes "Then people would be like,";
	mes "\"Hey yo. That statue. That";
	mes "guy must have been great!\"";
	mes "Just thinking about that";
	mes "makes me feel so good!";
	next;
	mes "[Sung]";
	mes "That's it. I'm gonna";
	mes "grow up as soon as i can.";
	mes "Ooh, and i better grow tall";
	mes "and handsome so my statue";
	mes "will be even more awesome.";
	mes "Yeah. Yeah, good idea, Sung...";
	close;
}


lighthalzen.gat,89,73,4	script	Sameer	854,{

	mes "[Sameer]";
	mes "There are too many";
	mes "loving couples in this city.";
	mes "Cuddling and kissing and";
	mes "hugging and necking. It's...";
	mes "It's utterly distasteful.";
	next;
	mes "[Sameer]";
	mes "I can't believe the";
	mes "indencenct I see everyday";
	mes "near my own home. Don't";
	mes "they know better than to be";
	mes "so affectionate in places";
	mes "where the public can see them?!";
	next;
	mes "[Sameer]";
	mes "Fortunately for the";
	mes "world, i'm a bulwark";
	mes "of morality. In fact, I have";
	mes "no need for a woman. All";
	mes "I need are my ship models,";
	mes "teen novels and dominos.";
	next;
	mes "[Sameer]";
	mes "I'm a completely well";
	mes "adjusted individual, which";
	mes "is why the authorities should";
	mes "listen to me when i tell them";
	mes "to arrest couples for indecency!";
	mes "Hand holding. Have they no shame!?";
	close;
}



lighthalzen.gat,45,59,8	script	Janice	863,{

	mes "[Janice]";
	mes "Oh no, I think i got";
	mes "lost again. The roads";
	mes "here are so confusing!";
	mes "I've lived here for such";
	mes "a long time and I still";
	mes "can't find my way around...";
	close;
}


lighthalzen.gat,66,94,5	script	Elmer Keays	866,{

	mes "[Elmer Keays]";
	mes "Walking side by side";
	mes "with you like this reminds";
	mes "me of the old days. Back";
	mes "then, everyone was jealous";
	mes "that i had such a beautiful";
	mes "woman by my side. Heh heh~";
	next;
	mes "[Elmer Keays]";
	mes "You're still the most";
	mes "precious sight to these";
	mes "old eyes, my dear. I'm";
	mes "really lucky to be with you.";
	close;
}

lighthalzen.gat,65,94,4	script	Margie Keays	863,{

	mes "[Margie Keays]";
	mes "Oh darling, the";
	mes "weather is so nice";
	mes "and pleasant today.";
	mes "I'm really glad we";
	mes "decided to go take";
	mes "a walk together~";
	close;
}

lighthalzen.gat,78,120,3	script	Maivi	862,{

	mes "[Maivi]";
	mes "...";
	next;
	mes "[Maivi]";
	mes "...";
	mes ".....";
	next;
	mes "[Maivi]";
	mes "Ah...";
	mes "I just had the nicest";
	mes "nap, This nice weather";
	mes "never fails to relax me.";
	mes "The air here is so clean,";
	mes "not like that Einbroch~";
	next;
	mes "[Maivi]";
	mes "This clean, pristine";
	mes "environment is all thanks";
	mes "to the Rekenber Corporation.";
	mes "It's incredible what they can";
	mes "do with technology now, isn't";
	mes "it? Ahhh, it's so peaceful~";
	close;
}


lighthalzen.gat,226,210,3	script	Nannan	86,{

	mes "[Nannan]";
	mes "You know, I always thought";
	mes "that all Alchemists were bookish,";
	mes "scholarly types, their faces always";
	mes "buried in books and studying. But";
	mes "I managed to find one who doesn't";
	mes "fit that nerdy stereotype at all.";
	next;
	mes "[Nannan]";
	mes "This guy, What's-his-face,";
	mes "Broncher, is always wasting";
	mes "his time drinking. I guess he";
	mes "discovered the secret of turning";
	mes "water into Grade A booze. But";
	mes "at least he's not the stuffy type.";
	next;
	mes "[Nannan]";
	mes "I don't know how much";
	mes "help he'd be to an aspiring";
	mes "Alchemist, but in my opinion,";
	mes "the man is a fully fledged";
	mes "genius! At least, compared";
	mes "to a street guy like me...";
	close;
}

lighthalzen.gat,230,182,4	script	Klaubis	866,{

	mes "[Klaubis]";
	mes "Excuse me, but are you";
	mes "a tourist? Well, welcome";
	mes "to Lighthalzen! This city";
	mes "has everything we need,";
	mes "but it can be a little too";
	mes "quiet and uneventful here.";
	next;
	menu "Have you lived in here long?",live,"I agree.",agree,"Have you heard about the serial killer?",killer;


live:
	mes "[Klaubis]";
	mes "Yes, our family has";
	mes "lived in this city for a";
	mes "long time, starting with";
	mes "my great grandfather. Let's";
	mes "see, my family's been here";
	mes "for about two hundred years.";
	next;
	mes "[Klaubis]";
	mes "You'd be surprised how";
	mes "many people stay in their";
	mes "hometowns. Even if you do";
	mes "leave, though, you can always";
	mes "come back. It wouldn't be your";
	mes "hometown if you couldn't, right?";
	close;

agree: 
	mes "[Klaubis]";
	mes "Yes, the atmosphere";
	mes "can get pretty listless";
	mes "around here. But still,";
	mes "there are plenty of nice";
	mes "sights to enjoy here in";
	mes "Lighthalzen, so look around~";
	close;

killer:
	mes "[Klaubis]";
	mes "You mean the Serial";
	mes "Axe Murderer? I thought";
	mes "that was an old ghost story.";
	mes "Hm. I think that lady inside";
	mes "the Weapon Shop would";
	mes "know more about that tale...";
	close;

}


lighthalzen.gat,232,156,4	script	Sigmund	866,{

	mes "[Sigmund Ting]";
	mes "You know what i noticed?";
	mes "The guards at the border";
	mes "to the slum seem distracted";
	mes "sometimes. I made use of one";
	mes "of their less attentive moments";
	mes "and basically jumped the fence!";
	next;
	mes "[Sigmund Ting]";
	mes "But once i was in the";
	mes "Slums, I was pretty bored.";
	mes "There really isn't much to";
	mes "do there. Which makes me";
	mes "Wonder... Why guard it?";
	close;	

}

lighthalzen.gat,190,134,5	script	Joyce	862,{

	mes "[Joyce]";
	mes "I can sense your";
	mes "longing look within";
	mes "the depths of my heart,";
	mes "beating faster and faster";
	mes "with a feverish passion~";
	close;	

}


lighthalzen.gat,191,134,5	script	Dan Song	869,{

	mes "[Dan Song]";
	mes "Those eyes of yours...";
	mes "So pure and so deep,";
	mes "like glimmering pools";
	mes "of light. So, so beautiful...";
	close;	

}



lighthalzen.gat,115,159,5	script	Collins	866,{

	mes "[Collins]";
	mes "I really wish that my";
	mes "son will be able to join";
	mes "the Rekenber Corporation.";
	mes "They certainly provide the";
	mes "best jobs in Lighthalzen.";
	next;
	mes "[Collins]";
	mes "Although they're a large,";
	mes "major corporation, it's";
	mes "almost impossible to get";
	mes "emplyed by them. How";
	mes "do people get hired there";
	mes "in the first place anyway?";
	close;	

}



lighthalzen.gat,77,157,5	script	Villagomez	866,{

	mes "[Villagomez]";
	mes "I just step out to get";
	mes "a haircut and now i'm";
	mes "lost. Boy oh boy, I hope";
	mes "i don't keep my family";
	mes "waiting. *Sigh...*";
	close;	

}


lighthalzen.gat,125,68,5	script	Kemp	97,{

	mes "[Kemp]";
	mes "Have you ever seen the";
	mes "people who work in that big";
	mes "corporation over there? I think";
	mes "their employees are all a bit";
	mes "off kilter for some reason.";
	next;
	mes "[Kemp]";
	mes "I haven't been there";
	mes "myself, but something";
	mes "strange is happening with";
	mes "all the people who work there.";
	close;	

}


lighthalzen.gat,138,50,8	script	Mauro	847,{

	mes "[Mauro]";
	mes "The youth in this city";
	mes "have no appreciation for";
	mes "their elders. i've worked";
	mes "so hard to help build this";
	mes "city for so many years and";
	mes "this is the thanks i get?";
	next;
	mes "[Mauro]";
	mes "Bah! If it weren't for";
	mes "us, Lighthalzen wouldn't";
	mes "be as prosperous as it is";
	mes "today! Those kids don't";
	mes "know that they owe their";
	mes "lives of luxury to us...";
	close;	

}


lighthalzen.gat,132,103,5	script	Sefith	734,{

	mes "[Sefith]";
	mes "Good looks. Intelligence.";
	mes "Excellent manners. A strong,";
	mes "manly chin and overpowering,";
	mes "piercing eyes. Perfectly balanced";
	mes "passion and charisma. All the";
	mes "good things that ladies want.";
	next;
	mes "[Sefith]";
	mes "But Enough about me. Let's";
	mes "discuss how sorry i should";
	mes "feel for any other man living";
	mes "in Lighthalzen. They don't hold";
	mes "a candle to my studliness~";
	close;	

}


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.",-;

	mes "[Lucius]";
s_Cancel:
	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;
	mes "[Lucius]";
	if(!@zenydonate)goto s_Cancel;
	if(@zenydonate > 30000){
		mes "I'm sorry but you can't";
		mes "donate more than 30,000";
		mes "zeny. Please choose another";
		mes "number.";
		close;
	}
	if(Zeny < @zenydonate){
		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;
	}
	set Zeny,Zeny - @zenydonate;
	set $donatedzeny,$donatedzeny + @zenydonate;
	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.";
	if($donatedzeny > 259999){
		next;
		mes "[Lucius]";
		mes "This should be enough";
		mes "to send to the Poor Relief";
		mes "Organization. Please accpet";
		mes "this small gift as a token of";
		mes "my gratitude, adventurer. Bless";
		mes "you, youngster and take care.";
		getitem 603,1;
		getitem 12016,1;
		set $donatedzeny,0;
	}
	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#01	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#02	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#03	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#04	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#05	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#01	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#01	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#02	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 e_sob;
	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 e_ag;
	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;
	if(select("Give him some money.:Ignore him.")==2){
		mes "[" + strcharinfo(0) + "]";
		mes "...";
		mes "......";
		close;
	}
	if(Zeny < 50){
		mes "[Beggar]";
		mes "You don't seem to have";
		mes "enough zeny.";
		close;
	}
	set Zeny,Zeny-50;
	mes "[" + strcharinfo(0) + "]";
	mes "Here you go,";
	mes "take this.";
	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 e_thx;
	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;

}

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

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 e_an;
	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 e_no1;
	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 e_no1;
	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#02	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#01	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#04	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#05	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_in03.gat,180,83,6	script	Citizen#02	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;

}
// ---------------------------------------------------------------------------

lhz_in01.gat,114,181,3	script	Representative::LhzRep	71,{

	mes "[Representative]";
	mes "Greetings, and welcome";
	mes "to the Rekenber Corporation.";
	mes "How may I be of service today?";
	next;
	menu "Building Information.",-;

loopback:
	mes "[Representative]";
	mes "Please tell me";
	mes "which floor you'd like";
	mes "to know more about.";
	next;
	menu "1F",s_1,"2F",s_2,"B1",s_B,"Cancel",-;

	mes "[Representative]";
	mes "We are always doing our";
	mes "best to provide the best";
	mes "services to our customers.";
	mes "Remember that Rekenber";
	mes "is the name you can trust.";
	mes "Thank you and have a nice day.";
	close;

s_1:
	mes "[Representative]";
	mes "The ^3131FFRekenber Library^000000 can";
	mes "be found at the end of the";
	mes "left hallway. Our library is";
	mes "a great resource of innovative";
	mes "ideas and information for our";
	mes "system development employees.";
	next;
	mes "[Representative]";
	mes "The ^3131FFBall Room^000000, where";
	mes "various official events are";
	mes "usually held, can be accessed";
	mes "through the right hallway.";
	next;
	goto loopback;

s_2:
	mes "[Representative]";
	mes "Please use the stairs";
	mes "located on both sides of";
	mes "the Help Desk to go to the";
	mes "Second Floor. The Second";
	mes "Floor is mostly used for";
	mes "administrative purposes.";
	next;
	mes "[Representative]";
	mes "There, you can find";
	mes "the ^3131FFConference Room^000000,";
	mes "^3131FFSecretary Office^000000, the";
	mes "^3131FFAuditorium^000000 and the";
	mes "^3131FFChairman's Office^000000.";
	next;
	goto loopback;
s_B:
	mes "[Representative]";
	mes "The first underground floor";
	mes "is used by the ^3131FFRegenshirm^000000,";
	mes "our laboratory affiliate. For";
	mes "security reasons, this floor";
	mes "is not accessible to visitors";
	next;
	goto loopback;
	
}

lhz_in01.gat,26,247,2	duplicate(LhzRep)	Representative	71

lhz_in01.gat,173,28,4	script	Guard#01::LhzRekGuard	868,{

	mes "[Guard]";
	mes "This is a";
	mes "restricted area.";
	mes "Please keep clear";
	mes "if you do not have";
	mes "special authorization.";
	mes "Thank you for your cooperating.";
	close;

}

lhz_in01.gat,180,28,4	duplicate(LhzRekGuard)	Guard#03	868

lhz_in01.gat,72,209,4	script	Guide#01	862,{

	mes "[Lasoei]";
	mes "Oh phooey.";
	mes "The same customers";
	mes "are always coming in,";
	mes "day after day. Can it";
	mes "get any less exciting?";
	next;
	mes "[Lasoei]";
	mes "Oh...!";
	mes "W-welcome~";
	mes "C-can I help you";
	mes "with anything?";
	close;

}

lhz_in01.gat,72,195,8	script	Guide#02	90,{

	mes "[Geonuii]";
	mes "Greetings. This path";
	mes "leads to the Library and";
	mes "the Laboratory. Please be";
	mes "aware that these places";
	mes "are restricted from access";
	mes "by the general public.";
	close;

}

lhz_in01.gat,73,188,4	script	Guide#03	862,{

	mes "[Bonnie]";
	mes "Oh no...";
	mes "Where did I put it?";
	close;

}

lhz_in01.gat,34,226,4	script	Rekenber Guard#01	867,{

	if(isequipped(2241) && isequipped(2243)) goto s_Staff;
	mes "[Rekenber Guard]";
	mes "This is a restricted";
	mes "area! Please show";
	mes "some ID immediately!";
	next;
	menu "ID?",s_ID,"Cancel",-;

	mes "[Rekenber Guard]";
	mes "Unless you have special";
	mes "authorization, nobody is";
	mes "allowed into the Underground";
	mes "Laboratory for security reasons.";
	close;

s_ID:
	mes "[Rekenber Guard]";
	mes "I don't know how you";
	mes "adventurers do things in";
	mes "Rune-Midgard, but over here";
	mes "we have laws about trespassing!";
	close;

s_Staff:
	mes "[Rekenber Guard]";
	mes "^3131FF(Whoa, it's a member";
	mes "of the staff)^000000 Good day!";
	close2;
	warp "lhz_in01.gat",37,225;
	end;

}

lhz_in01.gat,19,129,0	script	LhzHiddenTrg1::LhzTrig	-1,1,1{
OnTouch:
	mes "[Rekenber Guard]";
	if(isequipped(2241) && isequipped(2243)){
		mes "Keep your eyes open.";
		mes "I've heard rumors that some";
		mes "adventurers from Rune-Midgard";
		mes "are trying to sneak into here!";
		mes "I know the security here is";
		mes "pretty much failsafe, but...";
		close;
	}
	mes "This area is restricted";
	mes "to the public! Who are you";
	mes "and how did you get in here?!";
	mes "Hey, I need backup right away!";
	close2;
	warp "lhz_in01.gat",34,224;
	end;

}

lhz_in01.gat,23,137,0	duplicate(LhzTrig)	LhzHiddenTrg2	139,1,1

lhz_in01.gat,24,131,2	duplicate(LhzTrig)	Rekenber Guard#02	867

lhz_in01.gat,25,141,4	script	Regenschirm Guard	868,{

	mes "[Regenschirm Guard]";
	if(isequipped(2241) && isequipped(2243)){
		mes "Do you wish to";
		mes "go underground?";
		next;
		if(select("Yes:No")==1){
			if(isequipped(2657)){
				warp "lhz_dun01.gat",150,288;
				end;
			}
			mes "[Regenschirm Guard]";
			mes "I'm sorry but I can't let";
			mes "staff without proper autorization";
			mes "pass. Only staff members with";
			mes "Laboratory Passports are allowed";
			mes "to enter the underground.";
			close;

		}
		mes "[Regenschirm Guard]";
		mes "Thank you and";
		mes "have a nice day.";
		close;
	}
	mes "This area is restricted";
	mes "to the public! Who are you";
	mes "and how did you get in here?!";
	mes "Hey, I need backup right away!";
	close2;
	warp "lhz_in01.gat",34,224;
	end;

}