summaryrefslogblamecommitdiff
path: root/npc/quests/quests_ein.txt
blob: 1a3a02e977cfa586fe0993d65b59a0100fb5a127 (plain) (tree)
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
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
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103






































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                                                   
 
//===== eAthena Script ======================================= 
//= Quest NPCs related to Einbroch and Einbech
//===== By: ================================================== 
//= Evera and The eAthena Dev Team
//===== Current Version: ===================================== 
//= 1.5.2
//===== Compatible With: ===================================== 
//= eAthena 7.15 +
//===== Description: ========================================= 
//= Shinokas Quest, Einbroch Lover Quest, Factory Quest,
//= Uwe Quest.
//===== Additional Comments: ================================= 
//= 1.0 Initial Release [Evera]
//= 1.1 Added more quests [Evera]
//= 1.2 Added quest bits from Einbech and renamed file to
//=	quests_ein.txt [Evera]
//= 1.3 Implemented the polution quest. [MasterOfMuppets]
//= 1.4.1 Massive bugfix. Fixed Pollution exploit [Lupus]
//= 1.4.2 Fixed Khowropher bug [Lupus]
//= 1.5 Fixed double levelup bug [Lupus]
//= 1.5.1 Fixed exploit [KarLaeda]
//= 1.5.2 Updated Shino Quest to leave no grabage vars [Lupus]
//============================================================ 


//============================================================
//=================================================== Shinokas
//====================================================== Quest

ein_in01.gat,231,163,1	script	Sick Old Man	849,6,6,{
	switch(Shinokas_Quest){
	case 9:
		mes "^3131FFShinokas's";
		mes "body has grown";
		mes "cold to the tough.";
		close;
	case 8:
		mes "["+strcharinfo(0)+"]";
		mes "Shinokas,";
		mes "I found something!";
		next;
		mes "[Shinokas]";
		mes "You...";
		mes "Came... back...";
		mes "Even... if... it's";
		mes "already... Too late.";
		mes "*Couhg Cough*";
		next;
	 	mes "^3131FFYou help Shinokas";
	 	mes "sit up, but find that";
		mes "your hands have been";
		mes "stained with his blood.^000000";
		next;
		mes "["+strcharinfo(0)+"]";
		mes "Blood...?!";
		mes "Shinokas!";
		mes "Who did this to you?";
		mes "W-we need to call for help!";
		next;
		mes "[Shinokas]";
		mes "No...";
		mes "It's already";
		mes "too late for me.";
		mes "I should have died";
		mes "a long time ago...";
		next;
		mes "[Shinokas]";
		mes "*Cough*";
		mes "I only regret that";
		mes "I've never been able";
		mes "to apologize to my";
		mes "friends... *Cough!*";
		next;
		mes "[Shinokas]";
		mes "But did you";
		mes "find out? D-did";
		mes "you find out what's";
		mes "so special about";
		mes "that ore? W-what";
		mes "is it... Really?";
		next;
		mes "["+strcharinfo(0)+"]";
		mes "It was...";
		next;
		input @text$;
		mes "^0000FF"+@text$+"^000000!";
		next;
		mes "[Shinokas]";
		mes "W-wait...!";
		mes "What did...";
		mes "I can't underst--";
		mes "*Couhgh cough!*";
		next;
		mes "["+strcharinfo(0)+"]";
		mes "No...!";
		mes "Tell me who";
		mes "did this to you!";
		mes "Where are they?";
		mes "Speak to me, please!";
		next;
		mes "[Shinokas]";
		mes "W-wha...?";
		mes "I told you.";
		mes "Th-they we--";
		next;
		mes "[Shinokas]";
		mes "...";
		mes "......";
		next;
		mes "["+strcharinfo(0)+"]";
		mes "No!";
		mes "Shinokas!";
		mes "Why, God?";
		mes "Why...";
		set Shinokas_Quest,9;
		close;
	case 7:
		mes "[Shinokas]";
		mes "...";
		mes "......";
		close;
	case 6:
		mes "[Shinokas]";
		mes "So...?";
		mes "Did you learn";
		mes "anything new";
		mes "in the Factory?";
		next;
		mes "["+strcharinfo(0)+"]";
		if(EinFactory != 16){
			mes "I haven't went there";
			mes "yet.";
			next;
			mes "[Shinokas]";
			mes "Then why did you come";
			mes "back? Go and investigate";
			mes "the factory now.";
			close;
		}
		mes "Well...";
		mes "There's a lot of";
		mes "suspicious business";
		mes "in the factory, but I don't";
		mes "think any of it is related";
		mes "to that ore you mentioned.";
		next;
		mes "[Shinokas]";
		mes "Damn it...";
		mes "Then where did";
		mes "they hide it? Where";
		mes "do you think that";
		mes "ore might be?";
		next;
		while(1){
			switch(select("Airport:Factory:Train Station:Airship Repairshop:Laboratory")){
			case 1: //airport
				mes "[Shinokas]";
				mes "No...";
				mes "The Airport is always";
				mes "crowded with people.";
				mes "It'd be a bad idea to hide";
				mes "something so important";
				mes "in that kind of place.";
				next;
				break;
			case 2: //factory
				mes "[Shinokas]";
				mes "Didn't you just";
				mes "check the factory?";
				mes "You couldn't find";
				mes "any clues to the";
				mes "ore over there...";
				next;
				break;
			case 3: //train
				mes "[Shinokas]";
				mes "Hmm...";
				mes "People are always going";
				mes "in and out of the Train Station.";
				mes "It's not the best place to hide";
				mes "something as important as the ore.";
				next;
				break;
			case 4: //repairshop
				mes "The Airship? Hm, it does";
				mes "fly through some mysterious";
				mes "power... But I already checked";
				mes "the Airship Replairshop myself.";
				mes "I haven't found any trace of";
				mes "the ore over there.";
				next;
				break;
			case 5: //Laboratory
				mes "[Shinokas]";
				mes "...!";
				mes "Yes. Yes...!";
				mes "That could be it!";
				mes "Why didn't I think";
				mes "about the Laboratory?";
				mes "It makes so much sense!";
				next;
				mes "[Shinokas]";
				mes "I have a good feeling";
				mes "about this. Please sneak";
				mes "into that Laboratory and";
				mes "see if you can find the ore!";
				next;
				mes "[Shinokas]";
				mes "Remember...";
				mes "Not just anybody";
				mes "can enter that kind";
				mes "of place. But I'm sure";
				mes "you'll figure something out.";
				set Shinokas_Quest,7;
				close;
			}
		}
	case 5:
		mes "[Shinokas]";
		mes "So, did you find";
		mes "anything from the";
		mes "Kapellthaines?";
		next;
		mes "["+strcharinfo(0)+"]";
		mes "Well, Mr. Kapelltheine";
		mes "is kind of violent, but";
		mes "I didn't find anything";
		mes "really suspicious.";
		next;
		mes "[Shinokas]";
		mes "Huh...";
		mes "I must have";
		mes "been wrong, then...";
		mes "Where else could it be?";
		next;
		mes "[Shinokas]";
		mes "Oh, right! The huge";
		mes "factory in Einbroch!";
		mes "What could be more";
		mes "suspicious? There's a ton";
		mes "of workers, but no one really";
		mes "knows what they do there...";
		next;
		mes "[Shinokas]";
		mes "If they're so secretive";
		mes "it's possible that they're";
		mes "keeping the ore over there.";
		mes "Please go and search the";
		mes "Factory for that ore as";
		mes "soon as you can.";
		set Shinokas_Quest,6;
		close;
	case 4:
		mes "[Shinokas]";
		mes "Please...";
		mes "Find out if the Kapelltheines";
		mes "are keeping some kind of unique";
		mes "ore. Their manor is on the road";
		mes "that leads to the Airport.";
		close;
	}
	//Shinokas_Quest = 0 1 2 3 10
	mes "[Sick Old Man]";
	mes "...!";
	next;
	mes "[Sick Old Man]";
	mes "Awwwk~";
	mes "It's killing me!";
	mes "Arrrgh! Awwwrgh!";
	mes "W-when will my son";
	mes "come back from";
	mes "the factory...?!";
	next;
	if(Shinokas_Quest != 3){
		mes "^3131FFYou feel really awkward";
		mes "just staring at this old";
		mes "man violently rolling";
		mes "around in his bed.";
		close;
	}
	//Shinokas_Quest = 3
	mes "["+strcharinfo(0)+"]";
	mes "Shi...";
	mes "Shinokas?";
	next;
	mes "[Sick Old Man]";
	mes "Huh...?";
	mes "Noooo! My name is";
	mes "Shinotarous. Y-you've";
	mes "got the wrong person!";
	next;
	mes "["+strcharinfo(0)+"]";
	mes "This has to be the";
	mes "Shinokas that Hikeman";
	mes "was talking about in Einbech";
	mes "Hmmm, but how can I get";
	mes "him to admit it?";
	next;
	mes "["+strcharinfo(0)+"]";
	mes "*Ahem!*";
	mes "Excuse me...";
	next;
	while(1){
		switch(select("Remember the mine tunnel collapse?:Didn't you used to be a miner?:Have you lived in Einbroch all your life?")){
		case 1: //remember
			if(@shinqst2 > 4 || @shinqst3 > 4) goto L_Cont;
			mes "[Sick Old Man]";
			mes "Noooo!";
			mes "I don't know";
			mes "what the hell";
			mes "you're talking";
			mes "about!";
			next;	
			break;
		case 2: //miner
			if(@shinqst2 > 1)goto s_Quest2;
			mes "[Sick Old Man]";
			mes "Noooo...!";
		 	mes "W-why would you";
			mes "even ask me that";
			mes "kind of question?!";
		s_Quest2:
			set @shinqst2,@shinqst2 + 1;
			if(@shinqst3)set @shinqst3,0;
			next;
			break;

		case 3: //einbroch
			if(@shinqst3 > 1)goto s_Quest3;
			mes "[Sick Old Man]";
			mes "Y-yes!";
			mes "Born and raised";
			mes "raised here in";
			mes "Einbe--Einbroch!";
			next;
			mes "^3131FFIt doesn't seem";
			mes "like this old man";
			mes "is telling the truth...";
		s_Quest3:
			set @shinqst3,@shinqst3 + 1;
			if(@shinqst2)set @shinqst2,0;
			next;
			break;
		}
	}
	
L_Cont:
	mes "[Shinokas]";
	mes "Hmm...";
	mes "^0000FFBuender Hikeman^000000...";
	next;
	mes "[Shinokas]";
	mes "No!";
	mes "I've never met";
	mes "Buender Hikeman";
	mes "in my entire li--";
	next;
	mes "[Shinokas]";
	mes "...";
	mes "......";
	next;
	mes "["+strcharinfo(0)+"]";
	mes "I was right!";
	mes "You're Shinokas!";
	next;
	mes "[Shinokas]";
	mes "Curses!";
	mes "I've blown";
	mes "my cover!";
	mes "W-wait! How much";
	mes "do you know?!";
	next;
	mes "[Shinokas]";
	mes "Did ^0000FFthey^000000 send you?";
	mes "*Sigh* I think that this";
	mes "is it. I'll never be";
	mes "able to solve the";
	mes "secret before I die.";
	next;
	mes "[Shinokas]";
	mes "Okay.";
	mes "Get on with it.";
	mes "I'm ready now...";
	next;
	mes "["+strcharinfo(0)+"]";
	mes "Tell me everything";
	mes "you know related to";
	mes "that incident where";
	mes "the mine tunnel";
	mes "collapsed around";
	mes "you and Hikeman.";
	next;
	mes "[Shinokas]";
	mes "...?";
	mes "Errr....";
	mes "You're not";
	mes "here to kill me?";
	next;
	mes "["+strcharinfo(0)+"]";
	mes "No...!";
	mes "I'm here to find";
	mes "out the truth";
	next;
	mes "[Shinokas]";
	mes "That means...";
	mes "I still have some time.";
	mes "This must be destiny!";
	mes "Allright, I'll tell you what";
	mes "happened. But it's a";
	mes "long story...";
	next;
	mes "[Shinokas]";
	mes "How much do you know";
	mes "about the accident? No,";
	mes "wait. Don't answer that.";
	mes "I don't want to hear it";
	next;
	mes "[Shinokas]";
	mes "I admit it. Yes.";
	mes "I stabbed my friends";
	mes "in the back. It was an";
	mes "unforgivable sin that will";
	mes "haunt me untill the day that I die";
	next;
	mes "[Shinokas]";
	mes "I sold out my friends for";
	mes "money. I destroyed that";
	mes "tunnel and killed them. But";
	mes "I suppose I was tricked as well.";
	mes "^0000FFThey^000000 never intended to keep";
	mes "their end of our agreement.";
	next;
	mes "[Shinokas]";
	mes "After I destroyed the tunnel,";
	mes "they targeted me and I ended";
	mes "spending the rest of my life being";
	mes "pursued and running for place to";
	mes "place. What the hell was that ^0000FFore^000000";
	mes "and why was it so important?";
	next;
	mes "[Shinokas]";
	mes "I need to know more about";
	mes "that ore if it's worth killing for.";
	mes "That's why I've risked sneaking";
	mes "into Einbroch. Sopposedly, an ore";
	mes "similar to the ore we found has";
	mes "been transported here recently";
	next;
	menu "Did you find it?",-;
	mes "[Shinokas]";
	mes "No, not yet.";
	mes "I've been searching";
	mes "for that ore every night.";
	mes "During the day, this kind";
	mes "blacksmith has managed";
	mes "to hide me from those men";
	next;
	mes "[Shinokas]";
	mes "But I won't be safe";
	mes "for very long. Look, I'm";
	mes "no saint, but before I die,";
	mes "I wanna do this one last";
	mes "thing and see what's so";
	mes "great about this ore...";
	next;
	menu "Wait, who's trying to get you?",-;
	mes "[Shinokas]";
	mes "Who's trying to kill me?";
	mes "The people who hired me and";
	mes "my friends to dig up that ore in";
	mes "the first place. We thought they";
	mes "were ordinary businessmen,";
	mes "but... They're dangerous.";
	next;
	mes "[Shinokas]";
	mes "So I told you everything";
	mes "and now you know that my";
	mes "day might be numbered.";
	mes "Please do an old man a favor";
	mes "and search Einbroch for that";
	mes "strange, mysterious ore.";
	next;
	mes "[Shinokas]";
	mes "Now, the first thing I learned";
	mes "in this tows is that the richest";
	mes "family is the Kapelltheines. Only";
	mes "the rich and powerful can possibly";
	mes "be involved in something so big.";
	next;
	mes "[Shinokas]";
	mes "Would you search";
	mes "Kappelltheine Manor";
	mes "for that ore? It's on the way";
	mes "to the Airport and it shouldn't be";
	mes "hard to miss. They're the richest";
	mes "people in Einbroch, after all.";
	next;
	mes "[Shinokas]";
	mes "I'm too old and weak to leave";
	mes "this house, and there's the change";
	mes "that those men will find me. If you";
	mes "can sympathize with my situation,";
	mes "please find out if the Kapelltheine";
	mes "family has any unique ores...";
	set Shinokas_Quest,4;
	close;

OnTouch:
	if(Shinokas_Quest != 8) end;
	mes "^3131FFThe open window rattles";
	mes "as you enter the room and";
	mes "are welcomed by a sudden";
	mes "chill. A trail of red footprints";
	mes "lies near your feet.";
	next;
	mes "^3131FFA grey sheet lies";
	mes "rumpled on the bed,";
	mes "but you can see dark red";
	mes "stains in between the folds.";
	close;
}	

ein_in01.gat,32,133,6	script	Maid	850,{
	mes "[Maid]";
	if(Shinokas_Quest != 4){
		mes "There's no end";
		mes "to all these plates";
		mes "I have to clean...!";
		close;
	}	
	mes "Did you ask me";
	mes "if I saw some kind";
	mes "of ore around here?";
	mes "That's strange...";
	next;
	mes "[Maid]";
	mes "Will, I've been with";
	mes "this family for a long";
	mes "time. Let me assure you";
	mes "that there's no secrets";
	mes "from me in this household!";
	next;
	mes "[Maid]";
	mes "I'm sorry, but I don't";
	mes "think we have any ores,";
	mes "special or otherwise, here";
	mes "in the manor. What exactly";
	mes "do you need them for?";
	set Shinokas_Quest,5;
	close;
}

einbroch.gat,51,52,1	script	lab_warp	45,2,2{
	if(Shinokas_Quest != 7){
		mes "^3131FFThe door is locked.";
		mes "You cannot enter.";
		close;
	}
	mes "[Security System]";
	mes "^FF0000*Beep Boop*^000000";
	mes "Restricted Access Area.";
	mes "Please identify yourself";
	mes "through the system.";
	next;
	switch(select("Identify.:Information:Cancel")){
		case 1: //Identify
			break; //continue after switch =\
		case 2: //information
			mes "[Security System]";
			mes "You must use the";
			mes "security system in order";
			mes "to gain access into the";
			mes "Einbroch Laboratory.";
			next;
			mes "[Security System]";
			mes "You will be given";
			mes "a password that you";
			mes "must input correctly";
			mes "withing 60 seconds.";
			mes "Otherwise, you will";
			mes "fail the security check.";
			//hell of a security system ye got there mate
			//wonder if gravity co has the same sort? xD
			next;
			mes "[Security System]";
			mes "If you take longer";
			mes "then 3 minutes to";
			mes "enter the password,";
			mes "the security system";
			mes "will initiate lockout.";
			close;
		case 3: //cancel
			mes "[Security System]";
			mes "You have canceled";
			mes "the ID security check.";
			close;
	}
	//ID check:
	mes "[Security System]";
	mes "Enter the following";
	mes "password in 60 seconds.";
	mes "Failure to do so will result";
	mes "in lockout. Please wait.";
	next;
	mes "[Security System]";
	set @startseconds,gettime(3)*60*60+gettime(2)*60+gettime(1);
	switch(rand(1,11)){
	case 1:
		mes "^00CCFFburrdingdingdilidingdingphoohudaamb";
		mes "^00CCFFandoora^0000FFbambarambambamburanbamding";
		input @str$;
		if(@str$ != "burrdindingdilidingdingphoohudaambandoorabambarambambamburanbamding") goto L_SCFail;
		goto L_Suc;
	case 2:
		mes "^FF33CCbarapaphurarlandreamduranbatuhi^990066wooi";
		mes "^990066kabamturubamdingding";
		next;
		input @str$;
		if(@str$ != "barapaphurarlandreamduranbatuhiwooikabamturubamdingding") goto L_SCFail;
		goto L_Suc;
	case 3:
		mes "^00CCFFbelief love luck grimace sweat rush";
		mes "^00CCFFfolktale rodimus optimus burnblebe";
		input @str$;
		if(@str$ != "belief love luck grimace sweat rush folktale rodimus optimus burnblebe") goto L_SCFail;
		goto L_Suc;
	case 4:
		mes "^FF33CCLiGhTsPeEd RiGhT SPEed leFT TURn";
		mes "^FF33CCRiGhT BuRn OrIGInAL GaNgSteR SmACk";
		input @str$;
		if(@str$ != "LiGhTsPeEd RiGhT SPEed leFT TURn RiGhT BuRn OrIGInAL GaNgSteR SmACk") goto L_SCFail;
		goto L_Suc;
	case 5:
		mes "^00CCFFCoboman no chikara-yumei na";
		mes "^00CCFFchikara-daiookii na chikara da ze!";
		mes "^00CCFFCOBO ON";
		input @str$;
		if(@str$ != "Coboman no chikara-yumei na chikara-daiookii na chikara da ze! COBO ON") goto L_SCFail;
		goto L_Suc;
	case 6:
		mes "^FF33CChfjdkeldjs^990066hfjdjeiskdlefvbd";
		input @str$;
		if(@str$ != "hfjdkeldjshfjdjeiskdlefvbd") goto L_SCFail;
		goto L_Suc;
	case 7:
		mes "^00CCFFI'm the King of all Weirdos! Now";
		mes "^00CCFFyou know of my true power. Obey~!";
		input @str$;
		if(@str$ != "I'm the King of all Weirdos! Now you know of my true power. Obey~!") goto L_SCFail;
		goto L_Suc;
	case 8:
		mes "^990066uNflAPPaBLe LoVaBLe SeCreTs AnD";
		mes "^990066BoWLiNg aGaINST tHe KarMA of YoUtH";
		input @str$;
		if(@str$ != "uNflAPPaBLe LoVaBLe SeCreTs AnD BoWLiNg aGaINST tHe KarMA if YoUtH") goto L_SCFail;
		goto L_Suc;
	case 9:
		mes "^00CCFFBy the power of^000000";
		mes "^00CCFFp-po-poi-po-poi-poin-poing";
		mes "^00CCFFGOD-POING. I NEVER LOSE!";
		input @str$;
		if(@str$ != "By the power of p-po-poi-po-poi-poin-poing GOD-POING. I NEVER LOSE!") goto L_SCFail;
		goto L_Suc;
	case 10:
		mes "^00CCFF...silence. quiet benevolence...";
		mes "^00CCFFsoul mate... wonder. enigma...";
		mes "^00CCFFcloud.^000000";
		input @str$;
		if(@str$ != "...silence. quiet benevolence... soul mate... wonder. enigma... cloud") goto L_SCFail;
		goto L_Suc;
	case 11:
		mes "^FF33CCopeN,Open!op3n.openOpen0p3nOpEn0pen";
		mes "^FF33CC`open'0Pen open?open!111OPENSESAME";
		input @str$;
		if(@str$ != "opeN,Open!op3n.openOpenOp3nIoEnOpen`open'0Pen open?open!111OPENSESAME") goto L_SCFail;
		goto L_Suc;
	}
L_Suc:
	next;
	set @endtime,gettime(3)*60*60+gettime(2)*60+gettime(1);
	set @time,@endtime-@startseconds;
	if(@time > 60) goto L_SC60;
	mes "[Security System]";
	mes "It took ^FF0000"+@time+" seconds^000000";
	mes "for you to enter the";
	mes "password. Initiating";
	mes "override. Access granted.";
	close2;
	warp "ein_in01.gat",283,25;
	end;
	
L_SC60:
	mes "[Security System]";
	mes "Time over.";
	mes "It took ^FF0000"+@time+" seconds^000000";
	mes "for you to enter the";
	mes "password. Initiating";
	mes "lockout. Access denied.";
	close;
	
L_SCFail:
	next;
	mes "[Security System]";
	mes "You have failed";
	mes "the identification";
	mes "check. Access denied.";
	close;
}
einbroch.gat,51,56,6	script	Laboratory Soldier#01	852,{
	mes "[Laboratory Soldier]";
	mes "This area is off limits.";
	mes "Please leave";
	mes "immediately";
	close;

OnHide:
	specialeffect 16;
	disablenpc "Laboratory Soldier#01";
	end;

OnUnhide:
	misceffect 215;
	end;

}
einbroch.gat,51,47,6	script	Laboratory Soldier#02	852,{
	mes "[Laboratory Soldier]";
	mes "This area is off limits.";
	mes "Please leave";
	mes "immediately";
	close;

OnHide:
	specialeffect 16;
	disablenpc "Laboratory Soldier#02";
	end;

OnUnhide:
	misceffect 215;
	end;

}
ein_in01.gat,254,35,1	script	Scientist	749,{
	mes "[Scientist]";
	mes "*Grumble grumble*";
	next;
	if(ein_scientist == 1) goto L_P2;
	mes "[Scientist]";
	mes "Huh...?";
	mes "How did you";
	mes "get in here?";
	next;
	mes "["+strcharinfo(0)+"]";
	mes "Oh! Ah...";
	mes "I'm the new...";
	mes "Guard. Nice";
	mes "to meet you.";
	next;
	mes "[Scientist]";
	mes "Oh. Yeah.";
	mes "Nice-meet-you";
	mes "..............";
	mes "*Grumble grumble*";
	next;
	if(select("What's wrong?:Catch you later.")==2){
		 mes "[Scientist]";
		 mes "Right.";
		 mes "Yeah.";
		 mes "Later, man.";
		 close;
	}
	mes "[Scientist]";
	mes "What's wrong...?!";
	mes "Oh, don't get me started!";
	mes "I'm stuck here doing all the";
	mes "work while the Lab Departement";
	mes "Head goes out every freakin' day!";
	next;
	mes "[Scientist]";
	mes "While I'm slaving";
	mes "away here, he's in";
	mes "that Airship, busy";
	mes "flirting with that";
	mes "woman. God...!";
	mes "I'm like, so teed off!";
	if(Shinokas_Quest < 8) set ein_scientist,1;
	close;
	
L_P2:
	mes "[Scientist]";
	mes "Man alive!";
	mes "Would it kill the";
	mes "Department Head";
	mes "to come in here and do";
	mes "some work for a change?!";
	next;
	mes "[Scientist]";
	mes "I mean, come on!";
	mes "I shouldn't have to";
	mes "carry his workload!";
	close;
}

ein_in01.gat,266,26,1	script	Unknown Stuff	111,{
	mes "^3131FFThere's something";
	mes "attached to a huge";
	mes "machine with many cords";
	mes "and folds of barbed wire";
	if(Shinokas_Quest < 8) set ein_stuff,1;
	close;
}

airplane.gat,31,77,4	script	Drunken Man#03	853,{
	if(Shinokas_Quest >= 8){
		mes "[Drunken Man]";
		mes "Hahahahaha!";
		mes "You're great!";
		mes "I feel great!";
		mes "Everything's great!";
		mes "Bwahahahaahahah!";
		mes "*Hiccup*";
		close;
	}
	mes "[Drunken Man]";
	mes "Okay okay...";
	mes "Daddy's gonna";
	mes "win some Apples";
	mes "this time for sure!";
	next;
	if(ein_stuff && ein_scientist){
		mes "[Drunken Man]";
		mes "Let's do it!";
		mes "^3131FFYmir's Heart^000000 is";
		mes "on my side! GO!";
		next;
		mes "["+strcharinfo(0)+"]";
		mes "Huh...?";
		mes "What did he just say?";
		mes "It seemed important!";
		next;
	}
	mes "^0000FF*Rolling and rumbling*^000000";
	next;
	mes "[Kaci]";
	mes "I have a total of ^FF000011^000000";
	mes "and you have total ^FF00005^000000.";
	mes "You lose this game. I'm";
	mes "sorry, but I hope we play";
	mes "again sometime.";
	donpcevent "Kaci::OnLose";
	next;
	mes "[Drunken Man]";
	mes "Waaaaaahhhhhhhhh!";
	mes "Apples! My apples!";
	mes "Apples, I need more...!";
	if(countitem(512) && ein_stuff && ein_scientist) goto L_Apples;
	close;
	
L_Apples:
	next;
	mes "["+strcharinfo(0)+"]";
	mes "Do you want";
	mes "some of mine?";
	next;
	if(countitem(512) <100){
		mes "[Drunken Man]";
		mes "What...?";
		mes "I can't do anything";
		mes "with so few Apples!";
		mes "I'm a high roller and";
		mes "this is a high stakes game!";
		close;
	}
	mes "[Drunken Man]";
	mes "Wha--? Yes...";
	mes "Hell yes! Gimme";
	mes "some of your Apples!";
	mes "Yeeeeeeeeeeehaw!";
	mes "I'm back, baby!";
	next;
	mes "[Drunken Man]";
	mes "Now, to win!";
	mes "Daddy needs love...";
	mes "Time to go from";
	mes "crappy to classy!";
	next;
	mes "^0000FF*Rolling and rumbling*^000000";
	next;
	delitem 512,countitem(512);
	set @kaci,rand(2,12);
	set @man,rand(2,12);
	if(@man == @kaci){
		if(rand(2)){
			if(@man != 12)
				set @man,@man+1;
			else
				set @man,@man-1;
		}else{
			if(@man != 2)
				set @man,@man-1;
			else
				set @man,@man+1;
		}
	}
	mes "[Kaci]";
	mes "Oooh...";
	mes "I got a total of ^FF0000"+@kaci+"^000000,";
	mes "and you have a total of ^FF0000"+@man+"^000000.";
	if(@man < @kaci){
		mes "I'm sorry, but you lose";
		mes "again. Better luck next time...";
		donpcevent "Kaci::OnLose";
		next;
		mes "[Drunken Man]";
		mes "Waaaaaahhhhhhhhhhhh!";
		mes "Waaaaaaaahhhhhhh!";
		close;
	}
	mes "Congratulations, you won!";
	mes "Let me give you your winning";
	mes "and we'll play again some time~";
	donpcevent "Kaci::OnWin";
	next;
	mes "[Drunken Man]";
	mes "Mwahhhahahahaha!";
	mes "Whahahahahahahahaha!";
	mes "That's why they call me";
	mes "the 'Resurrection Kid!'";
	mes "I always come back!";
	next;
	mes "[Drunken Man]";
	mes "Oh yes, right!";
	mes "You...! You lent";
	mes "me those lucky";
	mes "Apples. ^111111*Hiccup*^000000";
	next;
	mes "[Drunken Man]";
	mes "I'm Kurschenburg!";
	mes "Thanks to you, I'm";
	mes "on a winning streak!";
	mes "Hahaha! Th-thank you~";
	mes "^111111*Hic-hic-hiccup!*^000000";
	next;
	if(select("So what was that about Ymir's Heart?:Hehe, you're welcome.")==2){
		 mes "[Drunken Man]";
		 mes "Hahahaha!";
		 mes "You're great!";
		 mes "And I feel great!";
		 mes "Bwahahahaahahah!";
		 mes "^111111*Hiccup*^000000";
		 close;
	}
	mes "[Drunken Man]";
	mes "What...?";
	mes "Ymir's Heart?";
	mes "How do you know";
	mes "about that? ^111111*Hiccup*^000000";
	next;
	mes "["+strcharinfo(0)+"]";
	mes "Y-you...!";
	mes "You were just yelling,";
	mes "'Ymir's Heart is on my";
	mes "side,' while you were";
	mes "gambling with those Apples!";
	next;
	mes "[Drunken Man]";
	mes "What...?!";
	mes "No way~";
	mes "Err...? Did I...?";
	next;
	mes "[Drunken Man]";
	mes "Heh heh...";
	mes "I'm not really";
	mes "supposed to be talking";
	mes "about this. As head of";
	mes "the Laboratory, I'm sworn";
	mes "to secrecy about Ymir's Heart.";
	next;
	mes "[Drunken Man]";
	mes "But what do I care?!";
	mes "All they want are the";
	mes "results of my research!";
	mes "They don't appreciate";
	mes "my work at all! My title";
	mes "is completely worthless!";
	next;
	mes "[Drunken Man]";
	mes "You don't know how long I've";
	mes "been imprisoned in the lab and";
	mes "that the work conditions just get";
	mes "worse and worse. Screw them! I'll";
	mes "keep getting paid as long as I show";
	mes "them some progress in our project!";
	next;
	menu "Project?",-;
	mes "[Drunken Man]";
	mes "Yeah, we're researching";
	mes "Ymir's Heart. It was found";
	mes "a long time ago in ^3131FFEinbech^000000";
	mes "and it's in our lab now.";
	next;
	mes "[Drunken Man]";
	mes "Everyone knows it's supposed";
	mes "to hold some legendary power,";
	mes "but even I was surprised to see";
	mes "what it was capable of. It's both";
	mes "terrible and miraculous, scary";
	mes "and wondrous...";
	next;
	mes "[Drunken Man]";
	mes "So...";
	mes "I figure...";
	mes "It may even";
	mes "have the power to";
	mes "win me Dice games!";
	mes "Bwahaha--*Hiccup!*";
	next;
	mes "["+strcharinfo(0)+"]";
	mes "(That thing I saw";
	mes "hooked up to all those";
	mes "wires in the Laboratory";
	mes "must have been a piece";
	mes "of ^3131FFYmir's Heart^000000. I better";
	mes "tell Shinokas about this.)";
	set Shinokas_Quest,8;
	//cleaning temp variables from the lab.
	set ein_stuff,0;
	set ein_scientist,0;
	close;
}
	
einbech.gat,57,210,4	script	Young Man#04	854,{
	mes "[Young Man]"; 
	mes "Behind the pub,";
	mes "you'll see this old man";
	mes "who's always mumbling";
	mes "something to himself.";
	next;
	mes "[Young Man]";
	mes "Sometimes he seems really";
	mes "angry, but other times he looks";
	mes "awfully depressed. He must have";
	mes "lived through some really horrible";
	mes "experiences. I can't help but feel";
	mes "really sorry for the old guy.";
	next;
	mes "[Young Man]";
	mes "He says and does";
	mes "a lot of strange things.";
	mes "It's sad to see someone";
	mes "that old act that way, but";
	mes "it makes me wonder what";
	mes "could have happened to him.";
	if(!Shinokas_Quest)set Shinokas_Quest,1;
	close;
}

einbech.gat,165,105,7	script	Buender Hikeman	847,{
	if(Shinokas_Quest >= 9) goto L_P2;
	if(Shinokas_Quest == 3) goto L_BEST;
	if(Shinokas_Quest == 2) goto L_BASTARD;
	mes "[Buender Hikeman]";
	mes "...";
	mes "......";
	if(!Shinokas_Quest)close;
	next;
	mes "[Buender Hikeman]";
	mes "...";
	mes "......";
	mes "......You...";
	next;
	mes "[Buender Hikeman]";
	mes "...";
	mes "......";
	mes "......You...";
	mes "......Stop it...";
	next;
	mes "[Buender Hikeman]";
	mes "...";
	mes "......";
	mes "......You...";
	mes "......Stop it...";
	mes "...You ^FF0000bastard^000000!";
	next;
	mes "[Buender Hikeman]";
	mes "RaaaaAAAARGHHH!!";
	next;
	mes "[Buender Hikeman]";
	mes "^0000FFThe old man seems^000000";
	mes "^0000FFslightly irked at seeing^000000";
	mes "^0000FFyou. Unfortunately, his^000000";
	mes "^0000FFscreaming and rambling^000000";
	mes "^0000FFis totally incoherent.^000000";
	next;
	mes "[Buender Hikeman]";
	mes "It ^FF0000is^000000 you!";
	mes "You're responsible!";
	mes "You've taken everything";
	mes "away from me!!";
	next;
	menu "What are you talking about?",L_WHAT,"Ignore Him.",-;
	mes "[Buender Hikeman]";
	mes "W...wait!";
	mes "I said wait!";
	mes "*Cough!*";
	close;
L_WHAT:
	mes "[Buender Hikeman]";
	mes "How dare you...";
	mes "How dare you treat";
	mes "after destroying all the";
	mes "happiness in my life!";
	next;
	mes "[Buender Hikeman]";
	mes "Damn you...";
	mes "How can you have";
	mes "the audacity to pretend";
	mes "as if nothing happened?!";
	mes "*C-cough Cough...*";
	next;
	mes "[Buender Hikeman]";
	mes "Are you so evil to";
	mes "just shallowly forget";
	mes "what you've done to our";
	mes "lives? Did you already";
	mes "forget what you did";
	mes "here in Einbech?!";
	next;
	mes "[Buender Hikeman]";
	mes "It was such a long";
	mes "time ago, but I'll never";
	mes "forget. This town was";
	mes "small, but full of folk";
	mes "with warm hearts...";
	next;
	mes "[Buender Hikeman]";
	mes "Me, Khartophe, Anuto,";
	mes "Maskharundt... All of";
	mes "us were friends hired";
	mes "by that businessman";
	mes "to dig up ores in the mine.";
	next;
	mes "[Buender Hikeman]";
	mes "And then there";
	mes "was you! All of us";
	mes "put together made the";
	mes "greatest mining team!";
	mes "That was, until, we";
	mes "discovered ^FF0000it^000000.";
	next;
	mes "[Buender Hikeman]";
	mes "Yes...";
	mes "The mysterious ore";
	mes "that dazzled with a";
	mes "magnificent light.";
	next;
	mes "[Buender Hikeman]";
	mes "But we should have known";
	mes "that the ^0000FFUngoliant^000000 would";
	mes "be arround that ore. We";
	mes "should have realized";
	mes "the danger...";
	next;
	mes "[Buender Hikeman]";
	mes "We reported our findings";
	mes "to our employer, and then";
	mes "the ore just disappeared. He";
	mes "must have sent it somewhere,";
	mes "it was none of our business.";
	next;
	mes "[Buender Hikeman]";
	mes "Then life was back";
	mes "to normal for a while.";
	mes "But one day you yelled";
	mes "to us that you had found";
	mes "another special, mysterious";
	mes "ore in the mines.";
	next;
	mes "[Buender Hikeman]";
	mes "But when we came";
	mes "over to check the hole";
	mes "you dug up, you know";
	mes "what we found...?!";
	next;
	menu "Ungoliant?",L_UNGOLIANT,"A mysterious ore, right?",L_ORE,"Nothing...?",-;
	mes "[Buender Hikeman]";
	mes "Yes...";
	mes "Nothing.";
	next;
	goto L_CONTINUE;
L_UNGOLIANT:
	mes "[Buender Hikeman]";
	mes "Don't you remember";
	mes "what happened? What";
	mes "you did to us at that time?!";
	next;
L_CONTINUE:
	mes "[Buender Hikeman]";
	mes "There was nothing";
	mes "inside the hole!";
	next;
	mes "[Buender Hikeman]";
	mes "Then you pointed to";
	mes "the wall behind us and";
	mes "screamed that Ungoliant";
	mes "was coming! In our panic";
	mes "we started to dig our way out!";
	next;
	mes "[Buender Hikeman]";
	mes "I remember that the expression on";
	mes "your face seemed so strange. I had";
	mes "thought you looked sad, but now I'm";
	mes "sure you were consumed by greed! We";
	mes "trusted you and you betrayed us!";
	next;
	mes "[Buender Hikeman]";
	mes "When we finally smashed";
	mes "down that last wall, everything";
	mes "started to fall around us. We";
	mes "were the only two to survive";
	mes "that tunnel collapse.";
	next;
	mes "[Buender Hikeman]";
	mes "Then I learned...";
	mes "You planned it all along.";
	if(Shinokas_Quest == 1) set Shinokas_Quest,2;
	close;
L_ORE:
	mes "[Buender Hikeman]";
	mes "Don't you remember";
	mes "what happened? What";
	mes "you did to us at that time?!";
	next;
	goto L_CONTINUE;
L_BASTARD:
	mes "[Buender Hikeman]";
	mes "Bastard!";
	mes "I'm sick of";
	mes "your lies!";
	next;
	menu "I'm not who you think!",L_IM,"How did you survive the accident?",-;
L_HOW:
	mes "[Buender Hikeman]";
	mes "When I came to,";
	mes "I was lying on my";
	mes "stomach in the ruins";
	mes "of that dark tunnel.";
	next;
	mes "[Buender Hikeman]";
	mes "And I found...";
	mes "You know what I found.";
	next;
	mes "[Buender Hikeman]";
	mes "*Cough Cough*";
	mes "The corpses of my friends!";
	mes "Kartophe, Anuto, Maskharundt";
	mes "Great men and my best friends.";
	mes "But where were you?!";
	next;
	mes "[Buender Hikeman]";
	mes "Your body was nowhere";
	mes "to be found. I searched";
	mes "the tunnel and finnaly";
	mes "climbed outside where";
	mes "I was found unconscious.";
	next;
	mes "[Buender Hikeman]";
	mes "I was so stupid.";
	mes "It was because of";
	mes "that ore! You killed our";
	mes "friend and destroyed";
	mes "my life for that thing!";
	next;
	mes "[Buender Hikeman]";
	mes "And now...";
	mes "You come out of";
	mes "hiding and show up.";
	mes "What do you want of";
	mes "me? What more can";
	mes "you possibly take away?!";
	next;
	menu "I'm not who you think I am!",L_THINK,"I'd like to apologize.",-;
	mes "[Buender Hikeman]";
	mes "Ha ha...";
	mes "Apologize?";
	mes "The harm is";
	mes "already done...";
	goto L_CONTINUE2;
L_THINK:
	mes "[Buender Hikeman]";
	mes "Quit lying!";
	mes "You've stirred up";
	mes "my hatred by showing";
	mes "up again! I've never";
	mes "forgotten that day!";
	next;
L_CONTINUE2:
	mes "[Buender Hikeman]";
	mes "It's too late";
	mes "for you now. For";
	mes "the sake of my friends,";
	mes "I'll have my vengeance!";
	next;
	mes "[Buender Hikeman]";
	mes "Prepare to die!";
	mes "^0000FFShinokas^000000!!!!";
	next;
	mes "[Buender Hikeman]";
	mes "...!";
	mes "*Cough! Cough!*";
	mes "Noooo! N-not now...";
	mes "*Cough! Cough!*";
	next;
	mes "[" + strcharinfo(0) + "]";
	mes "...";
	mes "I better";
	mes "get away";
	mes "from him!";
	next;
	mes "^0000FFYou ran away from Hikeman^000000";
	mes "^0000FFas he collapsed on the ground^000000";
	mes "^0000FFIt wouldn't be a good idea to^000000";
	mes "^0000FFprovoke the old man anymore,^000000";
	mes "^0000FFintentionally or not.^000000";
	if(Shinokas_Quest == 2) set Shinokas_Quest,3;
	close;
L_BEST:
	mes "^0000FFIt'd be best^000000";
	mes "^0000FFto avoid aggravating^000000";
	mes "^0000FFthe old man for now.^000000";
	close;
L_IM:
	mes "[Buender Hikeman]";
	mes "Ha...!";
	mes "Do you think";
	mes "I'd so easily";
	mes "forget the face";
	mes "of the person who";
	mes "shattered my life?!";
	goto L_HOW;
	
L_P2:
	mes "^0000FFHikeman is dozing^000000";
	mes "^0000FFoff in his chair. Judging^000000";
	mes "^0000FFfrom the look of discomfort^000000";
	mes "^0000FFon his face, he seems to be^000000";
	mes "^0000FFhaving a nightmare.^000000";
	if(Shinokas_Quest == 10) close;
	next;
	mes "["+strcharinfo(0)+"]";
	mes "Excuse me...";
	next;
	mes "[Buender Hikeman]";
	mes "Huh...?";
	mes ".........!!";
	mes "Hahahahaha!";
	mes "Come back for";
	mes "your beating,";
	mes "eh, Shinokas?!";
	next;
	mes "["+strcharinfo(0)+"]";
	mes "Look...!";
	mes "I'm not Shinokas,";
	mes "okay? How can you";
	mes "forget what he looks";
	mes "like or how old he is?";
	mes "I'm way younger!";
	next;
	mes "[Buender Hikeman]";
	mes "What...?";
	next;
	mes "[Buender Hikeman]";
	mes "..................";
	next;
	mes "[Buender Hikeman]";
	mes "Uhhhh......";
	next;
	mes "[Buender Hikeman]";
	mes "Huh.";
	next;
	mes "[Buender Hikeman]";
	mes "It seems...";
	mes "I've made a";
	mes "huge mistake.";
	next;
	mes "[Buender Hikeman]";
	mes "Ever since the accident, people";
	mes "have said that I haven't been the";
	mes "same. Maybe they're right.";
	next;
	mes "[Buender Hikeman]";
	mes "I keep making the same";
	mes "mistakes, so maybe they're";
	mes "right about me getting senile.";
	mes "Did you come just to clear";
	mes "up this misunderstanding?";
	next;
	mes "["+strcharinfo(0)+"]";
	mes "Um...";
	mes "Actually...";
	next;
	menu "Tell Hikeman about Shinakas's death.",-,"Don't notify Hikeman",L_NNotify;

	set Shinokas_Quest,10;
	mes "["+strcharinfo(0)+"]";
	mes "Shinokas died";
	mes "a while ago in";
	mes "Einbroch.";
	next;
	mes "[Buender Hikeman]";
	mes "Wh-what...?";
	next;
	mes "["+strcharinfo(0)+"]";
	mes "Shinokas was killed by";
	mes "some men. He thinks they";
	mes "may have been the ones";
	mes "who hired you guys. In the";
	mes "end, he was betrayed too...";
	next;
	mes "[Buender Hikeman]";
	mes "I...";
	mes "I see...";
	next;
	mes "["+strcharinfo(0)+"]";
	mes "Shinokas may have";
	mes "gotten some money,";
	mes "but he spent the rest";
	mes "of his life in hiding,";
	mes "being hunted down.";
	next;
	mes "[Buender Hikeman]";
	mes "Nothing's left.";
	mes "I've got nothing";
	mes "to look forward to.";
	mes "I was living only to";
	mes "avenge my friends...";
	next;
	mes "[Buender Hikeman]";
	mes "Please...";
	mes "Just go back to";
	mes "wherever you came";
	mes "from. Leave me alone...";
	next;
	mes "["+strcharinfo(0)+"]";
	mes "...";
	next;
	mes "["+strcharinfo(0)+"]";
	mes "Did Hikeman really want";
	mes "revenge on Shinokas or did";
	mes "he want to hear him out since";
	mes "they used to be close friends?";
	next;
	mes "["+strcharinfo(0)+"]";
	mes "If I mention that";
	mes "what they found was";
	mes "the Ymir Heart Piece,";
	mes "Hikeman might end up";
	mes "getting hunter down, so";
	mes "I better not say anything.";
	next;
	mes "["+strcharinfo(0)+"]";
	mes "Why are those men";
	mes "so obsessed with that";
	mes "Ymir Heart Piece? Is it";
	mes "really worth this kind of";
	mes "cruelty? Whoever they are,";
	mes "their intentions can't be good.";
	if(BaseLevel < 41)set BaseExp,BaseExp+34750;
	else if(BaseLevel > 40 && BaseLevel < 61)set BaseExp,BaseExp+69500;
	else if(BaseLevel > 60 && BaseLevel < 71)set BaseExp,BaseExp+139000;
	else if(BaseLevel > 70 && BaseLevel < 81)set BaseExp,BaseExp+278000;
	else if(BaseLevel > 80 && BaseLevel < 91)set BaseExp,BaseExp+417000;
	else if(BaseLevel > 90)set BaseExp,BaseExp+556000;
	close;
	
L_NNotify:
	mes "["+strcharinfo(0)+"]";
	mes "Yeah...";
	mes "That's right.";
	mes "I wanted to clear up";
	mes "this misunderstanding";
	mes "so you could calm down,";
	mes "even if it's just a little bit.";
	next;
	mes "[Buender Hikeman]";
	mes "Well, you don't have";
	mes "to worry so much about";
	mes ",u stress. I find that the";
	mes "winds that pass through";
	mes "this town to be very relaxing.";
	next;
	mes "[Buender Hikeman]";
	mes "Each time the wind";
	mes "blows by, my vision blurs,";
	mes "my memories haze and all";
	mes "of my hatred just drifts away.";
	next;
	mes "[Buender Hikeman]";
	mes "Without the wind, I'd only";
	mes "have my hatred towards ^FF0000him^000000.";
	mes "Maybe it's my only reason for";
	mes "living and maybe I'm lonely,";
	mes "but it's too late to feel";
	mes "sorry for myself now.";
	close;
}


//============================================================
//============================================= Einbroch Lover
//====================================================== Quest
ein_in01.gat,31,151,4	script	Satra	850,{
	if(EIN_LOVERQ > 11)goto s_Intimi;
	if(EIN_LOVERQ == 11)goto s_Coal4;
	if(EIN_LOVERQ == 10)goto s_Coal3;
	if(EIN_LOVERQ == 9)goto s_Coal2;
	if(EIN_LOVERQ == 8)goto s_Coal1;
	if(EIN_LOVERQ == 7)goto s_Advent;
	mes "[Satra]";
	mes "A wandering";
	mes "adventurer...?";
	mes "How sinfully";
	mes "intriguing!";
	mes "Ho ho ho ho~";
	next;
	mes "[Satra]";
	mes "Oh, do not worry";
	mes "I'm sure the beauty of";
	mes "my home has captured your";
	mes "curiosity. My brutish excuse";
	mes "for a husband would have you";
	mes "beat if he found you...";
	next;
	mes "[Satra]";
	mes "But I'm far more genteel";
	mes "then Megass. You're more";
	mes "than welcome to enjoy the";
	mes "furnishings. Ho ho ho ho~";
	close;

s_Advent:
	mes "[Satra]";
	mes "A wandering adventurer...?";
	mes "How ravishingly delightful!";
	mes "You must have risked life and";
	mes "limb to sneak past my husband";
	mes "to enjoy the captivating sights";
	mes "of my home. Ho ho ho ho~";
	next;
	mes "[Satra]";
	mes "Since you're a very";
	mes "unique quest, I shall";
	mes "give you a unique honor";
	mes "and deign to converse";
	mes "with you, adventurer.";
	next;
	mes "[Satra]";
	mes "Einbech exists to provide";
	mes "my family with coal and";
	mes "materials from their mines.";
	mes "It's a natural law: workers";
	mes "must be led by a chosen few.";
	next;
	mes "[Satra]";
	mes "It's delightfully";
	mes "ludicrous to see those";
	mes "workers aspire to reach";
	mes "our heights of social";
	mes "prestige. Ho ho ho ho~";
	next;
	mes "[Satra]";
	mes "Oh, I haven't spoken to";
	mes "someone from a lower";
	mes "class in ages! It feels";
	mes "so forbiddenly exciting!";
	next;
	mes "[Satra]";
	mes "Well adventurer, that's";
	mes "the end of our informal";
	mes "chat. I'll even grant you";
	mes "full permission to boast";
	mes "of the fact that you've";
	mes "spoken to Lady Satra.";
	next;
	mes "[Satra]";
	mes "If you wish for";
	mes "me to share words with";
	mes "you once more, prove to";
	mes "me that you're worthier";
	mes "than the other peons of";
	mes "my graceful presence.";
	next;
s_Coal1:
	mes "[Satra]";
	mes "Oh, I have a marvelous";
	mes "idea! Why don't you bring";
	mes "me ^9C0000Coals^000000? It's not impossible";
	mes "for someone like yourself, but";
	mes "this kind of task will require";
	mes "some effort on your part.";
	next;
	if(EIN_LOVERQ == 8 && countitem(1003) > 9)goto s_GotCoal1;
	mes "[Satra]";
	mes "Tah tah,";
	mes "adventurer~";
	if(EIN_LOVERQ == 7)set EIN_LOVERQ,8;
	close;

s_GotCoal1:
	mes "[Satra]";
	mes "My, you've already";
	mes "brought the Coal?";
	mes "How charmingly";
	mes "prompt you are~";
	next;
	mes "[Satra]";
	mes "On behalf of the";
	mes "Kappellthaine family,";
	mes "I shall ignore your lowly";
	mes "status and graciously";
	mes "accept your small gift.";
	mes "Ho ho ho~";
	next;
	mes "[Satra]";
	mes "Do you hail from";
	mes "Einbech, adventurer?";
	mes "Ah, the Rune-Midgarts";
	mes "kingdom! I've visited your";
	mes "country. It's quite quaint";
	mes "and Jawaii is very lovely.";
	next;
	mes "[Satra]";
	mes "Well, I shall try to";
	mes "find some use for these.";
	mes "I'm afraid the gift I've asked";
	mes "from you isn't very practical.";
	mes "How is coal usually used?";
	mes "Ah, I have a novel idea!";
	next;
	mes "[Satra]";
	mes "Wouldn't it be";
	mes "intoxicatingly wild if";
	mes "Megass were to hold one";
	mes "of those social functions that";
	mes "the lower classes are so fond";
	mes "of? A 'barbeque', yes?";
	next;
	mes "[Satra]";
	mes "In any case, If you";
	mes "bring me more of that";
	mes "Coal, you would be even";
	mes "more favored by me and";
	mes "you'll become a recipient";
	mes "of my good graces. Ho ho~";
	set EIN_LOVERQ,9;
	delitem 1003,10;
	close;

s_Coal2:
	mes "[Satra]";
	mes "^111111*Titter~*^000000";
	mes "Why, if it isn't my";
	mes "intrepid adventurer.";
	mes "Ho ho ho ho~";
	next;
	if(countitem(1003) > 9)goto s_GotCoal2;
	mes "[Satra]";
	mes "My apologies, but you";
	mes "must first prove to me";
	mes "that you are worthy of";
	mes "conversation. Why don't";
	mes "you deliver more of those";
	mes "^9C0000Coals^000000, mmm?";
	next;
	mes "[Satra]";
	mes "After all, I have no other";
	mes "means of knowing whether";
	mes "or not you appreciate the time";
	mes "I sacrifice by socializing with";
	mes "someone of your status.";
	mes "Ho ho ho ho~";
	close;

s_GotCoal2:
	mes "[Satra]";
	mes "My word!";
	mes "Why are you carrying";
	mes "all of that dirty Coal";
	mes "with you? You poor,";
	mes "impoverished thing.";
	next;
	mes "[Satra]";
	mes "Oh! Dear me,";
	mes "I've nearly forgotten~";
	mes "How divinely silly of me!";
	mes "Once again, I graciously";
	mes "accept your small gift on";
	mes "behalf of the Kappelthaines.";
	next;
	mes "[Satra]";
	mes "Let me share a little";
	mes "bit of history concerning";
	mes "our lovely Einbroch. At one";
	mes "time, there was only Einbech,";
	mes "the mining village. You can";
	mes "imagine how long ago that was.";
	next;
	mes "[Satra]";
	mes "However, the minerals";
	mes "and ores mined in Einbech";
	mes "need to be processed and";
	mes "refined in factories that were";
	mes "all built in a nearby industrial";
	mes "comple which became Einbroch.";
	next;
	mes "[Satra]";
	mes "Now every citizen in";
	mes "Einbroch is wealthy and";
	mes "it's well known that there";
	mes "is a higher standard of";
	mes "living here than in Einbech.";
	next;
	mes "[Satra]";
	mes "Goodness, I believe";
	mes "it's time for a spot of tea~";
	mes "The next time you wish to have";
	mes "an audience with me, it would";
	mes "behoove you to bring another";
	mes "gift of Coal. Toodles~";
	set EIN_LOVERQ,10;
	delitem 1003,10;
	close;

s_Coal3:
	mes "[Satra]";
	mes "Why hello~";
	mes "Your visits have";
	mes "recently been quite";
	mes "delightful, fair adventurer.";
	next;
	mes "[Satra]";
	mes "Oh, my apologies!";
	mes "I supposed you're just";
	mes "here for sight seeing,";
	mes "or perhaps you're running";
	mes "some sort of adventurer's";
	mes "errand. Am I right?";
	next;
	if(countitem(1003) > 9)goto s_GotCoal3;
	mes "[Satra]";
	mes "I know you well enough";
	mes "to know that you wouldn't";
	mes "be so rude as to stop by";
	mes "and chat without bringing";
	mes "any ^9C0000Coal^000000. Ho ho ho ho~";
	close;

s_GotCoal3:
	mes "[Satra]";
	mes "Continue to show";
	mes "your appreciation";
	mes "and dedication to me";
	mes "and you'll soon be known";
	mes "to be my most favored";
	mes "commoner. Ho ho ho ho~";
	next;
	mes "[Satra]";
	mes "I'm sure you've noticed";
	mes "the strained relationship";
	mes "between Einbroch and Einbech";
	mes "by now. It's a shame, really.";
	next;
	mes "[Satra]";
	mes "As Einbroch grew wealthier";
	mes "and Einbech became more";
	mes "destitude, the affluent began";
	mes "despising the impoverished.";
	mes "I supposed it follows that the";
	mes "poor started to resent the rich.";
	next;
	mes "[Satra]";
	mes "It might be said that";
	mes "both towns have been";
	mes "trying to take advantage";
	mes "of each other, but it's";
	mes "clear that Einbroch has";
	mes "always had the upper hand.";
	next;
	mes "[Satra]";
	mes "In fact, because of";
	mes "this rift between our";
	mes "cities, our families are";
	mes "taught not to associate";
	mes "with the people of Einbech.";
	next;
	mes "[Satra]";
	mes "Now, I believe that most";
	mes "people who live in Einbech";
	mes "are peons, but that does not";
	mes "mean I will not give them a";
	mes "chance to prove their worth.";
	next;
	mes "[Satra]";
	mes "Why should I deprive";
	mes "the lowly of my gracious";
	mes "presence if they prove";
	mes "themselves meritable?";
	mes "Ho ho ho ho~";
	next;
	mes "[Satra]";
	mes "Oh, that was scrumptious!";
	mes "If you wish to pay me another";
	mes "visit, don't forget to bring some";
	mes "Coal with you. Tah tah~";
	set EIN_LOVERQ,11;
	delitem 1003,10;
	close;

s_Coal4:
	mes "[Satra]";
	mes "Ho ho ho ho~";
	mes "Welcome adventurer,";
	mes "I so enjoy our little chats.";
	mes "Hors d'oeuvre?";
	next;
	if(countitem(1003) > 9)goto s_GotCoal4;
	mes "[Satra]";
	mes "Ah...";
	mes "It seems you've";
	mes "forgotten your ^9C0000Coals^000000.";
	mes "A silly mistake, but one";
	mes "I'm willing to overlook.";
	close;

s_GotCoal4:
	mes "[Satra]";
	mes "Oh! You can't enjoy";
	mes "any food in that state!";
	mes "Your hands are atrociously";
	mes "grimy! May I ask why?";
	next;
	mes "[Satra]";
	mes "Ah~";
	mes "In my excitement,";
	mes "I nearly forgot that";
	mes "I asked you to bring";
	mes "Coals to me again!";
	mes "My apologies~";
	next;
	mes "[Satra]";
	mes "You've brought so much Coal";
	mes "to me, I'm convinced that you're";
	mes "much more diligent than those";
	mes "languid peasants in Einbech.";
	mes "I appreciate that you've labored";
	mes "so much to win my favor.";
	next;
	mes "[Satra]";
	mes "Hm, what was that?";
	mes "someone else provided";
	mes "these Coals and you were";
	mes "only delivering them? Then";
	mes "who actually gathered these?";
	next;
	input @str$;
	mes "[Satra]";
	if(@str$ != "Clitzer"){
		mes "I beg your pardon?";
		mes "" + @str$ + "? Oh my...";
		mes "I believe I may have";
		mes "misheard you. Ho ho ho ho~";
		close;
	}
	mes "Ah, Clitzer?";
	mes "I must say, that's";
	mes "a very humble name.";
	mes "Yet it's so familiar...";
	next;
	mes "[Satra]";
	mes "Ah, I recall there";
	mes "was a hooligan that";
	mes "has been pestering my";
	mes "daughter named Clitzer.";
	mes "Perhaps they are one";
	mes "and the same. Hmm...";
	next;
	mes "[Satra]";
	mes "I remember that he was";
	mes "rather shabby looking and";
	mes "lacked any semblance of";
	mes "etiquette whatsoever. Clearly,";
	mes "he is a fool and a coward, but";
	mes "now I see that he is sincere.";
	next;
	mes "[Satra]";
	mes "It might not be possible";
	mes "to let him go otu with my";
	mes "daughter straight away, but";
	mes "I will invite him for a spot of";
	mes "tea. And if Calla likes him,";
	mes "well, he must be special.";
	next;
	mes "[Satra]";
	mes "For a humble peasant,";
	mes "this must be like a dream";
	mes "come true! And to have tea";
	mes "with Clitzer. Oh, what would";
	mes "the girls say? Ah, but I did";
	mes "marry that oafish Megass~";
	next;
	mes "[Satra]";
	mes "Anyway, when you next";
	mes "meet Clitzer, please tell";
	mes "him to pay me a visit soon.";
	mes "Oh, and remind him to dress";
	mes "appropriately for this special";
	mes "occasion. Ho ho ho ho ho~";
	set EIN_LOVERQ,12;
	close;

s_Intimi:
	mes "[Satra]";
	mes "I understand that my";
	mes "home is extravagantly";
	mes "splendid and to approach";
	mes "any Kappelthaine is an";
	mes "honor t most commoners.";
	next;
	mes "[Satra]";
	mes "However, Clitzer";
	mes "has no reason to feel so";
	mes "intimidated. Tell the poor";
	mes "boy that he's earned the";
	mes "honor of speaking with me.";
	close;

}

ein_in01.gat,31,138,4	script	Calla	90,{
	if(EIN_LOVERQ > 4 && EIN_LOVERQ < 14)goto s_NoSwitch;
	if(EIN_LOVERQ > 1)goto s_Switches;
s_NoSwitch:
	mes "[Calla]";
	mes "Hello adventurer.";
	mes "Our city must just be";
	mes "another place where";
	mes "you'll stay no longer";
	mes "than a few days.";
	next;
	mes "[Calla]";
	mes "You must have so much";
	mes "freedom. I envy you. I can't";
	mes "do what I want to do. I don't";
	mes "even have the courage to tell";
	mes "my family what I really want,";
	mes "much less change things here...";
	next;
	mes "[Calla]";
	mes "How is it like?";
	mes "Going wherever you";
	mes "please, following your";
	mes "heart's true desire?";
	mes "What I would give to";
	mes "be able to do that...";
	if(!EIN_LOVERQ)set EIN_LOVERQ,1;
	close;

s_Switches:
	switch(EIN_LOVERQ)
	{

	case 2:
		mes "[Calla]";
		mes "You're the adventurer";
		mes "from before, aren't you?";
		mes "Sadly, there isn't much";
		mes "to do around here. This";
		mes "place is basically like";
		mes "a prison to me...";
		next;
		mes "[Calla]";
		mes "Oh, you've met Clitzer?";
		mes "Isn't he so kind, such";
		mes "a perfect gentleman?";
		next;
		mes "[Calla]";
		mes "I really wish I could";
		mes "see him, but it's almost";
		mes "impossible. My parents think";
		mes "he's not good enough for me,";
		mes "but they're wrong! What am";
		mes "I going to do? Oh, Clitzer...";
		next;
		mes "[Calla]";
		mes "Well, maybe I can't see";
		mes "him, but would you give";
		mes "my violin to Clitzer for me?";
		mes "I used to play this for him";
		mes "all the time...";
		next;
		mes "[Calla]";
		mes "I'm sorry to trouble you,";
		mes "but please understand";
		mes "that I want to comfort my";
		mes "Clitzer in any way that";
		mes "I possibly can. Thank";
		mes "you so much, adventurer...";
		set EIN_LOVERQ,3;
		getitem 1901,1;
		close;
	break;

	case 3:
	s_Regards:
		mes "[Calla]";
		mes "Oh, please send my";
		mes "regards to Clitzer for me.";
		mes "I wish I could comnfort";
		mes "him in person, but this";
		mes "is the best I can do for now.";
		close;
	break;

	case 4:
		if(!countitem(712))goto s_Regards;
		mes "[Calla]";
		mes "You've spoken";
		mes "with Clitzer? How";
		mes "is he? What did he say?";
		next;
		mes "[Calla]";
		mes "Oh...?";
		mes "He asked you to";
		mes "deliver this flower";
		mes "to me? How sweet~";
		mes "Thank you very much,";
		mes "kind adventurer~";
		next;
		mes "[Calla]";
		mes "Ah, I'm so rude!";
		mes "I've been calling you";
		mes "^111111*adventurer*^000000 this whole";
		mes "time you've been helping";
		mes "me! Would you please";
		mes "tell me your name?";
		next;
		input @str$;
		mes "[Calla]";
		if(@str$ != strcharinfo(0)){
			mes "I'm sorry...";
			mes "I didn't catch that.";
			mes "would you please tell";
			mes "me your name again?";
			close;
		}
		mes "Ah, " + strcharinfo(0) + "!";
		mes "Such a lovely name~";
		mes "I promise that I won't ever";
		mes "forget it. Oh, and if you pass by";
		mes "Einbech, would you thank Clitzer";
		mes "for the flower for me please?";
		next;
		mes "[Calla]";
		mes "A-and... And...";
		mes "Please tell him that";
		mes "I really miss him a lot.";
		mes "^565656*Sob Sob...*";
		delitem 712,1;
		set EIN_LOVERQ,5;
		close;
	break;

	case 14:
		mes "[Calla]";
		mes "I just heard from my mother";
		mes "that she's planning to have";
		mes "tea with Clitzer! I'm sure that";
		mes "I have you to thank for this~";
		next;
		mes "[Calla]";
		mes "I never dreamed that";
		mes "something as wonderful";
		mes "as this could happen.";
		mes "I'm so happy, I could cry...";
		mes "I'll always be grateful";
		mes "for what you've done.";
		next;
		mes "[Calla]";
		mes "I feel like such a fool,";
		mes "thinking it was all hopeless.";
		mes "I'll be doing my best to have";
		mes "my parents accept Clitzer and";
		mes "someday we'll be married~";
		next;
		mes "[Calla]";
		mes "There isn't much that I can";
		mes "give you, but I can show you";
		mes "one of my family's secrets.";
		mes "It's an invigorating massage";
		mes "technique that makes you alot";
		mes "healthier in only ten seconds.";
		next;
		mes "[Calla]";
		mes "Well, please take";
		mes "off your equipment";
		mes "and stand still while";
		mes "I give the massage. It";
		mes "might hurt a bit at first...";
		nude;
		next;
		mes "^3151FF*Rub Rub Rub*";
		mes "*Knead Knead Knead*";
		mes "*Crrack C-c-c--c-crack*";
		mes "*Crack Crack Crrrrrack*";
		mes "*Rub Crrraaaaaaaaaackk*^000000";
		next;
		mes "[" + strcharinfo(0) + "]";
		mes "Ooooooooh...";
		mes "I feel sooo";
		mes "sore and yet";
		mes "soooooo good.";
		mes "Wait. Now I just";
		mes "feel goooood~";
		if(BaseLevel < 41)set BaseExp,BaseExp+3712;
		else if(BaseLevel > 40 && BaseLevel < 61)set BaseExp,BaseExp+7425;
		else if(BaseLevel > 60 && BaseLevel < 71)set BaseExp,BaseExp+14850;
		else if(BaseLevel > 70 && BaseLevel < 81)set BaseExp,BaseExp+29700;
		else if(BaseLevel > 80 && BaseLevel < 91)set BaseExp,BaseExp+59400;
		else if(BaseLevel > 90)set BaseExp,BaseExp+118800;
		set EIN_LOVERQ,15;
		next;
		mes "[Calla]";
		mes "So how was it?";
		mes "I hope it was refreshing.";
		mes "Please understand that";
		mes "it's the best thing I can";
		mes "give you to show my gratitude.";
		next;
		mes "[Calla]";
		mes "Once again,";
		mes "thank you so";
		mes "much, " + strcharinfo(0) + ".";
		mes "I'll always pray for";
		mes "your safety on your";
		mes "your adventures~";
		close;
	break;

	case 15:
		mes "[Calla]";
		mes "Thank you so much!";
		mes "I'll try my best to convince";
		mes "my parents to accept our";
		mes "relationship. It'll be hard,";
		mes "but it's a good first step~";
		next;
		mes "[Calla]";
		mes "I hope that we can all";
		mes "work together ti improve";
		mes "relations between Einbech";
		mes "and Einbroch. The hatred";
		mes "between our towns must end...";
		next;
		mes "[Calla]";
		mes "I really appreciate";
		mes "what you've done for";
		mes "all of use. I'll be praying";
		mes "for your safety, adventurer.";
		close;
	break;

	}
}

ein_in01.gat,191,102,4	script	Kaijeta	846,{
	if(EIN_LOVERQ > 13)goto s_Learned;
	if(EIN_LOVERQ == 13)goto s_Clothes;
	if(EIN_LOVERQ > 6 && EIN_LOVERQ < 13)goto s_Hatred;
	if(EIN_LOVERQ == 6)goto s_Helping;
	mes "[Kaijeta]";
	mes "Welcome to my humble";
	mes "abode, adventurer. I'm";
	mes "sorry if I'm a poor host.";
	next;
	mes "[Kaijeta]";
	mes "As you can see, we have";
	mes "to share this house with";
	mes "other families so we don't";
	mes "have much open space or";
	mes "privacy. I'm afraid we can't";
	mes "even affor basic comfort.";
	next;
	mes "[Kaijeta]";
	mes "For now, this is the best";
	mes "we can do. We don't have";
	mes "the zeny to buy a house or";
	mes "land, so we have no choice";
	mes "but to endure through this...";
	close;

s_Helping:
	mes "[Kaijeta]";
	mes "Thank you for helping my";
	mes "son. He may look like a fool";
	mes "for falling in love with someone";
	mes "from Einbroch, but he's an honest";
	mes "hard working man.";
	next;
	mes "[Kaijeta]";
	mes "Then again, it was bound to";
	mes "happen sometime. Einbech is";
	mes "a very poor town while Einbroch";
	mes "is a very rich town. I'd understand";
	mes "if you don't agree, but opposites";
	mes "attract sooner of later.";
	next;
	mes "[Kaijeta]";
	mes "^565656*Sigh...*^000000";
	mes "If my son and Calla can";
	mes "work things out, maybe it";
	mes "would improve relations";
	mes "between our two towns.";
	mes "I certainly hope so...";
	next;
	mes "[Kaijeta]";
	mes "Still, I'm quite baffled!";
	mes "I raised my son to have more";
	mes "guts than to wallow in misery";
	mes "when his heart's broken. And";
	mes "I still have no idea how he got";
	mes "together with such a rich woman.";
	next;
	mes "[Kaijeta]";
	mes "Do you have any idea";
	mes "how we can put an end";
	mes "to the hate between our";
	mes "two towns? I don't want to";
	mes "see this couple separated";
	mes "because of such pettiness.";
	set EIN_LOVERQ,7;
	close;

s_Hatred:
	mes "[Kaijeta]";
	mes "I can't bear to see the";
	mes "petty hatred between our";
	mes "two towns stop my son from";
	mes "seeing the woman he loves...";
	close;

s_Clothes:
	mes "[Kaijeta]";
	mes "Thank you for helping";
	mes "my son Clitzer. Sadly, the";
	mes "little fool doesn't have any";
	mes "clue when it comes to certain";
	mes "things like choosing clothing.";
	mes "he gets so nervous about it!";
	next;
	mes "[Kaijeta]";
	mes "A man should wear nice";
	mes "clothes, like a Formal Suit";
	mes "or a Tuxedo, for important";
	mes "meetings and special occassions.";
	mes "hopefully, he'll learn that soon.";
	close;

s_Learned:
	mes "[Kaijeta]";
	mes "My son learned";
	mes "an awful lot from";
	mes "your good example.";
	mes "As a mother, I really";
	mes "appreciate everything";
	mes "you've done for him.";
	next;
	mes "[Kaijeta]";
	mes "Well, adventurer,";
	mes "I will be praying for";
	mes "your safety wherever";
	mes "your journeys may";
	mes "take you.";
	close;

}

ein_in01.gat,200,101,4	script	Clitzer	854,{
	if(EIN_LOVERQ)goto s_Switches;
s_Back:
	mes "[Clitzer]";
	mes "Is there something";
	mes "that you really want";
	mes "in life, but it's just";
	mes "beyond your grasp?";
	next;
	mes "[Clitzer]";
	mes "I wish I was more";
	mes "like you adventurers.";
	mes "People like you never";
	mes "seem to give up, no matter";
	mes "what the obstacles may be.";
	mes "But I'm so helpless...";
	next;
	mes "[Clitzer]";
	mes "I can't even see";
	mes "the one person that";
	mes "I love. We're just so";
	mes "different that it's not";
	mes "even possible anymore...";
	close;

s_Switches:
	switch(EIN_LOVERQ){
	case 1:
		mes "[Clitzer]";
		mes "That faintly sweet";
		mes "and pleasant scent...";
		mes "It's just like the fragrance";
		mes "they use in Calla's house.";
		next;
		mes "[Clitzer]";
		mes "Ah, so you visited";
		mes "Calla in Einbroch?";
		mes "I miss her sooo much!";
		mes "Is she doing alright?";
		next;
		mes "[Clitzer]";
		mes "Calla's so beautiful.";
		mes "And she's so lovely.";
		mes "Every time I close my";
		mes "eyes, I can still see";
		mes "her lovely smile.";
		next;
		mes "[Clitzer]";
		mes "I'm sorry if I sound";
		mes "silly, but I can't help";
		mes "it. I know I'm acting like";
		mes "a complete idiot. But I'd";
		mes "give anything to see her...";
		next;
		mes "[Clitzer]";
		mes "Just...";
		mes "Just don't listen";
		mes "to anything I say.";
		mes "I'm just a poor fool";
		mes "in love with the wrong";
		mes "person. That has to be it...";
		set EIN_LOVERQ,2;
		close;
		break;

	case 2:
		mes "[Clitzer]";
		mes "^565656*Sigh*^000000";
		mes "I really appreciate your";
		mes "sympathy, but I'm merely";
		mes "a coward and a fool.";
		next;
		mes "[Clitzer]";
		mes "Yeah...";
		mes "I'm a coward for doing";
		mes "nothing about my feelings";
		mes "and an idiot for falling in love";
		mes "with such a high class girl in";
		mes "the first place... Oh, Calla...";
		close;
		break;

	case 3:
		if(!countitem(1901))goto s_Back;
		mes "[Clitzer]";
		mes "What brings you here?";
		mes "aren't you tired of hearing";
		mes "me moan and whine about";
		mes "lost love? ^111111*Siiiiigh...*^000000";
		next;
		mes "[Clitzer]";
		mes "Hey, this violin...";
		mes "Calla used to play";
		mes "such beautiful music";
		mes "on this for me. Did";
		mes "she give this to you?";
		next;
		mes "[Clitzer]";
		mes "I see. Calla must have";
		mes "known that I'm all broken up";
		mes "right now. She's too good to";
		mes "me. How can se consider";
		mes "my feelings before thinking";
		mes "about herself?";
		next;
		mes "[Clitzer]";
		mes "I know I'm being";
		mes "shameless, but I have";
		mes "a favor to ask. Adventurer,";
		mes "would you please send";
		mes "Calla a present for me?";
		next;
		mes "[Clitzer]";
		mes "All you need to do is";
		mes "just give her ^FF00001 Flower^000000.";
		mes "I don't have the zeny and";
		mes "I don't think I'm welcome";
		mes "at Kapellthaine Manor.";
		next;
		mes "[Clitzer]";
		mes "Here, in return, I'll";
		mes "give you this health";
		mes "massage. It's not a";
		mes "big deal, but when I'm";
		mes "done, your mind and body";
		mes "will be refreshed. Here goes!";
		next;
		mes "^3151FF*Knead Knead*";
		mes "*Rub Rub Rub Rub*";
		mes "*Press Press Press*";
		mes "*C-c-c-c-c-c-crakck!*^000000";
		next;
		mes "[" + strcharinfo(0) + "]";
		mes "Oh--";
		mes "Hell yeah!";
		mes "That's the stuff!";
		delitem 1901,1;
		if(BaseLevel < 41)set BaseExp,BaseExp+3712;
		else if(BaseLevel > 40 && BaseLevel < 61)set BaseExp,BaseExp+7425;
		else if(BaseLevel > 60 && BaseLevel < 71)set BaseExp,BaseExp+14850;
		else if(BaseLevel > 70 && BaseLevel < 81)set BaseExp,BaseExp+29700;
		else if(BaseLevel > 80 && BaseLevel < 91)set BaseExp,BaseExp+59400;
		else if(BaseLevel > 90)set BaseExp,BaseExp+118800;
		set EIN_LOVERQ,4;
		next;
		mes "[Clitzer]";
		mes "Would you please bring";
		mes "1 Flower to Calla for me?";
		mes "I'm sorry for troubling you...";
		close;
		break;

	case 4:
		mes "[Clitzer]";
		mes "Would you please bring";
		mes "1 Flower to Calla for me?";
		mes "I'm sorry for troubling you...";
		close;
		break;

	case 5:
		mes "[Clitzer]";
		mes "You've given her";
		mes "the flower? That's";
		mes "great! Thank you,";
		mes "thank you so mu--";
		next;
		mes "[Clitzer]";
		mes "...Oh!";
		mes "Gosh! I was thinking so";
		mes "much about myself that";
		mes "I forgot to ask you for your";
		mes "name! I'm sorry for being";
		mes "so knuckle-headed...";
		next;
		mes "[Clitzer]";
		mes "So...";
		mes "What's your name?";
		next;
		input @str$;
		mes "[Clitzer]";
		if(@str$ != strcharinfo(0)){
			mes "Hm...?";
			mes "Oh, don't be";
			mes "so nervous~";
			mes "But would you please";
			mes "tell me your name again?";
			mes "I couldn't hear you...";
			close;
		}
		mes "" + strcharinfo(0) + "...";
		mes "That's very nice. Thank you,";
		mes "I'm really grateful for your help.";
		mes "Although I can't see Calla in";
		mes "person, I can at least send";
		mes "my regards if you help me.";
		next;
		mes "[Clitzer]";
		mes "I feel so much";
		mes "better now. Oh!";
		mes "When you have the";
		mes "time, why don't you talk";
		mes "to my mother? She always";
		mes "likes meeting my friends.";
		set EIN_LOVERQ,6;
		close;
		break;

	case 6:
	case 7:
	case 8:
	case 9:
	case 10:
	case 11:
		mes "[Clitzer]";
		mes "^111111*Sigh...*^000000";
		mes "What can I do to";
		mes "get Calla's parents";
		mes "to accept me as her";
		mes "boyfriend? I can't";
		mes "think of anything...";
		close;
		break;

	case 12:
		mes "[Clitzer]";
		mes "Eh...?";
		mes "What did you just say?";
		mes "You did something for";
		mes "the Kapellthaines?";
		next;
		mes "[Clitzer]";
		mes "What...?";
		mes "Did you just say";
		mes "that Calla's mother";
		mes "wants me to have tea";
		mes "with her? Holy moley...!";
		next;
		mes "[Clitzer]";
		mes "Okay, okay.";
		mes "I-I I'll need something";
		mes "nice to wear, right? Oh.";
		mes "Wow. This is so sudden!";
		mes "W-what should I do?";
		next;
		mes "[Clitzer]";
		mes "This monkey suit";
		mes "that I've got on just";
		mes "won't do! Arrrgh! But I've";
		mes "already outgrown all of my";
		mes "nice clothes already. Boy,";
		mes "am I in a pickle...";
		set EIN_LOVERQ,13;
		close;
		break;

	case 13:
		if(countitem(2320) || countitem(7170))goto s_Clothes;
		mes "[Clitzer]";
		mes "Noooooo!";
		mes "I've got to find";
		mes "the perfect thing";
		mes "to wear or Calla's";
		mes "mother might ^FF0000hate^000000 me!";
		next;
		mes "[Clitzer]";
		mes "Think, Clitzer, think!";
		mes "Okay, no fun colors.";
		mes "I don't want her to";
		mes "think I'm not serious";
		mes "about Calla. Stripes";
		mes "might be bad too...";
		close;
		break;

	case 14:
	case 15:
		mes "[Clitzer]";
		mes "Look out, world!";
		mes "I'm gonna become";
		mes "worth of Calla's love!";
		mes "Someday, maybe even her";
		mes "parents will approve me!";
		close;
		break;
	}

s_Clothes:
	mes "[Clitzer]";
	mes "Waaah!";
	mes "What should I wear?!";
	mes "I can't for the life of me";
	mes "figure this out! Something,";
	mes "um, formal? I've never worn";
	mes "anything like that before!";
	next;
	if(countitem(7170)){
		set @clothes,7170;
		mes "[Clitzer]";
		mes "Wait, " + strcharinfo(0) + ".";
		mes "What's that you've got";
		mes "there? I've seen something";
		mes "like that before. It's called";
		mes "a Tuxedo, right? Something";
		mes "like that would be perfect!";
		next;
		menu "Give it to him.",s_Giveclothes,"Ignore him.",-;

		mes "[Clitzer]";
		mes "But how can I get";
		mes "a Tuxedo? Ooh, I hope";
		mes "it doesn't cost too much";
		mes "zeny or I won't be able to";
		mes "get one of those soon...";
	} else if(countitem(2320)){
		set @clothes,2320;
		mes "[Clitzer]";
		mes "Wait, " + strcharinfo(0) + ".";
		mes "What's that you've got";
		mes "there? I've seen something";
		mes "like that before. It's called";
		mes "a Formal Suit, right?";
		mes "Something like that would";
		mes "be perfect!";
		next;
		menu "Give it to him.",s_Giveclothes,"Ignore him.",-;

		mes "[Clitzer]";
		mes "But how can I get";
		mes "a Formal Suit? I hope";
		mes "it doesn't cost too much";
		mes "zeny or I won't be able to";
		mes "get one of those soon...";
	}
	close;

s_Giveclothes:
	mes "[Clitzer]";
	mes "I can have this?";
	mes "Oh, thank you so much!";
	mes "Finally, I have something";
	mes "nice enough to wear to meet";
	mes "Calla's mom! What a relief!";
	next;
	mes "[Clitzer]";
	mes "You've been helping me all";
	mes "this time and I haven't properly";
	mes "expressed my gratitude. I'm sorry";
	mes "if I've been to absorbed in my own";
	mes "problems. I may be poor, but I need";
	mes "to repay you somehow...";
	next;
	mes "[Clitzer]";
	mes "Wait...";
	mes "Why don't you have this";
	mes "ore? I don't how";
	mes "valuable it is, but I know";
	mes "that it's pretty rare. It may";
	mes "even be useful to you later~";
	delitem @clothes,1;
	set EIN_LOVERQ,14;
	switch(rand(1,9)){
	case 1:
		getitem 7289,1;
		break;

	case 2:
		getitem 7290,1;
		break;

	case 3:
		getitem 7291,1;
		break;

	case 4:
		getitem 7292,1;
		break;

	case 5:
		getitem 7293,1;
		break;

	case 6:
		getitem 7294,1;
		break;

	case 7:
		getitem 7295,1;
		break;

	case 8:
		getitem 7296,1;
		break;

	case 9:
		getitem 7297,1;
		break;
	}
	next;
	mes "[Clitzer]";
	mes "" + strcharinfo(0) + ",";
	mes "you've really opened";
	mes "my eyes. From now on,";
	mes "I'll do my best to earn the";
	mes "approval of Calla's parents and";
	mes "become worthy of Calla's love.";
	close;

}

//============================================================
//=========================================== Einbroch Polution
//============================================================

einbroch.gat,1,1,0	script	#PolutionNPC	-1,{

OnPolution:
	set @AlrdEinPoll,1;
	donpcevent "Liotzburg::OnHide";
	donpcevent "Morei::OnHide";
	donpcevent "Mark::OnHide";
	donpcevent "Khemko::OnHide";
	donpcevent "Oberu::OnHide";
	donpcevent "Khowropher::OnHide";
	donpcevent "Kesunboss::OnHide";
	donpcevent "Train Station Staff#01::OnHide";
	donpcevent "Train Station Staff#02::OnHide";
	donpcevent "Leslie::OnHide";
	donpcevent "Little Toby::OnHide";
	donpcevent "Tan::OnHide";
	donpcevent "Keneshiotz::OnHide";
	donpcevent "Sleik::OnHide";
	donpcevent "Uwe Kleine::OnHide";
	donpcevent "Laboratory Soldier#01::OnHide";
	donpcevent "Laboratory Soldier#02::OnHide";
	disablenpc "Paddler";
	disablenpc "Head Gear Dealer";

	mapannounce "einbroch.gat","This is a state of emercency! Harmful smog is reaching high levels of saturation. Residents of Einbroch must find shelter immediately.",bc_map;
	monster "einbroch.gat",82,332,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",99,328,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",122,317,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",138,319,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",147,312,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",159,316,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",173,315,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",161,311,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",147,296,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",168,282,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",175,271,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",146,274,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",160,272,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",155,256,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",179,262,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",192,248,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",212,255,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",230,250,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",246,251,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",262,254,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",253,240,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",202,245,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",181,251,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",172,238,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",146,242,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",186,226,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",173,239,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",124,248,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",120,234,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",98,234,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",101,219,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",89,208,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",96,191,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",76,194,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",60,196,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",45,194,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",34,201,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",40,184,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",64,173,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",96,173,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",41,155,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",46,131,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",46,108,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",38,93,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",55,86,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",81,81,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",107,82,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",107,104,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",123,73,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",132,87,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",125,63,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",142,64,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",150,52,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",157,37,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",179,39,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",197,46,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",217,67,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",246,54,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",228,110,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk"; 
	monster "einbroch.gat",250,118,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",273,127,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk"; 
	monster "einbroch.gat",288,138,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk"; 
	monster "einbroch.gat",281,160,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk"; 
	monster "einbroch.gat",281,192,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",291,201,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",283,218,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk"; 
	monster "einbroch.gat",268,216,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk"; 
	monster "einbroch.gat",273,196,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk"; 
	monster "einbroch.gat",262,164,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",241,180,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",216,205,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",209,198,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",224,177,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",227,163,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",208,166,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",132,87,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",149,119,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",119,36,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",84,155,"Toxic Fog",1621,1,"#PolutionNPC::OnMobChk";
	monster "einbroch.gat",82,107,"Red Fog",1620,1,"#PolutionNPC::OnMobChk";
	initnpctimer;
	end;

OnMobChk:
	if(mobcount("einbroch.gat","#PolutionNPC::OnMobChk"))end;

OnTimer600000:
	killmonster "einbroch.gat","#PolutionNPC::OnMobChk";
	mapannounce "einbroch.gat","Emergency status is now cancelled. Air pollution levels are now within the safety zone.",bc_map;
	enablenpc "Liotzburg";
	donpcevent "Liotzburg::OnUnHide";
	enablenpc "Morei";
	donpcevent "Morei::OnUnHide";
	enablenpc "Mark";
	donpcevent "Mark::OnUnHide";
	enablenpc "Khemko";
	donpcevent "Khemko::OnUnHide";
	enablenpc "Oberu";
	donpcevent "Oberu::OnUnHide";
	enablenpc "Khowropher";
	donpcevent "Khowropher::OnUnHide";
	enablenpc "Kesunboss";
	donpcevent "Kesunboss::OnUnHide";
	enablenpc "Train Station Staff#01";
	donpcevent "Train Station Staff#01::OnUnHide";
	enablenpc "Train Station Staff#02";
	donpcevent "Train Station Staff#02::OnUnHide";
	enablenpc "Leslie";
	donpcevent "Leslie::OnUnHide";
	enablenpc "Little Toby";
	donpcevent "Little Toby::OnUnHide";
	enablenpc "Tan";
	donpcevent "Tan::OnUnHide";
	enablenpc "Keneshiotz";
	donpcevent "Keneshiotz::OnUnHide";
	enablenpc "Sleik";
	donpcevent "Sleik::OnUnHide";
	enablenpc "Uwe Kleine";
	donpcevent "Uwe Kleine::OnUnHide";
	enablenpc "Laboratory Soldier#01";
	donpcevent "Laboratory Soldier#01::OnUnHide";
	enablenpc "Laboratory Soldier#02";
	donpcevent "Laboratory Soldier#02::OnUnHide";
	enablenpc "Paddler";
	enablenpc "Head Gear Dealer";
	set $EinPolution,0;
	set @AlrdEinPoll,0;
	end;

}

sec_in02.gat,127,86,3	script	Einbroch Polution	851,{

	if(getgmlevel() > 79){
		mes "[Einbroch Polution Variable Management]";
		mes "$EinPolution is currently: " + $EinPolution + ".";
		mes "What would you like to do?";
		next;
		menu "Reset $EinPolution to 0",s_0,"Input My Own Value",s_Input,"Cancel.",-;
		close;
	s_0:
		mes "[Einbroch Polution Variable Management]";
		mes "$EinPolution has been reset to 0.";
		set $EinPolution,0;
		set @AlrdEinPoll,0;
		close;
	s_Input:
		mes "[Einbroch Polution Variable Management]";
		mes "Insert a number you want $EinPollution";
		mes "to be replaced with. Type '0' to cancel.";
		input @temppol;
		if(@temppol == 0)close;
		set $EinPolution,@temppol;
		mes "[Einbroch Polution Variable Management]";
		mes "$EinPolution has been set to: " + $EinPolution + ".";
		close;
	} else {
		mes "[Einbroch Polution Variable Management]";
		mes "Sorry you don't have authorization";
		mes "to use this NPC.";
		close;
	}
}

//============================================================
//=========================================== Einbroch Factory
//====================================================== Quest

einbroch.gat,132,84,3	script	Liotzburg	853,{

	if($EinPolution > 9){
		mes "[Liotzburg]";
		mes "What's going on?!";
		mes "Who's responsible?!";
		mes "God, I can't believe";
		mes "this is happening!";
		mes "^333333*Cough Cough!*^000000";
		next;
		mes "[Liotzburg]";
		mes "I need to get out of here!";
		mes "You! D-do something and";
		mes "fix this! I gotta hide and find";
		mes "someplace safe!";
		close2;
		if(!@AlrdEinPoll)donpcevent "#PolutionNPC::OnPolution";
		end;
	}
	if(EinFactory >= 13){
		if(EinFactory > 13){
			mes "[Liotzburg]";
			mes "What...?";
			mes "Factory Repair";
			mes "budget? No way!";
			next;
		}
		mes "[Liotzburg]";
		mes "Why waste money?";
		mes "We haven't had any";
		mes "problems so far! Look,";
		mes "everything's fine! Why";
		mes "are you exaggerating";
		mes "such small details?";
		next;
		mes "[Liotzburg]";
		mes "The field overseer,";
		mes "Zelmeto, just came by to";
		mes "ask for a budget increase.";
		mes "Well, I think he's lying!";
		mes "Everything's perfect!";
		if(EinFactory == 13)set EinFactory,14;
		close;
	}
	mes "[Liotzburg]";
	mes "I'm the plant";
	mes "superintendant of this";
	mes "factory. Most of my employees";
	mes "are diligent workers. I can't say";
	mes "that of everyone, but overall we're";
	mes "doing an excellent job. Ha ha ha~!";
	next;
	mes "[Liotzburg]";
	mes "So long as this factory";
	mes "is well maintained, we won't";
	mes "have to worry about this city's";
	mes "safety. The field overseer,";
	mes "Zelmeto, is also very reliable.";
	next;
	mes "[Liotzburg]";
	mes "I can trust Zelmeto";
	mes "to look after things,";
	mes "so there's no need for";
	mes "me to go inside the factory.";
	mes "Delegating work is great!";
	next;
	mes "[Liotzburg]";
	mes "Our factory will";
	mes "continue to develop";
	mes "and everyone will be";
	mes "proud of the progress";
	mes "we're making. Yes, I can";
	mes "assure you of that!";
	close;

OnHide:
	specialeffect 16;
	disablenpc "Liotzburg";
	end;

OnUnhide:
	misceffect 215;
	end;

}

ein_in01.gat,67,243,3	script	Zelmeto	851,{

	if($EinPolution > 9){
		mes "[Zelmeto]";
		mes "We've got a big problem";
		mes "here! I appreciate that you've";
		mes "been gathering the materials,";
		mes "but the machines have been";
		mes "broken for too long!";
		next;
		mes "[Zelmeto]";
		mes "Right when I tried to";
		mes "fix it, a huge shortout";
		mes "occurred. Our town is";
		mes "probably filled with";
		mes "toxic fog right now!";
		next;
		mes "[Zelmeto]";
		mes "I'll try my best to fix";
		mes "this, but we really should";
		mes "have allocated some funds";
		mes "to fix this machine earlier!";
		next;
		mes "[Zelmeto]";
		mes "The most important";
		mes "thing is that you get";
		mes "out of here and find";
		mes "shelter! Right now!";
		close2;
		warp "einbroch.gat",131,83;
		end;
	}

	if(EinFactory > 0)goto s_Switches;
	mes "[Zelmeto]";
	mes "Ah, you must be a visitor.";
	mes "I'm Zelmeto Abellov, the";
	mes "field overseer. Have you";
	mes "been in this facility before?";
	next;
	mes "[Zelmeto]";
	mes "This factory plays an";
	mes "important role in our city";
	mes "and generates a lot of income.";
	mes "However, our employess suffer";
	mes "from a poor work environment.";
	next;
	mes "[Zelmeto]";
	mes "Our superintendant makes a lot";
	mes "of money and seems content with";
	mes "the current situation. However, the";
	mes "rest of the workforce doesn't enjoy";
	mes "all of the benefits he receives.";
	mes "[Zelmeto]";
	mes "Many people have already";
	mes "quit and there are only a few";
	mes "people who continue to work";
	mes "here. So now we're understaffed";
	mes "and I'm in quite a bind...";
	next;
	mes "[Zelmeto]";
	mes "There are some urgent";
	mes "tasks I need done, but";
	mes "there's no way for me";
	mes "to recruit new workers.";
	mes "Ah, I'm sorry, I've spoken too";
	mes "freely about my own problems...";
	next;
	menu "You're understaffed?",s_Underst,"No, it's okay.",-;

	mes "[Zelmeto]";
	mes "Thank you for";
	mes "your kindness.";
	mes "And please don't";
	mes "let anyone know about";
	mes "anything I just told you.";
	close;

s_Underst:
	mes "[Zelmeto]";
	mes "Yes, we are!";
	mes "I don't have enough";
	mes "people to inspect the";
	mes "factory machines and";
	mes "determine what kinds";
	mes "of problems we have.";
	next;
	mes "[Zelmeto]";
	mes "It's a time consuming";
	mes "task I'd rather do on my";
	mes "own. However, between that";
	mes "and managing the workforce,";
	mes "I don't have enough time...";
	next;
	menu "I can help you.",s_Help,"Keep up the good job.",-;

	mes "[Zelmeto]";
	mes "Well, it's a living.";
	mes "^6A6A6A*Sigh*^000000 I can put up with";
	mes "this, but I hope the higher";
	mes "ups will consider improving";
	mes "the work environment here...";
	close;

s_Help:
	mes "[Zelmeto]";
	mes "You can help me?";
	mes "I know something like";
	mes "this is too much to ask,";
	mes "but I'll accept any help";
	mes "anyone offers me. I'm";
	mes "that desperate.";
	next;
	mes "[Zelmeto]";
	mes "Alright, I'll have you";
	mes "inspect the machines";
	mes "in the factory one by one.";
	mes "It's imperative that we know";
	mes "what needs to be repaired";
	mes "and what's working fine";
	next;
	mes "[Zelmeto]";
	mes "First, find the ^FF00002nd control";
	mes "panel^000000 and determine its";
	mes "status. I'm fairly certain that";
	mes "it broke a long time ago, but";
	mes "it wouldn't hur to make sure.";
	mes "You should find it easily.";
	next;
	mes "[Zelmeto]";
	mes "When you finish your";
	mes "inspection, report back";
	mes "to me so I can tell you";
	mes "which machine to check";
	mes "next. Thanks again for";
	mes "offering to help";
	set EinFactory,1;
	close;
s_Switches:
	switch(EinFactory){
	case 1:
		mes "[Zelmeto]";
		mes "If you would,";
		mes "please inspect the";
		mes "2nd control panel that";
		mes "seems to have been";
		mes "broken for a while...";
		close;
		break;

	case 2:
		mes "[Zelmeto]";
		mes "Huh, I see.";
		mes "We must do something";
		mes "about that as soon as";
		mes "we can. Now, let me tell";
		mes "you what to check next.";
		next;
		mes "[Zelmeto]";
		mes "There are 3 automatic";
		mes "pressure governors which";
		mes "hammer the bent iron plates";
		mes "from above to flatten them. It";
		mes "seems that one of them may";
		mes "have some kind of problem.";
		next;
		mes "[Zelmeto]";
		mes "Please inspect the ^FF0000automatic";
		mes "pressure governors^000000. Even if the";
		mes "problem seems small, please";
		mes "report it to me. I know it might";
		mes "seem fine now, but I want to";
		mes "prevent an accident if I can.";
		next;
		mes "[Zelmeto]";
		mes "Thank you";
		mes "in advance,";
		mes "adventurer.";
		set EinFactory,3;
		close;
		break;

	case 3:
		mes "[Zelmeto]";
		mes "You need to inspect";
		mes "an automatic pressure";
		mes "governor. It looks fine,";
		mes "but sometimes it makes";
		mes "strange noises.";
		next;
		mes "[Zelmeto]";
		mes "It probably will";
		mes "be a good idea to";
		mes "check that machine";
		mes "more carefully this";
		mes "time, just in case.";
		next;
		mes "[Zelmeto]";
		mes "Thank you";
		mes "for helping us,";
		mes "adventurer.";
		close;
		break;

	case 4:
		mes "[Zelmeto]";
		mes "What...?";
		mes "This is worse";
		mes "than I expected. But";
		mes "it's good that we know";
		mes "about these problems";
		mes "as soon as possible.";
		next;
		mes "[Zelmeto]";
		mes "Don't you worry,";
		mes "we'll take care of";
		mes "this. In the meantime,";
		mes "I'd like you to inspect";
		mes "the next machine for me.";
		next;
		mes "[Zelmeto]";
		mes "I want you to check";
		mes "a ^FF0000control panel^000000. It's the";
		mes "same kind as the one";
		mes "you just inspected, but";
		mes "bigger in size.";
		next;
		mes "[Zelmeto]";
		mes "It's located in the";
		mes "middle of the factory,";
		mes "so you should be able";
		mes "to find it. It may be in bad";
		mes "condition, even though it's";
		mes "operating fine for now...";
		next;
		mes "[Zelmeto]";
		mes "We need to ensure that";
		mes "it's stable, reliable and";
		mes "doesn't pose a threat to";
		mes "our workforce. Thanks";
		mes "again, adventurer.";
		set EinFactory,5;
		close;
		break;

	case 5:
		mes "[Zelmeto]";
		mes "I'd like you to inspect";
		mes "the control panel. It's";
		mes "fairly large and can be";
		mes "found in the middle of the";
		mes "factory. You shouldn't have";
		mes "too much trouble finding it.";
		close;
		break;

	case 6:
		mes "[Zelmeto]";
		mes "I see...";
		mes "It's most likely that";
		mes "there was a short";
		mes "circuit and most";
		mes "of the internal devices";
		mes "were burnt out...";
		next;
		mes "[Zelmeto]";
		mes "Thanks for checking";
		mes "that out for me. Now,";
		mes "the next machine I need";
		mes "you to inspect is different";
		mes "than the others I've had";
		mes "you examine.";
		next;
		mes "[Zelmeto]";
		mes "It's a mechanical";
		mes "hand that transports";
		mes "small objects. We didn't";
		mes "really give it a name, but";
		mes "you should be able to find it.";
		next;
		mes "[Zelmeto]";
		mes "Recently, it seems";
		mes "that there have been";
		mes "problems in operating";
		mes "that machine. If something's";
		mes "broken, we need to know";
		mes "and fix it right away.";
		next;
		mes "[Zelmeto]";
		mes "Thanks again";
		mes "in advance.";
		set EinFactory,7;
		close;		
		break;

	case 7:
		mes "[Zelmeto]";
		mes "The machine which";
		mes "I want you to inspect";
		mes "this time is a small";
		mes "sized conveyor.";
		next;
		mes "[Zelmeto]";
		mes "Be sure that you";
		mes "inspect the small";
		mes "one, since we also";
		mes "have a large conveyor";
		mes "in the factory as well";
		close;
		break;

	case 8:
		mes "[Zelmeto]";
		mes "Huh?";
		mes "I'm suprised to hear";
		mes "that. ^6A6A6A*Sigh*^000000 There's just";
		mes "too many things that need";
		mes "fixing. This is terrible...";
		next;
		mes "[Zelmeto]";
		mes "Well, let me worry";
		mes "about that for now. Please";
		mes "focus on continuing to inspect";
		mes "some of the other machines.";
		next;
		mes "[Zelmeto]";
		mes "Now, there's a pipe inside";
		mes "this factory that I want you";
		mes "to look at. Many of our pipes";
		mes "aren't in the best condition,";
		mes "but this particular one might";
		mes "be severely damaged.";
		next;
		mes "[Zelmeto]";
		mes "Now, the pipe I want";
		mes "you to inspect is located";
		mes "near those large caultrons";
		mes "of molten metal. You should";
		mes "be able to find it pretty easily";
		next;
		mes "[Zelmeto]";
		mes "Thanks again";
		mes "for your help,";
		mes "adventurer.";
		set EinFactory,9;
		close;
		break;

	case 9:
		mes "[Zelmeto]";
		mes "The pipe I want";
		mes "you to inspect is located";
		mes "near those large caultrons";
		mes "of molten metal. You should";
		mes "be able to find it pretty easily";
		next;
		mes "[Zelmeto]";
		mes "Thanks again";
		mes "for your help,";
		mes "adventurer.";
		close;
		break;

	case 10:
		mes "[Zelmeto]";
		mes "This is";
		mes "worse than";
		mes "I imagined...";
		next;
		mes "[Zelmeto]";
		mes "We've got to start";
		mes "repairs as soon as we";
		mes "can! Hopefully, we can";
		mes "resolve this before";
		mes "any serious problems happen...";
		next;
		mes "[Zelmeto]";
		mes "Alright, the last";
		mes "thing that you need to";
		mes "inspect is a ^FF0000large conveyor^000000.";
		mes "It's similiar to the one you";
		mes "inspected before, but it's";
		mes "bigger and more powerful.";
		next;
		mes "[Zelmeto]";
		mes "We have only one of these";
		mes "machines and it's usually";
		mes "moved around a lot since";
		mes "a lot of people in the factory";
		mes "use it. I really don't know";
		mes "where it could be now.";
		next;
		mes "[Zelmeto]";
		mes "Still I'm sure that";
		mes "it's inside the building,";
		mes "so you should be able to";
		mes "find it. I hope you can inspect";
		mes "that conveyor for me soon.";
		set EinFactory,11;
		close;
		break;

	case 11:
		mes "[Zelmeto]";
		mes "The machine which";
		mes "you are supposed to";
		mes "inspect right now";
		mes "is a large convyore.";
		next;
		mes "[Zelmeto]";
		mes "Remember that we";
		mes "also have a small sized";
		mes "conveyor, so make sure";
		mes "that you examine the";
		mes "larger one, alright?";
		close;
		break;

	case 12:
		mes "[Zelmeto]";
		mes "Well, I figured that both";
		mes "conveyors would have";
		mes "similiar problems. We";
		mes "can fix them at the";
		mes "same time, but it'll";
		mes "be a hassle";
		next;
		mes "[Zelmeto]";
		mes "Thank you so much for";
		mes "your help. Without you,";
		mes "I'm pretty sure we wouldn't";
		mes "know about these problems";
		mes "until it was too late.";
		next;
		mes "[Zelmeto]";
		mes "Now, I've got to make sure";
		mes "we have enough materials";
		mes "to make the repairs so that";
		mes "the machines will be safely";
		mes "functioning again.";
		next;
		mes "[Zelmeto]";
		mes "First, I better";
		mes "hurry and request";
		mes "an increase for the";
		mes "Factory Repair budget";
		mes "from our superintendant.";
		set EinFactory,13;
		close;
		break;

	case 13:
		mes "[Zelmeto]";
		mes "I've got to report this";
		mes "to our superintendant";
		mes "as soon as possible.";
		next;
		mes "[Zelmeto]";
		mes "With any luck, he'll approve";
		mes "a budget increase so that we";
		mes "can get all of the materials";
		mes "needed for the repairs.";
		close;
		break;

	case 14:
		mes "[Zelmeto]";
		mes "...";
		mes "......";
		next;
		mes "[Zelmeto]";
		mes "^6A6A6A*Sigh*^000000";
		mes "My proposal was rejected";
		mes "by our superintendant. But";
		mes "maintainance and repairs";
		mes "are crucial for peak operating";
		mes "efficiency and worker safety!";
		next;
		mes "[Zelmeto]";
		mes "I'm frustrated and worried.";
		mes "Maybe nothing will happen";
		mes "for now, but we've got to";
		mes "safeguard our future by";
		mes "regularly maintaining";
		mes "all of these machines";
		next;
		mes "[Zelmeto]";
		mes "Even possible threats";
		mes "to the safety of our workers";
		mes "can't be ignored. Isn't there";
		mes "something I can do? ^6A6A6A*Sigh*^000000";
		next;
		mes "[Zelmeto]";
		mes "If we can";
		mes "just get";
		mes "20 ^FF0000Flexible Tube^000000,";
		mes "10 ^FF0000Rusty Screw^000000 and";
		mes "10 ^FF0000Used Iron Plate^000000,";
		mes "we could make those repairs.";	
		next;
		mes "[Zelmeto]";
		mes "But without funds, there's";
		mes "no way we can purchase";
		mes "those items. If something";
		mes "happens, who's going to";
		mes "be responsible?";
		set EinFactory,15;
		close;
		break;

	case 15:
		mes "[Zelmeto]";
		if(countitem(7325) < 20 || countitem(7317) < 10 || countitem(7319) < 10){
			mes "We need";
			mes "at least";
			mes "20 ^FF0000Flexible Tube^000000,";
			mes "10 ^FF0000Rusty Screw^000000 and";
			mes "10 ^FF0000Used Iron Plate^000000,";
			mes "to repair this factory.";
			next;
			mes "[Zelmeto]";
			mes "^6A6A6A*Sigh*^000000";
			mes "But there's no way";
			mes "we can get all of those";
			mes "things. Our budget isn't";
			mes "big enough to cover it.";
			close;
		}
		mes "Ah, it's you again.";
		mes "It's shameful letting";
		mes "other people know about";
		mes "our miserable situation...";
		next;
		mes "[Zelmeto]";
		mes "There's nothing";
		mes "worth seeing here,";
		mes "so there really isn't";
		mes "a point in you coming to";
		mes "visit this place anymore.";
		next;
		menu "Give him the materials.",s_Give,"Huh.",-;

		mes "[Zelmeto]";
		mes "^6A6A6A*Sigh*^000000";
		mes "I'm really worried";
		mes "about this factory's";
		mes "future. What is our";
		mes "superintendant thinking...?";
		close;

	s_Give:	
		mes "[Zelmeto]";
		mes "...Hm?";
		mes "Aren't these the";
		mes "materials we need";
		mes "to make repairs in";
		mes "the factory? How did";
		mes "you find all of these?";
		next;
		if(countitem(7325) < 20 || countitem(7317) < 10 || countitem(7319) < 10)close;
		delitem 7325,20;
		delitem 7317,10;
		delitem 7319,10;
		set EinFactory,16;
		set $EinPolution,$EinPolution+1;
		if(BaseLevel < 41) set BaseExp,BaseExp+615;
		else if(BaseLevel >= 41 && BaseLevel < 51) set BaseExp,BaseExp+3075;
		else if(BaseLevel >= 51 && BaseLevel < 61) set BaseExp,BaseExp+6604;
		else if(BaseLevel >= 61 && BaseLevel < 71) set BaseExp,BaseExp+18508;
		else if(BaseLevel >= 71 && BaseLevel < 81) set BaseExp,BaseExp+32062;
		else if(BaseLevel >= 81 && BaseLevel < 91) set BaseExp,BaseExp+76026;
		else if(BaseLevel >= 91) set BaseExp,BaseExp+290675;
		mes "[Zelmeto]";
		mes "I don't know how";
		mes "I can possible pay you";
		mes "back for this great favor.";
		mes "I appreciate that you've";
		mes "stepped forward to help us.";
		next;
		mes "[Zelmeto]";
		mes "Oh...!";
		mes "In my years of managing,";
		mes "I've learned the ultimate";
		mes "motivation techniques. Let";
		mes "me enhance your motivation";
		mes "to show you my gratitude.";
		next;
		mes "[Zelmeto]";
		mes "Now...";
		mes "Just open your mind";
		mes "and listen to my words";
		mes "of encouragement";
		mes "and inspiration...";
		next;
		mes "[Zelmeto]";
		mes "^3131FFWhen the going";
		mes "gets rough, you've";
		mes "gotta get rougher!";
		mes "You gotta climb that";
		mes "mountain 'cause no one's";
		mes "gonna climb it for you!";
		next;
		mes "[Zelmeto]";
		mes "^3131FFDon't give it up!";
		mes "Go for broke!";
		mes "Losers are quitters";
		mes "and quitters are losers!";
		next;
		mes "[Zelmeto]";
		mes "^6A6A6A*Whew*";
		mes "^000000I haven't given that much";
		mes "inspiration in a while, but";
		mes "your help was well worth it.";
		mes "I'm going to start  the repairs, but";
		mes "once again I'd like to thank you.";
		close;
		break;

	case 16:
		mes "[Zelmeto]";
		mes "We'll be putting good";
		mes "use to the materials you";
		mes "gave me. With your help,";
		mes "our factory will operate";
		mes "safely. At least, for just";
		mes "a little while longer.";
		close;
	}	
}

ein_in01.gat,50,232,4	script	2nd Control Panel	111,{

	if(EinFactory == 1){
		mes "^3131FFIt's the 2nd control panel";
		mes "Zelmeto asked you to inspect.";
		mes "it looks totally broken: screws";
		mes "are missing, and the iron cover";
		mes "has been bent open, revealing";
		mes "a tangled mess of wires inside.";
		set EinFactory,2;
		close;
	}
	end;
}

ein_in01.gat,108,217,4	script	3rd Pressure Governor	111,{

	if(EinFactory == 3){
		mes "^3131FFAt first glance, this";
		mes "pressure governor looks";
		mes "perfectly fine. But after you";
		mes "check it more carefully, you";
		mes "find that it's making strange";
		mes "grinding noises and a few of";
		mes "the surface screws are loose.";
		set EinFactory,4;
		close;
	}
	end;
}

ein_in01.gat,61,259,4	script	Main Control Panel	111,{

	if(EinFactory == 5){
		mes "^3131FFThe main control panel";
		mes "doesn't look like it has";
		mes "any problems. But after";
		mes "tapping on its surface,";
		mes "you hear a disheartening";
		mes "hollow sound. It looks like";
		mes "it's missing some parts...";
		set EinFactory,6;
		close;
	}
	end;
}

ein_in01.gat,47,197,4	script	Conveyor#01	111,{

	if(EinFactory == 7){
		mes "^3131FFThe conveyor's movements";
		mes "look jittery and clumsy. The";
		mes "mechanical arm also doesn't";
		mes "look powerful enough to bear";
		mes "the loads that it's carrying. The";
		mes "screws in the conveyor look";
		mes "loose and rusted over.";
		set EinFactory,8;
		close;
	}
	end;
}

ein_in01.gat,100,267,4	script	Pipe	111,{

	if(EinFactory == 9){
		mes "^3131FFThe inspection of this";
		mes "pipe didn't take very long.";
		mes "It's bloated and worn out";
		mes "from long durations of";
		mes "being overloaded with";
		mes "pressure. It's a wonder";
		mes "it hasn't exploded yet.";
		set EinFactory,10;
		close;
	}
	end;
}

ein_in01.gat,95,238,4	script	Conveyor#02	111,{

	if(EinFactory == 11){
		mes "^3131FFThis conveyor seems";
		mes "to have similiar problems";
		mes "as its smaller version. Its";
		mes "movements are awkward,";
		mes "erratic and weak, and almost";
		mes "all of its screws are rusted.";
		set EinFactory,12;
		close;
	}
	end;
}
//============================================================
//=============================================== Einbroch Uwe
//====================================================== Quest
einbroch.gat,215,180,5	script	Uwe Kleine	85,{

	if(EinUwe == 2)goto s_Cont2;
	if(EinUwe == 1)goto s_Cont;
	mes "[Uwe]";
	mes "Cooking is such a joy~!";
	mes "The scents, the flavors, the";
	mes "sensation of sheer ^EFAEBDsatiation^000000...";
	next;
	menu "Um, isn't this a forge?",s_Forge,"Ignore him.",-;

	mes "[Uwe]";
	mes "Cooking begins with";
	mes "fire and ends with fire.";
	mes "There's a certain art to";
	mes "creating fine, delicious";
	mes "foods to delight the palate~";
	close;

s_Forge:
	mes "[Uwe]";
	mes "Is this a forge?";
	mes "Oh, sugar honey,";
	mes "you haven't been here";
	mes "before, haven't you?";
	next;
	mes "[Uwe]";
	mes "My name is Uwe Kleine";
	mes "and this is my forge~! I am";
	mes "the most elegant Blacksmith";
	mes "and the best chef here in the";
	mes "Schwartzwald Republic~";
	next;
	mes "[Uwe]";
	mes "So, how can";
	if(Sex){
		mes "I help you, you";
		mes "adoooooooooorable";
		mes "hunk of a man?";
	}else{
		mes "I help you?";
	}
	next;
	menu "Talk about Einbroch",s_Ein,"Ask him to forge a Weapon.",s_Weap,"Master, I want to learn cooking.",s_Cook,"Cancel.",-;

	mes "[Uwe]";
	mes "Take care,";
	mes "sugar honey~";
	mes "Ho ho ho!";
	close;

s_Ein:
	mes "[Uwe]";
	mes "Einbroch was originally";
	mes "build to support Einbech's";
	mes "mining efforts. Because it's";
	mes "small and crowded with people,";
	mes "there's no room to build the ore";
	mes "refining factories over there.";
	next;
	mes "[Uwe]";
	mes "Sine Einbroch used to be";
	mes "an empty lot, it was perfect";
	mes "for building factories. That's";
	mes "what my grandfather told me a";
	mes "long time ago. Anyway, Einbroch";
	mes "quickly grew into a major city.";
	next;
	mes "[Uwe]";
	mes "Now people think that this";
	mes "city was never planned to be";
	mes "just an extension of Einbech.";
	mes "See that rampart over there?";
	mes "It doesn't connection to Einbech";
	mes "at all! No protection for them...";
	next;
	mes "[Uwe]";
	mes "It's like the government";
	mes "lost all interest in Einbech.";
	mes "Even the miners there have";
	mes "been moving here to work in";
	mes "the factories. But more people";
	mes "hasn't made this city more lively.";
	next;
	mes "[Uwe]";
	mes "Einbroch may look modern";
	mes "and exciting now, but soon";
	mes "you'll see that there's no sign";
	mes "of warmth or life. So... Just";
	mes "don't live here in your old age.";
	next;
	menu "Then why are you here?",s_WhyHere,"I won't. Thanks for the advice.",-;

	mes "[Uwe]";
	mes "Oh, that is such";
	mes "a good decision,";
	mes "sugar honey! Oh, you";
	mes "cutie adventurers are";
	mes "so precious, so lovable.";
	mes "^111111*Tee hee hee~*^000000";
	next;
	mes "[Uwe]";
	mes "Well, that was";
	mes "a fun talk. Come";
	mes "back and visit, 'kay?";
	mes "I'll miss you until";
	mes "the next time~";
	close;

s_WhyHere:
	mes "[Uwe]";
	mes "Well, I have some";
	mes "precious memories of";
	mes "this place. Once, there was";
	mes "a man who lived here who";
	mes "was just like a father to me.";
	next;
	mes "[Uwe]";
	mes "Oh, but I'm sure that";
	mes "you don't want to hear";
	mes "about that. Next time you";
	mes "drop by, we'll talk about";
	mes "something more fun, 'kay?";
	mes "Buhbye for now, cutie~";
	close;

s_Weap:
	mes "[Uwe]";
	mes "Well...";
	mes "I actually just";
	mes "do smithing work";
	mes "to create my own";
	mes "cooking tools.";
	next;
	mes "[Uwe]";
	mes "Oh, I understand";
	mes "that somebody needs";
	mes "to fight the monsters,";
	mes "but I'm the wrong person";
	mes "to ask for forging weapons.";
	mes "I... am a strict pacifist~";
	next;
	mes "[Uwe]";
	mes "Just go look";
	mes "around for a little";
	mes "bit, I'm sure you'll";
	mes "find a Blacksmith";
	mes "who's willing to forge";
	mes "you a good weapon~";
	close;

s_Cook:
	mes "[Uwe]";
	mes "Mm...?";
	mes "Did you just";
	mes "say that you";
	mes "want to learn";
	mes "the art of cooking?";
	next;
	mes "[Uwe]";
	mes "I'm sorry, but I can't";
	mes "really give culinary";
	mes "lessons. But I will";
	mes "give good advice for";
	mes "hopeful beginners.";
	next;
	mes "[Uwe]";
	mes "Now...";
	mes "For your tuiton";
	mes "I'll need-- Gosh,";
	mes "there's just so many";
	mes "things. Get some paper,";
	mes "and a pen for this list...";
	next;
	mes "[Uwe]";
	mes "Just kidding!";
	mes "^111111*Titter~* ^000000I don't need";
	mes "much to make some";
	mes "cooking utensils. Bring";
	mes "6 ^0000FFLarge Jellopies^000000. That's it!";
	next;
	mes "[Uwe]";
	mes "In return, I will give you";
	mes "1 Coal and some useful";
	mes "cooking advice for novices.";
	mes "I give this advice for free to";
	mes "my smithing colleages, though.";
	next;
	mes "[Uwe]";
	mes "Why ^EFAEBDdon't^000000 you";
	mes "become a Blacksmith?";
	mes "I'm much more confident";
	mes "in that field. ^111111*Tee hee~*^000000";
	next;
	mes "[Uwe]";
	mes "Well, I'll be";
	mes "waiting right";
	mes "here until you";
	mes "come back.";
	mes "^111111...*Tee hee~*";
	set EinUwe,1;
	close;

s_Cont:
	mes "[Uwe]";
	mes "Oh hello hello~";
	mes "It's been a long";
	mes "time since we've talked,";
	mes "you cutie adventurer~";
	next;
	mes "[Uwe]";
	mes "So, sugar honey,";
	mes "how is it going with";
	mes "the little favor I asked";
	mes "you about last time?";
	mes "Did you already forget";
	mes "the 6 Large Jellopies?";
	next;
	menu "Talk about Einbroch",s_Ein,"Ask him to forge a Weapon.",s_Weap,"Give him the Materials.",s_Material,"Cancel.",-;

s_Material:
	mes "[Uwe]";
	if(countitem(7126) < 6){
		mes "Huh...?";
		mes "You brought";
		if(countitem(7126))
			mes "only " + countitem(7126) + " of them?";
		else
			mes "none at all...?";
		mes "Next time, be sure";
		mes "to bring 6 Large Jellopies,";
		mes "okay? Don't forget, cutie~";
		close;
	}
	delitem 7126,6;
	getitem 1003,1;
	set EinUwe,2;
	mes "Thank you ^EFAEBDso^000000 much!";
	mes "Here's the Coal I promised~";
	next;
	mes "[Uwe]";
	mes "Now, I can't teach you everything";
	mes "about cooking, but I will give you";
	mes "some good advice for beginners.";
	mes "I hope you pay attnetion, sugar";
	mes "honey. Now what would you like";
	mes "to hear more about? Hmm...?";
	next;
s_Menu3:
	menu "Heart",s_Heart,"Ingredients",s_Ingredients,"Skills",s_Skills,"Tools",s_Tools,"Cancel.",-;

	mes "[Uwe]";
	mes "Take care,";
	mes "sugar honey~";
	mes "Ho ho ho!";
	close;

s_Heart:
	mes "[Uwe]";
	mes "Ah, heart. Just like forging,";
	mes "you need passion and desire";
	mes "to create something special.";
	mes "Every smith and cook knows that";
	mes "you can do anything if you have";
	mes "the will and the commitments.";
	next;
	mes "[Uwe]";
	mes "Well, that's all";
	mes "I really have to";
	mes "say about that. But";
	mes "come back and chat";
	mes "whenever you please.";
	mes "...Behbie~";
	close;

s_Ingredients:
	mes "[Uwe]";
	mes "Now, for beginners,";
	mes "learning to select";
	mes "and use ingredients";
	mes "is one of the most";
	mes "important fundamentals.";
	next;
	mes "[Uwe]";
	mes "Cooking is like forging";
	mes "since specific ingredients";
	mes "are needed to make specialty";
	mes "items or dishes. You can't just";
	mes "skip them if you really need";
	mes "them, right? Right!";
	next;
	mes "[Uwe]";
	mes "Once you make up your";
	mes "mind to do something,";
	mes "focus on finishing it, 'kay?";
	mes "Never cut corners and always";
	mes "dedicate yourself to make the";
	mes "very best finished product~";
	next;
	mes "[Uwe]";
	mes "Well, that was";
	mes "a fun talk. Come";
	mes "back and visit, 'kay?";
	mes "I'll miss you until";
	mes "the next time~";
	mes "...Ho ho~";
	close;

s_Skills:
	mes "[Uwe]";
	mes "When you're beginning to learn";
	mes "skills, you can't let yourself be";
	mes "discouraged! Practice makes";
	mes "perfect, you know? But never";
	mes "use your lack of skills as an";
	mes "excuse if you happen to fail...";
	next;
	mes "[Uwe]";
	mes "Effort is also an essential";
	mes "in forging and cooking! Now,";
	mes "on the oher hand, if you put";
	mes "in all the effort but didn't learn";
	mes "any of the skills, you'll still get";
	mes "nowhere fast, right? Right!";
	next;
	mes "[Uwe]";
	mes "The key is to always";
	mes "give 100% effort and work";
	mes "on improving your skills.";
	mes "Before you know it, you'll";
	mes "be a respected master!";
	next;
	mes "[Uwe]";
	mes "Well, that was";
	mes "a fun talk. Come";
	mes "back and visit, 'kay?";
	mes "I'll miss you until";
	mes "the next time~";
	mes "...Ho ho~";
	close;

s_Tools:
	mes "[Uwe]";
	mes "Cooking is a little";
	mes "easier if you have";
	mes "nicer tools to use,";
	mes "but that's it. Tools by";
	mes "themselves can't make";
	mes "just anybody a master.";
	next;
	mes "[Uwe]";
	mes "In the end, the best";
	mes "tools are the ones you're";
	mes "most comfortable with using.";
	mes "In fact, I still use the old knife";
	mes "I used back when I was just";
	mes "a little novice chef~";
	next;
	mes "[Uwe]";
	mes "Well, that was";
	mes "a fun talk. Come";
	mes "back and visit, 'kay?";
	mes "I'll miss you until";
	mes "the next time~";
	mes "...Ho ho~";
	close; 

s_Cont2:
	mes "[Uwe]";
	mes "Ah, hello again,";
	mes "cutie adventurer.";
	mes "How can I help you?";
	next;
	menu "Talk about Einbroch",s_Ein,"Ask him to forge a Weapon.",s_Weap,"Talk about Cooking.",s_Cooking,"Cancel.",-;	

	mes "[Uwe]";
	mes "Take care,";
	mes "sugar honey~";
	mes "Ho ho ho!";
	close;

s_Cooking:
	mes "[Uwe]";
	mes "Ooh, cooking!";
	mes "So what did you";
	mes "want to ask me...?";
	next;
	goto s_Menu3;

OnHide:
	specialeffect 16;
	disablenpc "Uwe Kleine";
	end;

OnUnhide:
	misceffect 215;
	end;

}