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

geffen,132,38,3	script	Bard#2	1_M_BARD,{
	if (BARD_Q > 5) gef_bard_q = BARD_Q;
	@name$ = strcharinfo(PC_NAME);
	if (gef_bard_q > 29) {
		cutin "bard_eland02",2;
		mes "[Errende]";
		mes "Why, hello there~";
		mes "Isn't the weather";
		mes "especially pleasant today?";
		next;
		mes "[Errende]";
		mes "Ah~ There are only two things that can make this picturesque moment even more beautiful: story and song. Now then, which would you like to hear?";
		callsub S_StorySong,1;

	} else if (gef_bard_q == 14 || gef_bard_q == 15) {
		if (gef_bard_q == 14) {
			cutin "bard_eland04",2;
			mes "[Errende]";
			mes "Hmmm?";
			mes "Is that the seal of black...? Huh. Kino Kitty removed the one he gave me without a trace, so I surmise that he likes you a lot. Otherwise...";
			next;
			mes "^3355FFYou give Errende the letter";
			mes "you have received from Kino Kitty.^000000";
			next;
			cutin "bard_eland01",2;
			mes "[Errende]";
			mes "Er, he knows everything already? From this spot of blood, I think he still has health problems. He should stop torturing himself...";
			next;
			mes "[Errende]";
			mes "Thank you, I really appreciate what you've done for me. But, what would be an appropriate way to express my gratitude for an adventurer like yourself?";
		} else {
			cutin "bard_eland01",2;
			mes "[Errende]";
			mes "Ah, so how did it go?";
			mes "Wait, you already found it?";
			mes "Yes, this is it! Great!";
			mes "This is so amazing!!";
			mes "Ah, yes, right.";
			mes "Right.";
			next;
			mes "[Errende]";
			mes "I would like to express my gratitute. But, what would be appropriate for an adventurer";
			mes "like yourself?";
		}
		next;
		mes "[Errende]";
		mes "Oh~! I have just the thing. Alright, please make yourself comfortable, and listen to my song.";
		next;
		cutin "bard_eland03",2;
		mes "^483D8BEvery god never grows old";
		mes "Because of beautiful";
		mes "Goddess, Idun.";
		mes "Keeper of the apples of youth";
		mes "Goddess of immortality.^000000";
		specialeffect(EF_STEAL, AREA, playerattached());
		next;
		mes "^483D8BEvery god never grows old.";
		mes "Idun, the wife of Bragi,";
		mes "Idun, Odin's daughter in law~";
		mes "The apples she keeps";
		mes "In her basket.^000000";
		next;
		mes "^483D8BWithout Idun,";
		mes "Every god would";
		mes "have succumbed to age.";
		mes "Even Thor, the strongest of gods,";
		mes "would grow frail, Megingjard would";
		mes "slip from his waist, and Mjolnir";
		mes "would never fly again.^000000";
		next;
		mes "^483D8BWithout Idun,";
		mes "Every god would";
		mes "have succumbed to age.";
		mes "Loki was careless once,";
		mes "and made her lost to the gods.";
		mes "He was forced to get her back.^000000";
		specialeffect(EF_STEAL, AREA, playerattached());
		next;
		mes "^483D8BMy goddess stands";
		mes "In the field of Asgard";
		mes "She hands me fruit from heaven.";
		mes "You will be loved by every god...";
		mes "You will be blessed";
		mes "By every god...^000000";
		next;
		specialeffect EF_BEGINSPELL6;
		mes "^483D8BIf you share the";
		mes "Apple of youth with me";
		mes "Even a bite of it with";
		mes "This poor poet.";
		mes "You will be loved by every god...";
		mes "You will be blessed";
		mes "By every god...^000000";
		next;
		specialeffect(EF_RESURRECTION, AREA, playerattached());
		mes "^3355FFWhile listening to his song, you feel at ease, and your thoughts become clearer. You believe that you see the vision of an angel, and you gain some experience points.^000000";
		gef_bard_q += 16; //30,31
		if (RENEWAL_EXP) {
			if (BaseLevel < 56) getexp 450,0;
			else if ((BaseLevel > 55) && (BaseLevel < 61)) getexp 550,0;
			else if ((BaseLevel > 60) && (BaseLevel < 66)) getexp 968,0;
			else if ((BaseLevel > 65) && (BaseLevel < 71)) getexp 1341,0;
			else if ((BaseLevel > 70) && (BaseLevel < 76)) getexp 3575,0;
			else if ((BaseLevel > 75) && (BaseLevel < 81)) getexp 6024,0;
			else if ((BaseLevel > 80) && (BaseLevel < 86)) getexp 7034,0;
			else if ((BaseLevel > 85) && (BaseLevel < 91)) getexp 9205,0;
			else getexp 15678,0;
		} else {
			if (BaseLevel < 56) getexp 4500,0;
			else if ((BaseLevel > 55) && (BaseLevel < 61)) getexp 5500,0;
			else if ((BaseLevel > 60) && (BaseLevel < 66)) getexp 9684,0;
			else if ((BaseLevel > 65) && (BaseLevel < 71)) getexp 13411,0;
			else if ((BaseLevel > 70) && (BaseLevel < 76)) getexp 35757,0;
			else if ((BaseLevel > 75) && (BaseLevel < 81)) getexp 60246,0;
			else if ((BaseLevel > 80) && (BaseLevel < 86)) getexp 70340,0;
			else if ((BaseLevel > 85) && (BaseLevel < 91)) getexp 92052,0;
			else getexp 156786,0;
		}
		next;
		cutin "bard_eland02",2;
		mes "[Errende]";
		mes "So, how do you feel now? I hope my song has refreshed you. I'm afraid it may not be enough to repay you, but please understand that this is the best way for me to express my gratitude.";
		next;
		mes "[Errende]";
		mes "Besides, I've been thinking of you now as my friend, with whom I may candidly speak without any worry. And I think you have a beautiful smile. Am I wrong~? Hahaha~";
		next;
		mes "[Errende]";
		mes "I hope that you'll always remain honest and respectful towards other people, and that you continue to ignore greed for fortune or power.";
		callsub L_End;

	} else if (gef_bard_q > 11 && gef_bard_q < 14) {
		cutin "bard_eland02",2;
		mes "[Errende]";
		mes "It seems you haven't found it yet. Well, take your time, I can wait as long as you want. It doesn't really bore me, since waiting seems to be a part of my profession.";
		callsub L_End;

	} else if (gef_bard_q == 11) {
		cutin "bard_eland01",2;
		mes "[Errende]";
		mes "Mr. Skezti has a small book store on the book street at the right side of Mineta in Juno. If you show him the seal, he'll help you out.";
		callsub L_End;

	} else if (gef_bard_q == 10) {
		cutin "bard_eland01",2;
		mes "[Errende]";
		mes "So, have you met Mr. Kitty?";
		mes "Ah, in Morroc? He has a chronic disease, but obviously doesn't";
		mes "seem to care about it.";
		mes "So what did he say?";
		next;
		mes "[Errende]";
		mes "Hm? In Juno?";
		mes "Then that must be it.";
		mes "It won't be easy if you want to go visit Mr. Sketzi's book store. Here, let me mark you with";
		mes "^483D8BThe Seal of Friendship^000000.";
		next;
		cutin "bard_eland03",2;
		mes "[Errende]";
		mes "Give me your left hand.";
		mes "Now, let me cast a spell...";
		mes "*Mumble mumble...*";
		next;
		specialeffect(EF_CONE, AREA, playerattached());
		mes "^3355FFOn your left wrist, a crescent shaped mark glowing with a silver light appeared. It's only noticeable when you concentrate on finding it, but it might clearly appear under the moonlight.^000000";
		next;
		mes "[Errende]";
		mes "There you go. Now, you may go to Mr. Sketzi. Remember, you must";
		mes "show him the Seal of Friendship.";
		mes "Good luck, now~";
		gef_bard_q = 11;
		callsub L_End;

	} else if (gef_bard_q == 20) {
		cutin "bard_eland03",2;
		mes "[Bard]";
		mes "^483D8BWhat day is";
		mes "best for drinking?";
		mes "La la la~";
		mes "It's the day of";
		mes "the earth, the sun";
		mes "And the moon~";
		mes "La la la~^000000";
		next;
		mes "^483D8BLa la la~";
		mes "I'll only";
		mes "drink on one day~";
		mes "So if you'll tell me";
		mes "when you'll drink";
		mes "I'll tell you when";
		mes "I'll drink with you~^000000";
		next;
		mes "^483D8BLet's get together";
		mes "Yea yea ye-^000000 Hmmmmm...?";
		next;
		mes "[Bard]";
		mes "Why, hello there. Oh, have you come to listen to my song and forget your worries?";
		next;

		if(select("Who are you?", "Ignore him.")==1) {
			cutin "bard_eland04",2;
			mes "[" + @name$ + "]";
			mes "You seem to be";
			mes "new around here...";
			mes "Who are you?";
			next;
			cutin "bard_eland02",2;
			mes "[Errende]";
			mes "Mm? Ah yes. I am merely another wandering poet who goes where the wind takes him. Please call me ^483D8BErrende^000000, the Bard who wishes to please you.";
			next;
			mes "[Errende]";
			mes "If you will let me, I will tell you of my travels. By your leave,";
			mes "I will play a song that will help you forget your troubles.";
			gef_bard_q = 21;
			callsub S_StorySong,2;

		} else {
			cutin "bard_eland01",2;
			mes "[Errende]";
			mes "Waaah, wah~";
			mes "You can't just ignore me like that! Where's your sense of merriment, your sense of romance?";
			callsub L_End;
		}

	} else if (gef_bard_q == 27) {
		cutin "bard_eland01",2;
		mes "[Errende]";
		mes "How could I forget the song?";
		mes "I'm worthless as a Bard~!";
		mes "Please... Just...";
		mes "Please just leave";
		mes "me alone.";
		next;

		if(select("No problem~", "Is there any way I can help you?")==1) {
			cutin "bard_eland04",2;
			mes "[Errende]";
			mes "Waaaah~! You're so mean!";
			mes "You're supposed to say, 'Errende, what's wrong? Maybe I can help?'";
			next;
			mes "[Errende]";
			mes "I mean, we're supposed";
			mes "to know each other better";
			mes "than that. But...";
			mes "Maybe I was wrong!";
			next;
			mes "[Errende]";
			mes "*Sob...*";
			mes "Who made this poor Bard cry by neglecting him? *Sniff* I do believe it was you!";
		} else {
			mes "[Errende]";
			mes "Help me?";
			mes "Hmmm...";
			mes "That's it!";
			mes "Gunther!";
			next;
			mes "[Errende]";
			mes "Let me ask you a favor.";
			mes "If perchance you happen to meet ^483D8BGunther Doubleharmony^000000, please inform him of my dilemma.";
			next;
			mes "[Errende]";
			mes "Tell him that ^483D8BMinty Errende^000000 happened to forget a line of the song, ^483D8BAt One, I Fall in Love^000000. The line is called ^483D8B8th love^000000.";
			next;
			mes "[Errende]";
			mes "I beseech you, if you meet him, please ask him of the 8th love and inform me of that lyric immediately~";
			gef_bard_q = 22;
		}
		callsub L_End;

	} else if (gef_bard_q == 26) {
		cutin "bard_eland01",2;
		mes "[Errende]";
		mes "Argh...!";
		mes "Who changed the words of this song anyway? It's really difficult to understand. I wish I could ask the person who changed the words.";
		next;
		mes "[Errende]";
		mes "This is so frustrating!";
		mes "Now, I've lost the passion";
		mes "to sing or play...";
		next;
		mes "[" + @name$ + "]";
		mes "Don't you think...";
		mes "The person would be...";
		input .@inputstr$;
		mes .@inputstr$ + "?";
		next;

		if (.@inputstr$ == "Kino Kitty") {
			cutin "bard_eland04",2;
			mes "[Errende]";
			mes "Ah! Of course!";
			mes "I think you're right!";
			mes "How could I not think of that?";
			next;
			mes "[Errende]";
			mes "It all makes sense now. After all, he used to be a member of the Invincible Single Army. His changes might have been a little mean, since this song used to be about a happy couple...";
			next;
			cutin "bard_eland01",2;
			mes "[Errende]";
			mes "Ummm...";
			mes "I'm sorry to ask a favor of you again, but in your travels, do you think you could find the original lyrics for this song? I can wait for it...";
			next;

			if(select("No, thanks.", "I can, so stop crying.")==1) {
				mes "[Errende]";
				mes "Ah, I guess it was too much to ask of you. My apologies. Don't worry about it, I'll find out some other way.";
				gef_bard_q = 25;

			} else {
				mes "[Errende]";
				mes "Are you serious?";
				mes "Oh, thank you so much!";
				mes "You must be an angel!";
				mes "An angel that truly understands the heart of a poet!";
				next;
				mes "[Errende]";
				mes "I'll pay you back somehow!";
				mes "Thank you for your trouble";
				mes "in advance~";
				gef_bard_q = 24;
			}
			callsub L_End;

		} else if (.@inputstr$ == "Gunther") {
			mes "[Errende]";
			mes "Gunther? I don't think he would do this. He always puts lines in his songs like 'doubleharmony for you.' Plus, he's too silly for that.";
			callsub L_End;

		} else if (.@inputstr$ == "Gunther Doubleharmony") {
			mes "[Errende]";
			mes "Gunther? I don't think he would do this. He always puts lines in his songs like 'doubleharmony for you.' Plus, he's too silly for that.";
			callsub L_End;

		} else if (.@inputstr$ == "Errende") {
			cutin "bard_eland04",2;
			mes "[Errende]";
			mes "Surely you jest!";
			mes "If I did, why would";
			mes "I not know what";
			mes "this song is about?";
			callsub L_End;

		} else {
			mes "[Errende]";
			mes "" + .@inputstr$ +"...?";
			mes "I don't think I know that person. Maybe you misunderstood";
			mes "something? *Sigh...*";
			next;
			mes "[Errende]";
			mes "What was the line...?";
			mes "How could I forget";
			mes "the 8th love?";
			gef_bard_q = 26;
			callsub L_End;
		}

	} else if (gef_bard_q == 25) {
		cutin "bard_eland04",2;
		mes "[Errende]";
		mes "Oh...!";
		mes "These tears just won't stop!";
		mes "Wh-why must people always treat Bards like this?";
		next;
		mes "^483D8BWho made";
		mes "this poor Bard cry?";
		mes "Who broke his";
		mes "tender heart of glass?";
		mes "Shattering his dreams...^000000";
		next;
		mes "^483D8BNo dreams,";
		mes "No heart,";
		mes "No love,";
		mes "No hope";
		mes "No....^000000";
		.@random = rand(1,50);
		next;

		if (.@random > 27  && .@random < 37 ) {
			mes "^3355FFErrende continues to sing about his personal despair. He seems to be disappointed in your refusal to help him. Of course, you begin to feel sorry for him.^000000";
			next;

			if(select("Well, I should help him then...", "Ignore him anyway.")==1) {
				mes "[" + @name$ + "]";
				mes "Hey. Hey, Errende. Stop singing this song. It's embarassing, okay? Alright, I'll go find the original song for you.";
				next;
				mes "[Errende]";
				mes "*Gasp!* Really! Are you sure? Thank you! Thank you so much!";
				mes "You really do care about";
				mes "the sadness of a Bard!";
				next;
				mes "[Errende]";
				mes "I promise to pay you back as best as I can! I'll wait for you here until you return!";
				gef_bard_q = 24;
			} else {
				cutin "bard_eland04",2;
				mes "^3355FFYou ignore his";
				mes "heart wrenching song.";
				mes "But at what cost to your soul?^000000";
			}
			callsub L_End;

		} else {
			cutin "bard_eland01",2;
			mes "[Errende]";
			mes "You don't have anything you want to ask me, do you? If not, would you like to listen to my song...?";
			next;
			mes "^483D8BMiiiiserable...";
			mes "Noboooody looooves meee";
			mes "Friends foooooor never...";
			mes "Ooooooooh wah!^000000";
			callsub L_End;
		}

	} else if (gef_bard_q == 24) {
		cutin "bard_eland02",2;
		mes "[Errende]";
		mes "Umm...";
		mes "I am not sure exactly where Mr. Kitty is. Maybe you might be able to find out at the Monster Museum in Juno? I think he's a member of the Monster Research Organization.";
		next;
		mes "[Errende]";
		mes "If you're experienced in exploration, you'd know the Monster Research Organization. Recently, many scholars have been wounded as a result of researching monsters.";
		next;
		cutin "bard_eland01",2;
		mes "[Errende]";
		mes "Because of the dangers of monster research, adventurers are needed to gather the information for the researchers.";
		next;
		mes "[Errende]";
		mes "For wanderers like myself, it's a great way to earn money. We give them the information they need, and they give us financial support to live the way we please.";
		next;
		mes "[Errende]";
		mes "Anyway, you should visit the Monster Museum in Juno to find out about Mr. Kitty. It's pretty far from here, but when you get to Juno, the Museum is West of the central plaza.";
		next;
		mes "[Errende]";
		mes "Once again,";
		mes "thank you so much";
		mes "for your help.";
		callsub L_End;

	} else if (gef_bard_q == 22) {
		mes "[Errende]";
		mes "*Sigh...*";
		mes "Where can";
		mes "I find the 8th love...?";
		mes "Have you met Gunther?";
		mes "Ah, perhaps not yet.";
		next;
		cutin "bard_eland04",2;
		mes "[Errende]";
		mes "*Sigh* I've lost the heart to sing ever since I've forgotten that line to the song. I just... can't. My spirit is unmoved. There's no inspiration.";
		next;
		mes "[Errende]";
		mes "Please ask ^483D8BGunther^000000 about the ^483D8B8th love^000000 in ^483D8BAt One, I Fall in Love^000000. Thank you in advance.";
		callsub L_End;

	} else if (gef_bard_q == 23) {
		cutin "bard_eland02",2;
		mes "[Errende]";
		mes "So...";
		mes "Have you";
		mes "seen Gunther?";
		next;
		mes "^3355FFYou turn around";
		mes "to show him your back.^000000";
		next;
		mes "[Errende]";
		mes "Huh...?!";
		mes "Isn't that?!";
		mes "Is that the line of the song written on your back? Wait, don't move! The 8th love is...";
		mes "Now I see!";
		next;
		mes "[Errende]";
		mes "At One, I fall in love.";
		mes "At Two, you give me your smile.";
		mes "At Three, I adore your touch.";
		mes "At Four, a tender kiss.";
		next;
		mes "[Errende]";
		mes "At Five, we change our minds.";
		mes "A petal scatters through the air.";
		mes "At Six, I fall in love~";
		mes "At Seven, you fall in love~";
		next;
		mes "[Errende]";
		mes "At Eight we turn away...";
		mes "At Nine, love is reborn.";
		mes "At Ten, my Love is gone.";
		mes "At Eleven I find out why.";
		if (Sex == SEX_MALE)
			mes "At Twelve I see his new girlfriend?";
		else
			mes "At Twelve I see her new boyfriend?";
		next;
		mes "[Errende]";
		mes "...";
		next;
		mes "[Errende]";
		mes "...";
		mes "......";
		next;
		cutin "bard_eland04",2;
		mes "[Errende]";
		mes "This...";
		mes "This cannot be.";
		mes "This song is supposed to be about love, not a romantic travesty!";
		next;
		mes "[Errende]";
		mes "The lyrics. They must have been changed. Did Gunther say anything about this?! Hmmm, but who would change the lyrics...?";
		next;
		cutin "bard_eland01",2;
		input .@inputstr$;

		if (.@inputstr$ == "Kino Kitty") {
			mes "[Errende]";
			mes "Ah! Of course!";
			mes "I think you're right!";
			mes "How could I not think of that?";
			next;
			mes "[Errende]";
			mes "It all makes sense now. After all, he used to be a member of the Invincible Single Army. His changes might have been a little mean, since this song used to be about a happy couple...";
			next;
			mes "[Errende]";
			mes "Ummm...";
			mes "I'm sorry to ask a favor of you again, but in your travels, do you think you could find the original lyrics for this song? I can wait for it...";
			next;

			if(select("No, thanks.", "I can, so stop crying.")==1) {
				mes "[Errende]";
				mes "Ah, I guess it was too much to ask of you. My apologies. Don't worry about it, I'll find out some other way.";
				gef_bard_q = 25;
			} else {
				mes "[Errende]";
				mes "Are you serious?";
				mes "Oh, thank you so much!";
				mes "You must be an angel!";
				mes "An angel that truly understands the heart of a poet!";
				next;
				mes "[Errende]";
				mes "I'll pay you back somehow!";
				mes "Thank you for your trouble";
				mes "in advance~";
				gef_bard_q = 24;
			}
			callsub L_End;

		} else if (.@inputstr$ == "Gunther") {
			mes "[Errende]";
			mes "Gunther? I don't think he would do this. He always puts lines in his songs like 'doubleharmony for you.' Plus, he's too silly for that.";
			gef_bard_q = 26;
			callsub L_End;

		} else if (.@inputstr$ == "Gunther Doubleharmony") {
			mes "[Errende]";
			mes "Gunther? I don't think he would do this. He always puts lines in his songs like 'doubleharmony for you.' Plus, he's too silly for that.";
			gef_bard_q = 26;
			callsub L_End;

		} else if (.@inputstr$ == "Errende") {
			cutin "bard_eland04",2;
			mes "[Errende]";
			mes "Surely you jest!";
			mes "If I did, why would";
			mes "I not know what this";
			mes "song is about?";
			gef_bard_q = 26;
			callsub L_End;

		} else {
			mes "[Errende]";
			mes "" + .@inputstr$ +"...?";
			mes "I don't think I know that person. Maybe you misunderstood";
			mes "something? *Sigh...*";
			next;
			mes "[Errende]";
			mes "What was the line...?";
			mes "How could I forget";
			mes "the 8th love?";
			gef_bard_q = 26;
			callsub L_End;
		}

	} else if (gef_bard_q == 21) {
		cutin "bard_eland01",2;
		mes "[Errende]";
		mes "Welcome back,";
		mes "" + @name$ + "~";
		mes "What would you like";
		mes "me to do for you?";
		mes "Would you like to hear";
		mes "a tale or listen to a song?";
		callsub S_StorySong,3;

	} else if (gef_bard_q == 7) {
		cutin "bard_eland04",2;
		mes "[Errende]";
		mes "How could I forget the song?";
		mes "I'm worthless as a Bard~! Please... Just... Please just leave me alone.";
		next;

		if(select("No problem.", "Is there any way I can help you?")==1){
			mes "[Errende]";
			mes "Waaaah~! You're so mean!";
			mes "You're supposed to say, 'Errende, what's wrong? Maybe I can help?'";
			next;
			mes "[Errende]";
			mes "I mean, we're supposed to know each other better than that. But, but maybe I was wrong!";
			next;
			mes "[Errende]";
			mes "*Sob...*";
			mes "Who made this poor Bard cry by neglecting him? *Sniff* I do believe it was you!";
		} else {
			cutin "bard_eland01",2;
			mes "[Errende]";
			mes "Help me?";
			mes "Hmmmmmmm...";
			mes "That's it!";
			mes "Gunther!";
			next;
			mes "[Errende]";
			mes "Let me ask you a favor. If perchance you happen to meet ^3355FFGunther Doubleharmony^000000, please inform him of my dilemma.";
			next;
			mes "[Errende]";
			mes "Tell him that ^483D8BMinty Errende^000000 happened to forget a line of the song, ^483D8BAt One, I Fall in Love^000000. The line is called ^483D8B8th love^000000.";
			next;
			mes "[Errende]";
			mes "I beseech you, if you meet him, please ask him of the 8th love and inform me of that lyric immediately~";
			gef_bard_q = 2;
		}
		callsub L_End;

	} else if (gef_bard_q == 6) {
		cutin "bard_eland04",2;
		mes "[Errende]";
		mes "Who could have changed the lyrics to the song? I can't understand why such a thing would happen. I really wish I could ask the person who changed the words...";
		next;
		mes "[Errende]";
		mes "*Sigh* I'm so frustrated I can't even sing. I just... can't. My spirit is unmoved. There's no inspiration.";
		next;
		mes "[" + @name$ + "]";
		mes "Could it be that";
		mes "the person who";
		mes "changed the song is...";
		input .@inputstr$;
		mes "" + .@inputstr$ + "?";
		next;

		if (.@inputstr$ == "Kino Kitty") {
			cutin "bard_eland01",2;
			mes "[Errende]";
			mes "Ah! Of course!";
			mes "I think you're right!";
			mes "How could I not think of that?";
			next;
			mes "[Errende]";
			mes "It all makes sense now. After all, he used to be a member of the Invincible Single Army. His changes might have been a little mean, since this song used to be about a happy couple...";
			next;
			mes "[Errende]";
			mes "Ummm...";
			mes "I'm sorry to ask a favor of you again, but in your travels, do you think you could find the original lyrics for this song? I can wait for it...";
			next;
			if(select("No, thanks.", "I can, so stop crying.")==1) {
				mes "[Errende]";
				mes "Ah, I guess it was too much to ask of you. My apologies. Don't worry about it, I'll find out some other way.";
				gef_bard_q = 5;
			} else {
				mes "[Errende]";
				mes "Are you serious? Oh, thank you so much! You must be an angel! An angel that truly understands the heart of a poet!";
				next;
				mes "[Errende]";
				mes "I'll pay you back somehow! Thank you for your trouble in advance~";
				gef_bard_q = 4;
			}
			callsub L_End;

		} else if (.@inputstr$ == "Gunther") {
			mes "[Errende]";
			mes "Gunther? I don't think he would do this. He always puts lines in his songs like 'doubleharmony for you.' Plus, he's too silly for that.";
			callsub L_End;

		} else if (.@inputstr$ == "Gunther Doubleharmony") {
			mes "[Errende]";
			mes "Gunther? I don't think he would do this. He always puts lines in his songs like 'doubleharmony for you.' Plus, he's too silly for that.";
			callsub L_End;

		} else if (.@inputstr$ == "Errende") {
			cutin "bard_eland04",2;
			mes "[Errende]";
			mes "Surely you jest! If I did, why would I not know what this song is about?";
			callsub L_End;

		} else {
			mes "[Errende]";
			mes "" + .@inputstr$ +"...?";
			mes "I don't think I know that person. Maybe you misunderstood something? *Sigh...*";
			next;
			mes "[Errende]";
			mes "What was the line...?";
			mes "How could I forget";
			mes "the 8th love?";
			gef_bard_q = 6;
			callsub L_End;
		}

	} else if (gef_bard_q == 5) {
		cutin "bard_eland04",2;
		mes "[Errende]";
		mes "Oh...!";
		mes "These tears just won't stop!";
		mes "Wh-why must people always treat Bards like this?";
		next;
		mes "^483D8BWho made this poor Bard cry?";
		mes "Who broke his tender heart of glass?";
		mes "Shattering his dreams...";
		mes "No dreams, no heart, no love, no hope, no...^000000";
		next;
		.@random = rand(1,50);

		if (.@random > 27 && .@random < 37) {
			mes "^3355FFErrende continues to sing about his personal despair. He seems to be disappointed in your refusal to help him. Of course, you begin to feel sorry for him.^000000";
			next;

			if(select("Well, I should help him then...", "Ignore him anyway.")==1) {
				mes "[" + @name$ + "]";
				mes "Hey. Hey, Errende. Stop singing this song. It's embarassing, okay? Alright, I'll go find the original song for you.";
				next;
				cutin "bard_eland01",2;
				mes "[Errende]";
				mes "*Gasp!* Really! Are you sure? Thank you! Thank you so much! You really do care about the sadness of a Bard!";
				next;
				mes "[Errende]";
				mes "I promise to pay you back as best as I can! I'll wait for you here until you return!";
				gef_bard_q = 4;
			} else {
				mes "^3355FFYou ignore his";
				mes "heart wrenching song.";
				mes "But at what cost to your soul?^000000";
			}
			callsub L_End;

		} else {
			cutin "bard_eland01",2;
			mes "[Errende]";
			mes "You don't have anything you want to ask me, do you? If not, would you like to listen to my song...?";
			next;
			mes "^483D8BMiiiiserable...";
			mes "Noboooody looooves meee";
			mes "Friends foooooor never...";
			mes "Ooooooooooh wah!^000000";
			callsub L_End;
		}

	} else if (gef_bard_q == 4) {
		cutin "bard_eland01",2;
		mes "[Errende]";
		mes "Umm...";
		mes "I am not sure exactly where Mr. Kitty is. Maybe you might be able to find out at the Monster Museum in Juno? I think he's a member of the Monster Research Organization.";
		next;
		mes "[Errende]";
		mes "If you're experienced in exploration, you'd know the Monster Research Organization. Recently, many scholars have been wounded as a result of researching monsters.";
		next;
		mes "[Errende]";
		mes "Because of the dangers of monster research, adventurers are needed to gather the information for the researchers.";
		next;
		mes "[Errende]";
		mes "For wanderers like myself, it's a great way to earn money. We give them the information they need, and they give us financial support to live the way we please.";
		next;
		mes "[Errende]";
		mes "Anyway, you should visit the Monster Museum in Juno to find out about Mr. Kitty. It's pretty far from here, but when you get to Juno, the Museum is West of the central plaza.";
		next;
		mes "[Errende]";
		mes "Once again,";
		mes "thank you so much";
		mes "for your help.";
		callsub L_End;

	} else if (gef_bard_q == 2) {
		cutin "bard_eland04",2;
		mes "[Errende]";
		mes "*Sigh...* Where can I find the 8th love...? Have you met Gunther?";
		mes "Ah, perhaps not yet.";
		next;
		mes "[Errende]";
		mes "*Sigh* I've lost the heart to sing ever since I forgotten that line to the song. I just... can't. My spirit is unmoved. There's no inspiration.";
		next;
		mes "[Errende]";
		mes "Please ask ^483D8BGunther^000000 about the ^483D8B8th love^000000 in ^483D8BAt One, I Fall in Love^000000. Thank you in advance.";
		callsub L_End;

	} else if (gef_bard_q == 3) {
		cutin "bard_eland02",2;
		mes "[Errende]";
		mes "So...";
		mes "Have you";
		mes "seen Gunther?";
		next;
		mes "^3355FFYou turn around";
		mes "to show him your back.^000000";
		next;
		cutin "bard_eland03",2;
		mes "[Errende]";
		mes "Huh...?!";
		mes "Isn't that?!";
		mes "Is that the line of the song written on your back? Wait, don't move! The 8th love is...";
		mes "Now I see!";
		next;
		mes "[Errende]";
		mes "At One, I fall in love.";
		mes "At Two, you give me your smile.";
		mes "At Three, I adore your touch.";
		mes "At Four, a tender kiss.";
		next;
		mes "[Errende]";
		mes "At Five, we change our minds.";
		mes "A petal scatters through the air.";
		mes "At Six, I fall in love~";
		mes "At Seven, you fall in love~";
		next;
		mes "[Errende]";
		mes "At Eight we turn away...";
		mes "At Nine, love is reborn.";
		mes "At Ten, my Love is gone.";
		mes "At Eleven I find out why.";
		if (Sex == SEX_MALE)
			mes "At Twelve I see her new boyfriend?";
		else
			mes "At Twelve I see his new girlfriend?";
		next;
		mes "[Errende]";
		mes "...";
		next;
		mes "[Errende]";
		mes "...";
		mes "......";
		next;
		cutin "bard_eland04",2;
		mes "[Errende]";
		mes "This...";
		mes "This cannot be.";
		mes "This song is supposed to be about love, not a romantic travesty!";
		next;
		mes "[Errende]";
		mes "The lyrics. They must have been changed. Did Gunther say anything about this?! Hmmm, but who would change the lyrics...?";
		next;
		input .@inputstr$;
		if (.@inputstr$ == "Kino Kitty") {
			cutin "bard_eland01",2;
			mes "[Errende]";
			mes "Ah! Of course!";
			mes "I think you're right!";
			mes "How could I not think of that?";
			next;
			mes "[Errende]";
			mes "It all makes sense now. After all, he used to be a member of the Invincible Single Army. His changes might have been a little mean, since this song used to be about a happy couple...";
			next;
			mes "[Errende]";
			mes "Ummm...";
			mes "I'm sorry to ask a favor of you again, but in your travels, do you think you could find the original lyrics for this song? I can wait for it...";
			next;

			if(select("No, thanks.", "I can, so stop crying.")==1) {
				mes "[Errende]";
				mes "Ah, I guess it was too much to ask of you. My apologies. Don't worry about it, I'll find out some other way.";
				gef_bard_q = 5;
			} else {
				mes "[Errende]";
				mes "Are you serious? Oh, thank you so much! You must be an angel! An angel that truly understands the heart of a poet!";
				next;
				mes "[Errende]";
				mes "I'll pay you back somehow! Thank you for your trouble in advance~";
				gef_bard_q = 4;
			}
			callsub L_End;

		} else if (.@inputstr$ == "Gunther") {
			mes "[Errende]";
			mes "Gunther? I don't think he would do this. He always puts lines in his songs like 'doubleharmony for you.' Plus, he's too silly for that.";
			gef_bard_q = 6;
			callsub L_End;
		}

		else if (.@inputstr$ == "Gunther Doubleharmony") {
			mes "[Errende]";
			mes "Gunther? I don't think he would do this. He always puts lines in his songs like 'doubleharmony for you.' Plus, he's too silly for that.";
			gef_bard_q = 6;
			callsub L_End;

		} else if (.@inputstr$ == "Errende") {
			cutin "bard_eland04",2;
			mes "[Errende]";
			mes "Surely you jest! If I did, why would I not know what this song is about?";
			gef_bard_q = 6;
			callsub L_End;

		} else {
			mes "[Errende]";
			mes "" + .@inputstr$ +"...?";
			mes "I don't think I know that person. Maybe you misunderstood something? *Sigh...*";
			next;
			mes "[Errende]";
			mes "What was the line...?";
			mes "How could I forget";
			mes "the 8th love?";
			gef_bard_q = 6;
			callsub L_End;
		}

	} else if (gef_bard_q == 1) {
		cutin "bard_eland01",2;
		mes "[Errende]";
		mes "Welcome back,";
		mes "" + @name$ + "~";
		mes "What would you like";
		mes "me to do for you?";
		mes "Would you like to hear";
		mes "a tale or listen to a song?";
		callsub S_StorySong,4;

	} else {
		cutin "bard_eland03",2;
		mes "^483D8BWhat day is";
		mes "best for drinking?";
		mes "La la la~";
		mes "It's the day of";
		mes "the earth, the sun";
		mes "And the moon~";
		mes "La la la~^000000";
		next;
		mes "^483D8BLa la la~";
		mes "I'll only";
		mes "drink on one day~";
		mes "So if you'll tell me";
		mes "when you'll drink";
		mes "I'll tell you when";
		mes "I'll drink with you~^000000";
		next;
		mes "^483D8BLet's get together";
		mes "Yea yea ye-^000000 Hmmmmm...?";
		next;
		mes "[Bard]";
		mes "Why, hello there. Oh, have you come to listen to my song and forget your worries?";
		next;

		if(select("Who are you?", "Ignore him.")==1) {
			cutin "bard_eland04",2;
			mes "[" + @name$ + "]";
			mes "You seem to be";
			mes "new around here...";
			mes "Who are you?";
			next;
			cutin "bard_eland02",2;
			mes "[Errende]";
			mes "Mm? Ah yes. I am merely another wandering poet who goes where the wind takes him. Please call me ^483D8BErrende^000000, the Bard who wishes to please you.";
			next;
			mes "[Errende]";
			mes "If you will let me, I will tell you of my travels. By your leave,";
			mes "I will play a song that will help you forget your troubles.";
			gef_bard_q = 1;
			callsub S_StorySong,5;

		} else {
			mes "[Errende]";
			mes "Waaah, wah~";
			mes "You can't just ignore me like that! Where's your sense of merriment, your sense of romance?";
		}

	}

L_End:
	close2;
	cutin "",255;
	end;

// SubRoutine for 5 similiar dialogues of the quest
S_StorySong:
	next;
	switch(select("Tell me a story.", "Would you play a song?", "Eh, maybe later.")) {
	case 1:
		mes "[Errende]";
		mes "You like stories, huh? What kind of story would you like me to tell? I'll you whatever I know... Just for you, of course. *Grins*";
		next;

		if(select("News and rumors~", "Cancel.")==1) {
			cutin "bard_eland01",2;
			mes "[Errende]";
			.@random = rand(1,3);
			if (.@random == 1) {
				mes "Hmmm. Then shall we talk about this town, Geffen? Have you ever been to the Pub or the Inn here?";
				next;
				mes "[Errende]";
				mes "I'd be lying if I didn't say that the sisters that work the Pub and Inn are... ^FF6699sensuously captivating^000000.";
				next;
				mes "[Errende]";
				mes "The elder one is gorgeous, graceful and carries with her an air of refinement. And the younger one is so cheerful, energetic and so... ^FF6699nubile^000000.";
				next;
				mes "[Errende]";
				mes "But I digress.";
				mes "Sometimes though,";
				mes "just sometimes mind you,";
				mes "they're not as sexy as usual.";
				next;
				mes "[Errende]";
				mes "It seems the spirit of their late father, God bless his soul for siring such hot women, possesses them from time to time.";
				next;
				cutin "bard_eland02",2;
				mes "[Errende]";
				mes "I guess when someone acts even";
				mes "a little flirtacious towards those girls, their father's spirit takes over. I should know.";
				next;
				mes "[Errende]";
				mes "I guess a father's love endures forever, even into the afterlife. Of course, I wouldn't know.";
				next;
				mes "[Errende]";
				cutin "bard_eland01",2;
				mes "Let's see...";
				mes "Look out for this really shady Merchant that hangs out behind";
				mes "the Pub in Geffen.";
				next;
				mes "[Errende]";
				mes "Judging from his clothes, he must be from Morroc, which is a lot warmer. That's why he's got a Hood, even though it has no drawstrings, for the cooler weather over here.";
				next;
				mes "[Errende]";
				mes "I must warn you, don't let him talk you into buying that Hood of his since he's selling it for an outrageous price. He's definitely not trustworthy.";
				next;
				mes "[Errende]";
				mes "Lastly, I want to mention the lost city of Geffenia, hidden under the Geffen Tower. I hear some kind of condition is required to enter Geffenia, but I'm not sure.";
				next;
				mes "[Errende]";
				mes "Geffenia is related to the two attractive ladies I mentioned earlier. It seems their father, William, entered Geffen Tower with a party to exterminate monsters, but he never returned.";
				next;
				mes "[Errende]";
				mes "It's tragic that he left his family behind in that way. But perhaps, it is more tragic that his spirit scares away anyone interested in those girls.";

			} else if (.@random == 2) {
				mes "Okay, let me tell you a story about Morroc, city of the desert. Adventurers worth their salt are expected to have explored the city and its surrounding desert.";
				next;
				mes "[Errende]";
				mes "The Sphinx and the Pyramids are especially popular areas of exploration for adventurers. Have you been there before? I haven't yet, but perhaps someday I'll go.";
				next;
				mes "[Errende]";
				mes "While I was in Morroc, I found a Merchant that sells Sword Maces to Priests and Priestess. Aside from those, Priests are prohibited from using any kind of weapon with blades.";
				next;
				mes "[Errende]";
				mes "I also saw an energetic little boy who kept begging his father to tame a Munak for him. I heard the father speak a bit, and it seems that one of his friends from Morroc is lost in Alberta.";
				next;
				cutin "bard_eland02",2;
				mes "[Errende]";
				mes "In any case, I helped the father with an errand, and he gave me a mysterious box in return. When I opened that box, I found a strange feather. I'm unaware of how it works, though...";
				next;
				mes "[Errende]";
				mes "I wonder if that man's friend, Pandger Mayer, ever found";
				mes "his way back home...";

			} else if (.@random == 3) {
				mes "Why don't we talk about Alberta? There is a sunken ship developed by an event agency as a place where adventurers may go on expeditions. It seems they're making a lot of money.";
				next;
				mes "[Errende]";
				mes "When the sunken ship first drifted near Alberta, it was immediately found by one of the Alberta Security Knights.";
				next;
				mes "[Errende]";
				mes "That Security Knight ventured inside and found an infant deep inside one of the rooms. Next to the baby was a music box.";
				next;
				mes "[Errende]";
				mes "This baby was the one and only survivor from the sunken ship. He was brought up in Alberta, although he was treated with contempt when he was a child. He's fine now, but I digress.";
				next;
				mes "[Errende]";
				mes "As for the sunken ship, I'm unsure of whether or not it was a pirate ship. It is said that skeleton monsters wearing pirate costumes roam its remains.";
				next;
				mes "[Errende]";
				mes "One of Alberta's other mysteries is the elusive Turtle Island. It seems that one seafarer has found a dependable route to that place and is giving passage to adventurers.";
				next;
				mes "[Errende]";
				mes "Still, it seems Turtle Island is not quite safe. Two squads of Alberta Security Knights have already traveled there, but have not yet returned. Verily, this is cause for concern.";
				next;
				mes "[Errende]";
				mes "Still, that didn't stop me from visiting that place. By sheer accident, I found the journal of an adventurer who had already been there. It seems he's a famous scholar now.";
				next;
				cutin "bard_eland02",2;
				mes "[Errende]";
				mes "In that journal are details about an ultimate swordsman, and the exploration of Turtle Island. I'm sure that anyone seeking treasure in that place will find exciting adventure.";
			}

		} else {
			cutin "bard_eland01",2;
			mes "[Errende]";
			mes "Oh, how disappointing. But promise me that you will drop by later, so that we can share stories and merriment.";
		}
		callsub L_End;

	case 2:
		mes "[Errende]";
		if(getarg(0) < 3)
			mes "You recognize my talent, so you deserve to listen to my songs! Now, what would you like to hear? I can play anything you want, you know.";
		else
			mes "At last, I've met someone who recognizes my talent! You deserve to listen to my songs! Now, what would you like to hear? I can play anything you want, you know.";
		next;

		switch(select("Hmm, any song will do.", "Play an upbeat song~!", "Never mind...")) {

		case 1:
			mes "[Errende]";
			if (Zeny > 499) {
				Zeny -= 500;
				cutin "bard_eland03",2;
				mes "Alright.";
				mes "Here we go~";

				.@random = rand(1,3);
				if (.@random == 1)
					soundeffect "ring_of_nibelungen.wav",0;
				else if (.@random == 2)
					soundeffect "dont_forget_me_not.wav",0;
				else
					soundeffect "in_to_the_abyss.wav",0;

			} else {
				cutin "bard_eland04",2;
				mes "Ahahaha~";
				mes "My apologies,";
				mes "But I cannot offer my services for free. Even a Bard needs zeny to live, wouldn't you agree?";
			}
			callsub L_End;

		case 2:
			cutin "bard_eland03",2;
			mes "[Errende]";
			mes "An upbeat song...?";
			mes "Hmmm... Let's see.";
			mes "An upbeat song,";
			mes "An upbeat song...";
			mes "Okay, here we go~";
			next;
			//for 3 and 4 variants, we need higher chance
			if(getarg(0) == 3 || getarg(0) == 4)
				.@random = rand(1,5);
			else
				.@random = rand(1,3);
			if (.@random == 1) {
				mes "^483D8BValhalla dazzles in gold";
				mes "The fifth as we know";
				mes "Is old Glast Heim!";
				mes "Glorious warriors answer";
				mes "The summons of Odin.^000000";
				next;
				mes "^483D8BPalace of the dead";
				mes "With a silver roof~";
				mes "The third as we know...";
				mes "Valaskjalf!";
				mes "Glorious warriors answer";
				mes "The summons of Odin.^000000";
				next;
				mes "^483D8BFive hundred forty doors";
				mes "In the grand halls of Valhalla";
				mes "Fling open to the heart of a hero.";
				mes "Eight hundred warriors gather";
				mes "Under the will of God, and";
				mes "Charge as one out through";
				mes "Those doors.^000000";
				next;
				mes "^483D8BGodly warriors";
				mes "Step into Yggdrassil";
				mes "Towards their fate.";
				mes "With pride and honor,";
				mes "They accept Valyrie's";
				mes "Welcome.^000000";
				next;
				mes "^483D8BWarriors fallen in battle";
				mes "In glorious clashes of red";
				mes "Death may have come,";
				mes "But your fame lives on";
				mes "and your spirit will be";
				mes "led to Valhalla.^000000";
				//Expanded version for 2nd variant
				if(getarg(0) == 2){
					next;
					mes "[Errende]";
					mes "...";
					next;
					mes "[Errende]";
					mes "...";
					mes "......";
					next;
					mes "[Errende]";
					mes "You know this song is about a legend regarding Valhalla don't you? Supposedly, more than one place was used as the sacred Hall of Honor.";
					next;
					mes "[Errende]";
					mes "But only the gods will know if this was true or not. Was a place like Glast Heim really the fifth Valhalla? We humans";
					mes "may never know";
					mes "with certainty.";
				}
				callsub L_End;

			} else if (.@random == 2) {

				mes "^483D8BThe sounds of galloping";
				mes "Echo in the distance.";
				mes "A cloud of hazy dust";
				mes "Fills the setting sun.";
				mes "Thousands of eyes open";
				mes "Torches on the castle";
				mes "Flare like thousands of Ifrits.";
				next;
				mes "^483D8BHear the throbbing of my heart,";
				mes "The blood flowing in my veins.";
				mes "Feeling the heaviness of my armor.";
				mes "The enemy has appeared before us.^000000";
				next;
				mes "^483D8BBeat the drums hard, harder!";
				mes "Courage, soldiers, march forward!";
				mes "Shout loud, soldiers, louder!";
				mes "Today will never come back!^000000";
				next;
				mes "^483D8BStun the sky";
				mes "Provoke the earth.";
				mes "I feel my heartbeat again.";
				mes "Blow the bugle to";
				mes "Sway the fortress.";
				mes "Today will never come back!^000000";
				next;
				mes "[Errende]";
				mes "Ah, this is called 'Drumming in the Battlefield,' which was written by Mr. Iolo. Yes, I rather like this song.";

			} else {
				// For 3 and 4 cases we set more chance earlier on .@random
				if(getarg(0) == 3 || getarg(0) == 4){
					mes "[Errende]";
					if (Sex == SEX_MALE)
						mes "Heroic warrior,";
					else
						mes "My fair lady,";
					mes "Please listen to my song. If you have a flower in hand and are in love, let's count the flower petals as we go along.";
					next;
					mes "^483D8BAt One, I fall in love.";
					mes "At Two, you give me your smile.";
					mes "At Three, I adore your touch.";
					mes "At Four, a tender kiss.";
					mes "At Five, we change our minds.";
					mes "A petal scatters through the air.^000000";
					next;
					cutin "bard_eland04",2;
					mes "^483D8BAt Six, I fall in love~";
					mes "At Seven, you fall in love~";
					mes "At Eight~^000000";
					next;
					mes "[Errende]";
					mes "At eight~";
					mes "At... Eight...";
					mes "What was next...?";
					next;
					mes "[Errende]";
					mes "Oh my...!";
					mes "What was the next part?!";
					mes "What was the 8th love?!";
					mes "How shameful for a Bard";
					mes "to forget the words";
					mes "to a song!";
					next;
					mes "[Errende]";
					mes "I...";
					mes "I can't bear the humiliation!";
					mes "Or the suspense of what";
					mes "happens next...!";
					next;
					mes "[Errende]";
					mes "You're an adventurer, aren't you? So you must travel quite a bit? It's embarassing for me to ask,";
					mes "but I have a favor to ask...!";
					next;

					if(select("Sure, no problem.", "I ain't gonna help you.")==1) {
						cutin "bard_eland01",2;
						mes "[Errende]";
						mes "Thank you, so much!";
						mes "Let's see, who would know?";
						mes "I've got it! Gunther!";
						next;
						mes "[Errende]";
						mes "If perchance you happen to meet ^483D8BGunther Doubleharmony^000000, please inform him of my dilemma.";
						next;
						mes "[Errende]";
						mes "Tell him that ^483D8BMinty Errende^000000 happened to forget a line of the song, ^483D8BAt One, I Fall in Love^000000. The line is called ^483D8B8th love^000000.";
						next;
						mes "[Errende]";
						mes "I beseech you, if you meet him, please ask him of the 8th love and inform me of that lyric immediately~";
						if(gef_bard_q==1) gef_bard_q = 2;
						if(gef_bard_q==21) gef_bard_q = 22;

					} else {
						mes "[Errende]";
						mes "*Sigh...*";
						mes "I can't remember the 8th part of this song if my life depended on it. And it does~! *Wahhhh~*";
						if(gef_bard_q==1) gef_bard_q = 7;
						if(gef_bard_q==21) gef_bard_q = 27;
					}
					callsub L_End;

				}
				mes "^483D8BA good Bard sings";
				mes "To please his listener.";
				mes "So do not expect a sad song";
				mes "That deepens your anguish.^000000";
				next;
				mes "^483D8BA good Dancer dances";
				mes "To please her audience.";
				mes "Shall we dance together?";
				mes "Just hold my hands.";
				mes "La la la~ La la la~^000000";
				next;
				mes "[" + @name$ + "]";
				mes "By the way...";
				mes "Why do you guys play";
				mes "discords sometimes?";
				mes "It sounds weird";
				mes "when you do that.";
				next;
				mes "[Errende]";
				mes "H-how can you say such a thing, "+ @name$ +"? Have you ever been a Bard before? It's difficult to come up with fresh, original melodies!";
			}
			callsub L_End;

		case 3:
			cutin "bard_eland01",2;
			mes "[Errende]";
			mes "But of course.";
			mes "Merriment is best";
			mes "enjoyed when you";
			mes "are in the mood for it.";
			mes "Please come again.";
			callsub L_End;

		}

	case 3:
		cutin "bard_eland01",2;
		mes "[Errende]";
		mes "Hmm~?";
		mes "Well, alright. Though, listening to a good story or cheerful song can really do you some good. Alright then, see you later.";
		callsub L_End;
	}
}

morocc,134,111,3	script	Bard#3	2_M_BARD_ORIENT,{
	@name$ = strcharinfo(PC_NAME);
	if (gef_bard_q == 31) {
		mes "[Kino Kitty]";
		mes "Everything will be";
		mes "fine in the end, right?";
		mes "I'll be okay, Jorti will be okay, and she'll be... Oh.";
		next;
		mes "[Kino Kitty]";
		mes "I'm sorry, I was just";
		mes "muttering to myself.";
		mes "Is there anything";
		mes "you want from me?";
		next;

		switch(select("Tell me a story...", "Your voice is...", "No thanks, I appreciate it though.")) {
		case 1:
			.@random = rand(1,3);
			if (.@random == 1) {
				mes "[Kino Kitty]";
				mes "Many legends have been passed down as songs. Stories of Gods and tales of brave warriors have all been written as songs.";
				next;
				mes "[Kino Kitty]";
				mes "Many people love to listen to those songs because they dream of the romantic past. To sing these kinds of songs is the reason people like me exist.";
				next;
				mes "^3355FFKino Kitty adjusted the strings on his guitar, and began to sing in a low voice.^000000";
				next;
				mes "^D43D1ARheingold...";
				mes "Hidden in the Rhein river.";
				mes "If made into a ring,";
				mes "Could rule the world~^000000";
				next;
				mes "^D43D1AProtected by a spell";
				mes "Cursing its thief";
				mes "To never find love.";
				mes "Alberich had known";
				mes "Nonetheless stole it.";
				mes "Love was forsaken for power.^000000";
				next;
				mes "^D43D1AGiants built beautiful Valhalla";
				mes "Matrimony with Freya";
				mes "Goddess of beauty";
				mes "Their supposed payment.";
				mes "In not receiving it";
				mes "They forcefully took her.^000000";
				next;
				mes "^D43D1AThe gods would";
				mes "give Alberich's treasure";
				mes "To the Giants for Freya's return.";
				mes "Loki tricked Alberich,";
				mes "Stealing his ring or power.^000000";
				next;
				mes "^D43D1ABut Alberich cursed his ring";
				mes "Before it was returned to him,";
				mes "Envy and death would";
				mes "befall its wearers.^000000";
				next;
				mes "^D43D1AThe ring was given to the giants";
				mes "Freya was returned to the gods";
				mes "The giants killed themselves";
				mes "Fighting over the rheingold,";
				mes "Victims of";
				mes "Alberich's curse~^000000";
				next;
				mes "[Kino Kitty]";
				mes "Hmm...";
				mes "^333333*Cough Cough*^000000";
				mes "This old song";
				mes "is about the ring";
				mes "of the Nibelungs.";
				next;
				mes "[Kino Kitty]";
				mes "^333333*Cough Cough*^000000";
				mes "Hah... I can't sing more than one song nowadays. But did you like it? ^333333*Cough Cough*^000000";
				close;

			} else if (.@random == 2) {
				mes "[Kino Kitty]";
				mes "Ah...";
				mes "I do feel like singing a song. You know, every song has its own story. ^333333*Cough Cough*^000000";
				next;
				mes "^3355FFKino Kitty coughed a few times, wiping his mouth with his sleeve. As he adjusts the guitar strings, you notice small stains of blood on his sleeve. Then, he began to sing.^000000";
				next;
				mes "^D43D1ABrave hero Siegfried";
				mes "Vanquished a mighty dragon";
				mes "Its blood coated his skin";
				mes "Making it impenetrable";
				mes "Save for one tender spot";
				mes "Blocked by a single leaf";
				mes "From a linden tree.^000000";
				next;
				mes "^D43D1ASiegfried was powerful";
				mes "Clearly invincible, save for";
				mes "those who knew of his secret.";
				mes "In the end he was killed, by";
				mes "A spear flung into his back";
				mes "set into motion by the wrath";
				mes "And jealousy of a woman.^000000";
				next;
				mes "[Jorti]";
				mes "Bravo, Bravo~!";
				mes "Uncle Kino is the best Bard in the world~! Jorti likes Uncle Kino's singing!";
				next;
				mes "[Kino Kitty]";
				mes "Thank you, Jorti.";
				mes "Anytime for my";
				mes "little princess.";
				next;
				mes "[Kino Kitty]";
				mes "This song is about Sigfried, who was invincible, except for a single spot on his back. Just singing this reminds me of the influence women have over the world.";
				close;

			} else {
				mes "[Kino Kitty]";
				mes "You want to";
				mes "listen to a story?";
				mes "Mmm, let me think...";
				next;
				mes "[Kino Kitty]";
				mes "When you go venture Southwest from Morroc, you will arrive at Fortress Sandarman. Did you know that the fortress is built on a sand hill, which serves as a natural defense?";
				next;
				mes "[Kino Kitty]";
				mes "When you go South of Sandarman, you will see Paros Lighthouse. East from the Lighthouse, you will see Kokomo Beach. North of the beach is Papuchica Forest.";
				next;
				mes "[Kino Kitty]";
				mes "I'm not boring you, am I? I just wanted to tell you about the village of Umbala, which is above that last place I was telling you about. Have you ever been there?";
				next;
				mes "[Kino Kitty]";
				mes "Umbala itself is a pretty interesting place. But I'm really interested in this giant tree in Umbala. I've heard that it leads to Niffheim...";
				next;
				mes "[Kino Kitty]";
				mes "I wonder...";
				mes "Could that tree be Yggdrasil? Is it possible that I could meet her in the Niffheim, realm of the dead?";
				close;
			}
		case 2:
			mes "[Kino Kitty]";
			mes "Oh... Well, I have a chronic disease so I can't speak out loud. I, um, even cough up a little blood. But aside from that, I'm perfectly healthy.";
			next;
			mes "^3355FFA look of bitterness momentarily flashed across Kino Kitty's face. He then adjusted his guitar strings and began to play, humming a low tune.^000000";
			soundeffect "humming.wav",0;
			close;
		case 3:
			mes "[Kino Kitty]";
			mes "Hmm...?";
			mes "I wish everyone in the world were as kind and honest as you. If that were the case, there'd be no selfish fights. Hahahahaha~";
			close;
		}

	} else if (gef_bard_q == 30) {
		mes "[Kino Kitty]";
		mes "Everything will be";
		mes "fine in the end, right?";
		mes "I'll be okay, Jorti will be okay, and she'll be... Oh.";
		next;
		mes "[Kino Kitty]";
		mes "I'm sorry, I was just";
		mes "muttering to myself.";
		mes "Is there anything";
		mes "you want from me?";
		next;

		switch(select("Tell me a story, or sing something~", "Your voice is...", "No thanks. I appreciate it, though.")) {
		case 1:
			.@random = rand(1,3);
			if (.@random == 1) {
				mes "[Kino Kitty]";
				mes "Ah...";
				mes "I do feel like singing a song. You know, every song has its own story. ^333333*Cough Cough*^000000";
				next;
				mes "^3355FFKino Kitty coughed a few times, wiping his mouth with his sleeve. As he adjusts the guitar strings, you notice small stains of blood on his sleeve. Then, he began to sing.^000000";
				next;
				mes "^D43D1ABrave hero Siegfried ";
				mes "Vanquished a mighty dragon";
				mes "Its blood coated his skin";
				mes "Making it impenetrable";
				mes "Save for one tender spot";
				mes "Blocked by a single leaf";
				mes "From a linden tree.^000000";
				next;
				mes "^D43D1ASiegfried was powerful";
				mes "Clearly invincible, save for";
				mes "those who knew of his secret.";
				mes "In the end he was killed, by";
				mes "A spear flung into his back";
				mes "set into motion by the wrath";
				mes "And jealousy of a woman.^000000";
				next;
				mes "[Jorti]";
				mes "Bravo, Bravo~!";
				mes "Uncle Kino is the best Bard in the world~! Jorti likes Uncle Kino's singing!";
				next;
				mes "[Kino Kitty]";
				mes "Thank you, Jorti.";
				mes "Anytime for my";
				mes "little princess.";
				next;
				mes "[Kino Kitty]";
				mes "This song is about Sigfried, who was invincible, except for a single spot on his back. Just singing this reminds me of the influence women have over the world.";
				close;

			} else if (.@random == 2) {
				mes "[Kino Kitty]";
				mes "Ah...";
				mes "I do feel like singing a song. You know, every song has its own story. ^333333*Cough Cough*^000000";
				next;
				mes "^3355FFKino Kitty coughed a few times, wiping his mouth with his sleeve. As he adjusts the guitar strings, you notice small stains of blood on his sleeve. Then, he began to sing.^000000";
				next;
				mes "^D43D1AI still remember feeling";
				mes "Your shoulder's warmth";
				mes "As I leaned on it.";
				mes "You held my hands";
				mes "until the final moment.^000000";
				next;
				mes "^D43D1ACrying on the inside,";
				mes "I saw you off with a smile.";
				mes "Things would never be the same,";
				mes "But I'd remember every single";
				mes "Moment we shared.^000000";
				next;
				mes "^D43D1AI still remember the clear chimes";
				mes "Of the Prontera Church Bells";
				mes "The ice cream we shared in Morroc,";
				mes "Being chased by bats";
				mes "In Payon dungeon.^000000";
				next;
				mes "^D43D1AGazing together at";
				mes "Comodo's fireworks";
				mes "Snuggles under the";
				mes "Gently falling Lutie";
				mes "Snowflakes...^000000";
				next;
				mes "^D43D1AYour beautiful soul";
				mes "Will be with Odin.";
				mes "When the day";
				mes "Of the dusk comes,";
				mes "A brand new place";
				mes "Will be before your eyes.^000000";
				next;
				mes "^D43D1AI will remember you forever.";
				mes "Forget me not, call my name.";
				mes "I'll hear you, and look to the skies.^000000";
				next;
				mes "[Jorti]";
				mes "Ah, Uncle Kino, isn't this the song my mom always sang? Sing more songs, please! Please~!";
				next;
				mes "[Kino Kitty]";
				mes "You're right...";
				mes "She always used to sing this song... ^333333*Cough*^000000 There are always people waiting for their beloved to return...";
				next;
				mes "[Kino Kitty]";
				mes "If you have someone who you've left behind, someone that is waiting for you, make sure you come back to that person. You'll regret it if you don't.";
				close;

			} else {
				mes "[Kino Kitty]";
				mes "You want to";
				mes "listen to a story?";
				mes "Mmm, let me think...";
				next;
				mes "[Kino Kitty]";
				mes "When you go venture Southwest from Morroc, you will arrive at Fortress Sandarman. Did you know that the fortress is built on a sand hill, which serves as a natural defense?";
				next;
				mes "[Kino Kitty]";
				mes "When you go South of Sandarman, you will see Paros Lighthouse. East from the Lighthouse, you will see Kokomo Beach. North of the beach is Papuchica Forest.";
				next;
				mes "[Kino Kitty]";
				mes "I'm not boring you, am I? I just wanted to tell you about the village of Umbala, which is above that last place I was telling you about. Have you ever been there?";
				next;
				mes "[Kino Kitty]";
				mes "Umbala itself is a pretty interesting place. But I'm really interested in this giant tree in Umbala. I've heard that it leads to Niffheim...";
				next;
				mes "[Kino Kitty]";
				mes "I wonder...";
				mes "Could that tree be Yggdrasil? Is it possible that I could meet her in the Niffheim, realm of the dead?";
				close;
			}
		case 2:
			mes "[Kino Kitty]";
			mes "Oh... Well, I have a chronic disease so I can't speak out loud. I, um, even cough up a little blood. But aside from that, I'm perfectly healthy.";
			next;
			mes "^3355FFA look of bitterness momentarily flashed across Kino Kitty's face. He then adjusted his guitar strings and began to play, humming a low tune.^000000";
			soundeffect "humming.wav",0;
			close;
		case 3:
			mes "[Kino Kitty]";
			mes "Hmm...?";
			mes "I wish everyone in the world were as kind and honest as you. If that were the case, there'd be no selfish fights. Hahahahaha~";
			close;
		}

	} else if (gef_bard_q > 12 && gef_bard_q < 16) {
		mes "[Kino Kitty]";
		mes "Errende must be waiting for you. Although others would be in anguish if they were made to wait, and people like Errende and me wouldn't mind, it's still more polite to hurry when you can.";
		close;

	} else if (gef_bard_q == 12) {
		mes "[Kino Kitty]";
		mes "I guess you've met Mr. Sketzi.";
		mes "By the way, why do you have that look on your face? Didn't find what you were looking for? Haha, would you show me your left hand?";
		next;

		if(select("Here you go.", "Um... No!")==1) {
			mes "[Kino Kitty]";
			mes "Well, while you were gone,";
			mes "I remembered the original lyrics to the song. I guess they really are important.";
			next;
			mes "[Kino Kitty]";
			mes "Here, let me give you a letter with the lyrics to Errende. I should also give you my seal so that Errende will know it's me. You don't mind, do you?";
			next;

			switch(select("Yes, I mind!", "No, I don't mind.")) {

			case 1:
				mes "[Kino Kitty]";
				mes "Ah, right.";
				mes "You already have a seal marked by Errende. Oh well, if you don't want it, what can I do?";
				gef_bard_q = 13;
				close;
			case 2:
				mes "[Kino Kitty]";
				mes "Now, let's see...";
				mes "How is it supposed to go?";
				mes "...Lu lu lu...";
				mes "...La la la...";
				next;
				mes "^D43D1AAt One, I fall in love.";
				mes "At Two, you give me your smile.";
				mes "At Three, I adore your touch.";
				mes "At Four, a tender kiss.";
				mes "At Five, we change our minds.";
				mes "A petal scatters through the air.^000000";
				next;
				mes "^D43D1AAt Six, I fall in love~";
				mes "At Seven, you fall in love~";
				mes "At Eight, we're both in love.";
				mes "At Nine, you know my heart.";
				mes "At Ten, I know you've";
				mes "been waiting for me.^000000";
				next;
				mes "^D43D1AAt Eleven, a precious";
				mes "Whisper: 'Will you marry me?'";
				mes "At Twelve, our two hearts";
				mes "Are one. 12 petals, our";
				mes "Love finally blossoms.^000000";
				next;
				specialeffect(EF_POISONREACT2, AREA, playerattached());
				mes "^3355FFAfter the song, Kino smiles at you. You feel a sharp pain on your wrist. On the spot where the silver crescent was, you see a tiny black cross.^000000";
				next;
				mes "[Kino Kitty]";
				mes "So, how do you like it? Well, I'm certain that Errende will love it for sure. Hahahahaha~ ^333333*Cough Cough*^000000";
				next;
				mes "[Kino Kitty]";
				mes "I want to apologize.";
				mes "I didn't mean to make you wait, but I just remembered the old lyrics to the song. Now, hurry to Errende, I'm sure he's waiting.";
				next;
				mes "^3355FFKino Kitty hands you a letter that is labeled 'Dear Errende'";
				mes "on the front.^000000";
				gef_bard_q = 14;
				close;
			}
		} else {
			mes "[Kino Kitty]";
			mes "Hmmm...?";
			mes "There's no reason to be scared.";
			mes "I mean, I won't bite or anything.";
			close;
		}

	} else if (gef_bard_q == 10) {
		mes "[Kino Kitty]";
		mes "Didn't you leave already?";
		mes "I'm sure you can find the lyrics in a bookstore in Juno.";
		next;
		mes "[Kino Kitty]";
		mes "Well, I'm sure Errende knows more about bookstores, so he can probably tell you where to look in Juno. Why don't you ask Errende?";
		next;
		mes "[Kino Kitty]";
		mes "If you don't mind, please come again and listen to this poor Bard's songs. I'll prepare a song just for you.";
		next;
		mes "[Kino Kitty]";
		mes "Don't worry about my health. I'm a Bard at heart, and I can't help but sing for my audience.";
		next;
		mes "[Kino Kitty]";
		mes "Also, I'd like to thank you for helping Errende. He may be a little whiny, but he's a good person.";
		close;

	} else if (gef_bard_q == 11) {
		mes "[Kino Kitty]";
		mes "A silver seal...?";
		mes "Well, welcome to the wanderer's club. I must say, the silver crescent suits you.";
		next;
		mes "[Kino Kitty]";
		mes "If you have that seal, Mr. Sketzi will permit you to read his books full of Norse songs.";
		close;

	} else if (gef_bard_q > 19 && gef_bard_q < 28) {
		mes "[Kino Kitty]";
		mes "What business";
		mes "do you have with me,";
		mes "my friend?";
		next;
		if (gef_bard_q == 24) {
			mes "^3355FFYou gave candy to the crying little girl, and relate the problem with the lyrics to Kino Kitty.^000000";
			next;
			mes "[Kino Kitty]";
			mes "Hmm...";
			mes "I'm insulted that Errende does not like the words I wrote for 'At One, I Fall in Love.' But, I suppose he is a romantic at heart.";
			next;
			mes "[" + @name$ + "]";
			mes "So...";
			mes "Do you know the";
			mes "original words";
			mes "for the song?";
			next;
			mes "[Kino Kitty]";
			mes "The original lyrics were horrible. There's not enough room in my mind to remember so romantic nonsense. ^333333*Cries*...^000000";
			next;
			mes "[Kino Kitty]";
			mes "Romance is for foolish dreamers!";
			mes "I refuse to sing or even remember such vapid lyrics!";
			next;
			mes "[Jorti]";
			mes "U-uncle Kino";
			mes "You're scaring me.";
			mes "Please don't yell!";
			mes "It makes me want";
			mes "to cry...";
			next;
			mes "[Kino Kitty]";
			mes "Oh...";
			mes "I'm sorry, princess.";
			mes "It won't happen again.";
			mes "Your Unclde Kino will";
			mes "try to be good";
			mes "from now on.";
			next;
			mes "[Kino Kitty]";
			mes "*Sigh...*";
			mes "Alright, listen.";
			next;
			mes "[Kino Kitty]";
			mes "You'll need an old book of edda lyrics for the original words to the song. All the new books no longer contain the original version.";
			next;
			mes "[Kino Kitty]";
			mes "I wonder...";
			mes "How did Errende happen to know the original lyrics? In any case, I'm sorry about all this. I suppose I'm a little jaded.";
			next;
			mes "[Kino Kitty]";
			mes "You know, maybe you should go to Juno. There's a small book store on the book street, and you can probably find the song in that store.";
			next;
			mes "[Kino Kitty]";
			mes "^333333^333333*Cough Cough*^000000^000000";
			mes "Wh-why do I have to suffer? Are my final days as a Bard on this earth soon approaching? I feel so pathetic...";
			gef_bard_q = 10;
			close;
		} else {
			switch(select("Tell me a story.", "Sing a song.", "Nothing.")) {
			case 1:
				mes "[Kino Kitty]";
				mes "A story? Mmmm...";
				mes "My throat hurts,";
				mes "but if you listen,";
				mes "I will do my best";
				mes "to relate a tale.";
				next;
				mes "[Kino Kitty]";
				mes "Do you know how Baldur, son of Odin, died? There is a story involving his obsessive mother";
				mes "and the wicked god, Loki.";
				next;
				mes "[Kino Kitty]";
				mes "One night, Baldur had a nightmare where he was cast into the pit of Hell. Upon hearing of this, Baldur's mother Frigg was stricken with panic.";
				next;
				mes "[Kino Kitty]";
				mes "To prevent tragedy from befalling her son, she made every single object on earth to agree to an oath where they would not harm Baldur.";
				next;
				mes "[Kino Kitty]";
				mes "^333333*Cough Cough*^000000 And they all got together to ^333333*Wheeeeze*^000000 celebr--^333333^333333*Cough*^000000^000000...";
				next;
				mes "[Jorti]";
				mes "Uncle Kino...?";
				mes "Are you okay?....?";
				next;
				mes "[Kino Kitty]";
				mes "...Hah...";
				mes "...Hah...";
				mes "I'm sorry, but I don't think I can speak for much longer.";
				close;
			case 2:
				mes "[Kino Kitty]";
				mes "Sorry, but I don't feel like singing at the moment. I hope you understand. I want to sing the last song of my life for Jorti...";
				close;
			case 3:
				mes "[Kino Kitty]";
				mes "You have no";
				mes "business with me?";
				mes "What a shame.";
				close;
			}
		}

	} else {
		mes "^D43D1AEven in the sandy wind,";
		mes "Even in the pouring rain,";
		mes "Even in the falling snow,";
		mes "I know it's you~^000000";
		next;
		mes "[Mysterious Bard]";
		mes "...";
		next;
		mes "[Mysterious Bard]";
		mes "...";
		mes "......";
		next;
		mes "[Mysterious Bard]";
		mes "My apologies,";
		mes "^333333*Cough*^000000 but this is";
		mes "a private performance";
		mes "for my little";
		mes "princess.";
		next;

		if(select("Um, was that a love song?", "I'm sorry for interrupting you.")==1) {
			mes "[Mysterious Bard]";
			mes "A...";
			mes "Love song?!";
			next;
			mes "[Mysterious Bard]";
			mes "Love songs are for fools who have never known true love, or never had their hearts broken. Happy songs are fine, but I refuse to sing nonsense!";
			next;
			mes "[Jorti]";
			mes "Waaaah~!";
			mes "Uncle Kino,";
			mes "I'm scared!";
			mes "I wanna see";
			mes "my mommy...!";
			mes "*Cries*";
			next;
			mes "[Mysterious Bard]";
			mes "There, there,";
			mes "princess. Don't cry.";
			mes "Everything's okay.";
			next;
			mes "[Mysterious Bard]";
			if (BaseClass == Job_Swordman) {
				mes "There's no reason to be scared. The scary people with swords only use them on monsters, okay?";
			} else if (BaseClass == Job_Acolyte) {
				mes "You don't need to be scared, that person is a servant of God, okay?";
			} else if (Class == Job_Thief || Class == Job_Rogue) {
				mes "There's no reason to be afraid of this riffraff, your Uncle Kino is here, okay?";
			} else if (BaseClass == Job_Assassin) {
				mes "There's no reason to be afraid. I know that person looks scary, but you're a good girl, so you'll be okay.";
			} else if (BaseClass == Job_Blacksmith) {
				mes "There's no reason to be scared, honey. It's just a Blacksmith.";
			} else {
				mes "There's no reason to be scared. See...? That person won't hurt you.";
			}
			next;
			mes "[" + @name$ + "]";
			mes "Um...";
			mes "^333333(Wasn't the little girl";
			mes "scared by your outburst...?)^000000";
			close;
		} else {
			if (gef_bard_q == 2) {
				mes "[Mysterious Bard]";
				mes "You're such a kind, young person. I will remember your name. I would much appreciate it if you would also remember mine.";
				next;
				mes "[Mysterious Bard]";
				mes "I am known as Kino Kitty. I am a wandering poet who wishes to rediscover wishes and dreams.";
				next;
				mes "[Kino Kitty]";
				mes "When next we meet, I will tell you what I have heard and experienced. That is, I am willing to spend my time with you.";
				gef_bard_q = 22;
				close;

			} else if (gef_bard_q == 3) {
				mes "[Mysterious Bard]";
				mes "You're such a kind, young person. I will remember your name. I would much appreciate it if you would also remember mine.";
				next;
				mes "[Mysterious Bard]";
				mes "I am known as Kino Kitty. I am a wandering poet who wishes to rediscover wishes and dreams.";
				next;
				mes "[Kino Kitty]";
				mes "When next we meet, I will tell you what I have heard and experienced. That is, I am willing to spend my time with you.";
				gef_bard_q = 23;
				close;

			} else if (gef_bard_q == 4) {
				mes "[Mysterious Bard]";
				mes "Oh, you're most admirable. You truly do respect Bards, don't you?";
				next;
				mes "[Mysterious Bard]";
				mes "Now that I think about it, are you look for anything, or is there a reason you wish to speak to me?";
				next;

				if(select("I'm looking for Kino Kitty...", "Nothing, really.")==1) {
					mes "[Kino Kitty]";
					mes "How do you";
					mes "know my name?";
					mes "Ah, I'm flattered";
					mes "that my reputation";
					mes "precedes me.";
					next;
					mes "^3355FFYou give some candy to the crying girl and relate your tale regarding the lyrics for the song 'At One, I Fall in Love.'^000000";
					next;
					mes "[Kino Kitty]";
					mes "Hmm...";
					mes "I'm insulted that Errende does not like the words I wrote for 'At One, I Fall in Love.' But, I suppose he is a romantic at heart.";
					next;
					mes "[" + @name$ + "]";
					mes "So...";
					mes "Do you know the";
					mes "original words";
					mes "for the song?";
					next;
					mes "[Kino Kitty]";
					mes "The original lyrics were horrible. There's not enough room in my mind to remember so romantic nonsense. ^333333*Cries*...^000000";
					next;
					mes "[Kino Kitty]";
					mes "Romance is for foolish dreamers! I refuse to sing or even remember such vapid lyrics!";
					next;
					mes "[Jorti]";
					mes "U-uncle Kino";
					mes "You're scaring me.";
					mes "Please don't yell!";
					mes "It makes me want";
					mes "to cry...";
					next;
					mes "[Kino Kitty]";
					mes "Oh...";
					mes "I'm sorry, princess. It won't happen again. Your Unclde Kino will try to be good from now on.";
					next;
					mes "[Kino Kitty]";
					mes "*Sigh...*";
					mes "Alright, listen.";
					next;
					mes "[Kino Kitty]";
					mes "You'll need an old book of edda lyrics for the original words to the song. All the new books no longer contain the original version.";
					next;
					mes "[Kino Kitty]";
					mes "I wonder...";
					mes "How did Errende happen to know the original lyrics? In any case, I'm sorry about all this. I supposed I'm a little jaded.";
					next;
					mes "[Kino Kitty]";
					mes "You know, maybe you should go to Juno. There's a small book store on the book street, and you can probably find the song in that store.";
					next;
					mes "[Kino Kitty]";
					mes "^333333^333333*Cough Cough*^000000^000000";
					mes "Wh-why do I have to suffer? Are my final days as a Bard on this earth soon approaching? I feel so pathetic...";
					gef_bard_q = 10;
					close;

				} else {
					mes "[Mysterious Bard]";
					mes "Really now?";
					mes "That's strange.";
					mes "You adventurers are always one some kind of adventure, aren't you? I mean, that's the very definition of the word.";
					close;
				}

			} else {
				if (Sex == SEX_MALE) {
					mes "[Kino Kitty]";
					mes "You're such a nice young man. I will remember your name. I would much appreciate it if you would also remember mine.";
					next;
					mes "[Mysterious Bard]";
					mes "I am known as Kino Kitty. I am a wandering poet who wishes to rediscover wishes and dreams.";
					next;
					mes "[Kino Kitty]";
					mes "When next we meet, I will tell you what I have heard and experienced. That is, I am willing to spend my time with you.";
					gef_bard_q = 20;
					close;

				} else {
					mes "[Mysterious Bard]";
					mes "Ah, it is a privilege to meet a noble woman such as yourself. By your leave, I shall give you my name.";
					next;
					mes "[Mysterious Bard]";
					mes "My lady, fair as wisteria, whose beauty rivals that of the goddess Freya, let me introduce myself as the poor poet who wanders the earth, Kino Kitty. I hope you remember me.";
					gef_bard_q = 20;
					close;
				}
			}
		}
	}
}

morocc,132,111,3	script	Little Girl#Jorti	4_F_KID2,{
	if (gef_bard_q > 9 && gef_bard_q < 30) {
		mes "[Jorti]";
		mes "Jorti tries not to cry anymore because it hurts Uncle Kino and then he coughs up more blood.";
		next;
		mes "[Jorti]";
		mes "I miss my mommy a lot, but I'm worried, it makes Uncle Kino worry a lot too.";
		next;
		mes "[Jorti]";
		mes "I don't see my mommy and daddy aren't here anymore, and I don't want Uncle Jorti to go away either.";
		next;
		mes "[Jorti]";
		mes "Um, I don't remember my daddy, but mommy lives far away, somewhere near the sky. That's what Uncle Kino says.";
		next;
		mes "[Jorti]";
		mes "U-Uncle Kino says we can't go see her yet because there are no flying boats yet...";
		close;

	} else if (gef_bard_q == 30) {
		mes "[Jorti]";
		mes "La la la...";
		mes "La la la...";
		mes "Jorti doesn't cry anymore!";
		mes "Jorti is going to enjoy Uncle Kino's songs and stories for as long as she can!";
		next;
		mes "[Jorti]";
		mes "The songs Uncle Kino sings are ones that my mommy used to sing. She's not here, but maybe we can visit her someday!";
		next;
		mes "[Jorti]";
		mes "Hey... The shiny black cross on your hand means you're a friend of Uncle Kino's. So that means, you're my friend too!";
		close;

	} else if (gef_bard_q > 30) {
		mes "[Jorti]";
		mes "Jorti tries not to cry anymore because it hurts Uncle Kino and then he coughs up more blood.";
		mes "I miss my mommy a lot, but when I'm worried, it makes Uncle Kino worry a lot too.";
		next;
		mes "[Jorti]";
		mes "My mommy and daddy aren't here anymore, and I don't want Uncle Jorti to go away either.";
		next;
		mes "[Jorti]";
		mes "Um, I don't remember my daddy, but mommy lives far away, somewhere near the sky. That's what Uncle Kino says.";
		next;
		mes "[Jorti]";
		mes "U-Uncle Kino says we can't go see her yet because there are no flying boats yet...";
		close;

	} else {
		mes "[Mysterious Bard]";
		mes "Even in the sandy wind,";
		mes "Even in the pouring rain,";
		mes "Even in the falling snow,";
		mes "I know it's--";
		mes "........";
		next;
		mes "[Jorti]";
		mes "Uncle...?";
		mes "Are you okay?";
		next;
		mes "[Mysterious Bard]";
		mes "Hmmm...";
		mes "I'm sorry, but this is a private performance. This song is only intended for my little Jorti.";
		close;
	}
}

yuno_in01,172,100,3	script	Old Man#bq1	4_M_05,{
	if (gef_bard_q > 11 && gef_bard_q < 20) {
		mes "[Sketzi Bundin]";
		mes "Well, did you find what you were seeking for? Although all we have are old, dusty books, I hope you come by to visit. And please give my regards to your Bard friends.";
		close;

	} else if (gef_bard_q == 30) {
		mes "[Sketzi Bundin]";
		mes "Interesting...";
		mes "You have a black cross seal on your hand. Is Kitty still around? I'm glad to see he's still alive. If you're a friend of his, then you are most welcome here.";
		close;

	} else if (gef_bard_q == 31) {
		mes "[Sketzi Bundin]";
		mes "Well, well, well. You're here again. So, what kind of books are you seeking today? Of course, all we have are old, dusty tomes full of eddas. Hahahaha~";
		close;

	} else if (gef_bard_q == 11) {
		mes "[Sketzi Bundin]";
		mes "Welcome.";
		mes "You must be looking for something special. Well, we have almost every Norse poem, or 'edda.' This is the only place where you can find those kinds of old songs.";
		next;
		mes "[Sketzi Bundin]";
		mes "However, I cannot show these fragile books to just anybody. For the sake of preservation, I can only show these works to preferred customers.";
		next;

		if(select("Show him your left hand.", "Show him your right hand.")==1) {
			mes "[Sketzi Bundin]";
			mes "Ah~! You must be the friend of a high ranking Bard! I see, I see. You must be a friend of Minty Errende.";
			next;
			mes "[Sketzi Bundin]";
			mes "So, what is it that you're looking for? Well, I suppose I don't really need to ask that. Hahahaha~";
			next;
			mes "[Sketzi Bundin]";
			mes "Please...";
			mes "Take your time.";
			mes "I hope you find";
			mes "what you're";
			mes "looking for.";
			gef_bard_q = 12;
			close;

		} else {
			mes "[Sketzi Bundin]";
			mes "Let's see... Okay.";
			mes "Well, your heartbeat is a little faster than normal. You might want to look into that. You know, for the sake of your health?";
			next;
			mes "[Sketzi Bundin]";
			mes "You're not looking for any medical or health related books, are you? I'm sorry, but we don't carry any of those.";
			close;
		}
	} else {
		mes "[Sketzi Bundin]";
		mes "Welcome.";
		mes "You must be looking for something special and rare. But we only carry one kind of book around here.";
		next;
		mes "[Sketzi Bundin]";
		mes "If you're looking for monster information, why don't you check the Pronrera Library or the Monster Museum here in Juno?";
		close;
	}
}

yuno_in01,163,101,0	script	Old Book#bq	HIDDEN_NPC,{
	@name$ = strcharinfo(PC_NAME);
	if ((gef_bard_q > 11) && (gef_bard_q < 14)) {
		if (!rand(5)) {
			mes "^3355FFYou opened the book. There's a crisp brittleness to the pages, and the letters are faded and barely readable. You can't even identify the author's name.^000000";
			next;
			mes "[Collection of Eddas]";
			mes "This is a love song. Everyone suffers from unrequited love at least once in their lifetime.";
			next;
			mes "[Collection of Eddas]";
			mes "At One, I fall in love.";
			mes "At Two, you give me your smile.";
			mes "At Three, I adore your touch.";
			mes "At Four, a tender kiss...";
			next;
			mes "[Collection of Eddas]";
			mes "At Five, we change our minds.";
			mes "A petal scatters through the air.";
			mes "At Six, I fall in love~";
			mes "At Seven, you fall in love...";
			next;
			mes "[" + @name$ + "]";
			mes "I think this is it...!";
			mes "I better write it down.";
			next;
			mes "[Collection of Eddas]";
			mes "At Eight, we're both in love.";
			mes "At Nine, you know my heart.";
			mes "At Ten, I know you've";
			mes "been waiting for me.";
			next;
			mes "[Collection of Eddas]";
			mes "At Eleven, a precious";
			mes "Whisper: 'Will you marry me?'";
			mes "At Twelve, our two hearts";
			mes "Are one. 12 petals, our";
			mes "Love finally blossoms.";
			next;
			mes "^3355FFYou copy down the final lines, and keep them in a note inside your pocket.";
			gef_bard_q = 15;
			close;

		} else {
			mes "[" + @name$ + "]";
			mes "*Sigh* I can barely read this book. Maybe I should try flipping through another one.";
			close;
		}

	} else {
		mes "[Sketzi Bundin]";
		mes "I'm sorry, but that book is too fragile for handling. Only special customers can peruse these books.";
		close;
	}
}


yuno_in01,173,96,0	script	Luke's Songs Vol.1	HIDDEN_NPC,{
	if (gef_bard_q > 11) {
		mes "[Preface]";
		mes "I, Luke of Izlude, greatest of Bards in my time, leave the lyrics of my essential songs for posterity.";
		mes " ";
		mes "Contents";
		next;

		switch(select("Wedding Song", "Life is a Water Mill", "We")) {

		case 1:
			mes "[Wedding Song]";
			mes "Prontera Sanctuary";
			mes "Is where all are heading";
			mes "To celebrate your union";
			mes "At your most happy wedding.";
			next;
			mes "[Wedding Song]";
			mes "With joy I strum my Lute";
			mes "As that is my trade";
			mes "To bring cheerful song";
			mes "To your wedding parade.";
			next;
			mes "[Wedding Song]";
			mes "For my songs, pay me";
			mes "Not Zeny or Gold,";
			mes "But the smile of the";
			mes "Bride, if I may";
			mes "be so bold.";
			next;
			mes "[Wedding Song]";
			mes "The glistening eyes";
			mes "Of a beautiful lass";
			mes "Those lustrous locks";
			mes "And that firm, supple--";
			next;
			mes "[Wedding Song]";
			mes "Forgive me, groom!";
			mes "But she's just so beautiful!";
			mes "May your union be blessed!";
			mes "Er, may your wife be dutiful.";
			next;
			mes "[Luke's Note]";
			mes "This song is about a certain Bard who was invited to a wedding ceremony and could not resist the bride's beauty. He ended up singing a song of seduction.";
			next;
			mes "[Luke's Note]";
			mes "The lyrics, of course, are fictional, and are in no way anecdotal.";
			close;
		case 2:
			mes "[Life is a Water Mill]";
			mes "I chased after fame.";
			mes "It eluded me.";
			mes "I ran after happiness";
			mes "But never caught it.";
			next;
			mes "[Life is a Water Mill]";
			mes "But tomorrow will still";
			mes "Be there, I'm sure.";
			mes "Like the Water Mill";
			mes "In Al De Baran";
			mes "Which turns as";
			mes "Life goes on.";
			next;
			mes "[Life is a Water Mill]";
			mes "Cheer up! Life goes on.";
			mes "As surely as the Water";
			mes "Mill turns, tomorrow";
			mes "Will come.";
			next;
			mes "[Luke's Note]";
			mes "This song was";
			mes "made to give comfort";
			mes "to people in despair.";
			close;
		case 3:
			mes "[We]";
			mes "A good Bard sings";
			mes "To please his listener.";
			mes "So do not expect a sad song";
			mes "That deepens your anguish.";
			next;
			mes "[We]";
			mes "A good Dancer dances";
			mes "To please her audience.";
			mes "Shall we dance together?";
			mes "Just hold my hands.";
			mes "La la la~ La la la~";
			next;
			mes "[We]";
			mes "Towner: 'Then why the hell do you guys make discords sometimes?!'";
			mes "Bard: 'Well... Nobody's perfect!";
			next;
			mes "[Luke's Note]";
			mes "This song is good to be sung during festivals, as the intentional discord encourages the audience to participate. Aside from that, this song is pretty meaningless.";
			close;
		}

	} else {
		mes "[Sketzi Bundin]";
		mes "I'm sorry, but that book is not available for public exhibition.";
		close;
	}
}

yuno_in01,173,94,0	script	Battle Songs	HIDDEN_NPC,{
	if (gef_bard_q > 11) {
		mes "[Drumming in the battlefield]";
		mes "This song was written to give courage to soldiers on the battlefield.";
		next;
		mes "[Drumming in the battlefield]";
		mes "The sounds of galloping";
		mes "Echo in the distance.";
		mes "A cloud of hazy dust";
		next;
		mes "[Drumming in the battlefield]";
		mes "Fills the setting sun.";
		mes "Thousands of eyes open";
		mes "Torches on the castle";
		mes "Flare like thousands of Ifrits.";
		next;
		mes "[Drumming in the battlefield]";
		mes "Hear the throbbing of my heart,";
		mes "The blood flowing in my veins.";
		mes "Feeling the heaviness of my armor.";
		mes "The enemy has appeared before us.";
		next;
		mes "[Drumming in the battlefield]";
		mes "Beat the drums hard, harder!";
		mes "Courage, soldiers, march forward!";
		mes "Shout loud, soldiers, louder!";
		mes "Today will never come back!";
		next;
		mes "[Drumming in the battlefield]";
		mes "Stun the sky";
		mes "Provoke the earth,";
		mes "I feel my heartbeat again.";
		mes "Blow the bugle to";
		mes "Sway the fortress.";
		mes "Today will never come back!";
		close;

	} else {
		mes "[Sketzi Bundin]";
		mes "I'm sorry, but that book is not available for public exhibition.";
		close;
	}
}


yuno_in01,173,92,0	script	Apple of Idun	HIDDEN_NPC,{
	if (gef_bard_q > 11) {
		mes "[Apple of Idun]";
		mes "This song praises the golden apples of the goddess Idun. These were the source of the God's power, as it prevented them from growing old.";
		next;
		mes "[Apple of Idun]";
		mes "Every god never grows old";
		mes "Because of beautiful";
		mes "Goddess, Idun.";
		mes "Keeper of the apples of youth";
		mes "Goddess of immortality.";
		next;
		mes "[Apple of Idun]";
		mes "Every god never grows old.";
		mes "Idun, the wife of Bragi,";
		mes "Idun, Odin's daughter in law~";
		mes "The apples she keeps";
		mes "In her basket.";
		next;
		mes "[Apple of Idun]";
		mes "Without Idun,";
		mes "Every god would";
		mes "have succumbed to age.";
		next;
		mes "[Apple of Idun]";
		mes "Even Thor, the strongest of gods,";
		mes "would grow frail, Megingjard would";
		mes "slip from his waist, and Mjolnir";
		mes "would never fly again.";
		next;
		mes "[Apple of Idun]";
		mes "Without Idun,";
		mes "Every god would";
		mes "have succumbed to age.";
		mes "Loki was careless once,";
		mes "and made her lost to the gods.";
		mes "Loki was forced to get her back.";
		next;
		mes "[Apple of Idun]";
		mes "My goddess stands";
		mes "In the field of Asgard";
		mes "She hands me fruit from heaven.";
		mes "You will be loved by every god...";
		mes "You will be blessed";
		mes "By every god...";
		next;
		mes "[Apple of Idun]";
		mes "If you share the";
		mes "Apple of youth with me";
		mes "Even a bite of it with";
		mes "This poor poet.";
		next;
		mes "[Apple of Idun]";
		mes "You will be loved by every god...";
		mes "You will be blessed";
		mes "By every god...";
		close;

	} else {
		mes "[Sketzi Bundin]";
		mes "I'm sorry, but that book is not available for public exhibition.";
		close;
	}
}

payon,181,172,3	script	Bard#4	1_M_BARD,{
	@name$ = strcharinfo(PC_NAME);
	if (gef_bard_q == 2 || gef_bard_q == 22) {
		mes "[Gunther Doubleharmony]";
		mes "Hahaha~!";
		mes "Listen, listen!";
		next;
		mes "[Gunther Doubleharmony]";
		mes "I was told this song from one of my friends about this Merchant who lives in Payon and everyone loves this song, especially because I'm singing it and you know that...";
		next;
		mes "[" + @name$ + "]";
		mes "Excuse me.";
		mes "Are you...";
		mes "Gunther Doubleharmony?";
		next;
		mes "[Gunther Doubleharmony]";
		mes "...the Merchant was so poor he didn't even have--eh? Oh yeah, right. That's me. What's up?";
		next;
		mes "^3355FFYou explain that you have come to him, seeking lost song lyrics.^000000";
		next;
		mes "[Gunther Doubleharmony]";
		mes "Ahhhhhhh, I see.";
		mes "Now, what was the";
		mes "name of the song again?";
		next;
		input .@inputstr$;
		if (.@inputstr$ == "At One, I Fall in Love") {
			mes "[Gunther Doubleharmony]";
			mes "Ah~ that song...?";
			mes "By the way, who asked you";
			mes "to find out about the song?";
			next;
			input .@inputstr$;
			if (.@inputstr$ == "Minty Errende") {
				mes "[Gunther Doubleharmony]";
				mes "Yes, that's my friend! Minty Errende! We used to so close to each other, so I'll write every word of the song for my friend Minty Errende, so turn around please!";
				next;
				mes "^3355FFGunther furiously scribbled something upon your back.^000000";
				next;
				mes "[Gunther Doubleharmony]";
				mes "There you go! Now you can go back to Minty Errende and show him your back and he will see what I wrote and then remember the lyrics!";
				if (gef_bard_q == 2) gef_bard_q = 3;
				if (gef_bard_q == 22) gef_bard_q = 23;
				close;

			} else {
				mes "[Gunther Doubleharmony]";
				mes "No no no, I don't know anyone with that name, so you better go and check the name of the person asking again, okay?";
				close;
			}

		} else {
			mes "[Gunther Doubleharmony]";
			mes "No no no no, I don't know any song with that title, it might not even exist, so you should go and check the name of the song again and tell me, okay?";
			close;
		}

	} else if (gef_bard_q == 6 || gef_bard_q == 26) {
		mes "[Gunther Doubleharmony]";
		mes "You came back again!";
		mes "Huh, the song I wrote on your back? Hold on, hold on, let me think let me--ah, right, I got it!";
		next;
		mes "[Gunther Doubleharmony]";
		mes "The words I wrote down on your back were written by Mr. Kitty, my idol, my hero! That song is the art of ^228B22Kino Kitty^000000!";
		next;
		mes "[Gunther Doubleharmony]";
		mes "I wish that someday I could be as great a Bard as him!";
		close;

	} else {
		mes "[Gunther Doubleharmony]";
		mes "Hahaha~!";
		mes "Listen, listen!";
		next;
		mes "[Gunther Doubleharmony]";
		mes "I was told this song from one of my friends about this Merchant who lives in Payon and everyone loves this song, especially because I'm singing it and you know that...";
		next;
		mes "[Gunther Doubleharmony]";
		mes "Oh, right...!";
		mes "Do you wanna listen";
		mes "to my song or a story?";
		mes "I know you want to!";
		mes "Right, right?";
		next;

		if(select("Show some interest.", "Ignore him.")==1) {
			mes "[Gunther Doubleharmony]";
			mes "Yay~! I knew it!";
			mes "So you wanna hear";
			mes "a song or a story?";
			next;
			switch(select("A song", "A story", "Maybe some other time")) {
			case 1:
				switch(rand(1,3)) {
				case 1:
					mes "[Gunther Doubleharmony]";
					mes "Gunther sings!";
					mes "Gunther dances!";
					mes "The tile of this song is~";
					mes "'The Rich Mr. Kim~!'";
					next;
					mes "^228B22Merchant of Payon";
					mes "So poooooooor~";
					mes "No money for armor";
					mes "No money to make.";
					next;
					mes "^228B22Sold the";
					mes "Cotton Shirt";
					mes "Off his back";
					mes "No pity he'll take.^000000";
					next;
					mes "^228B22First he only sold Red Pots";
					mes "At first, he only sold red pots.";
					mes "Then he moved up to Carrots, whoohoo~";
					mes "He could afford new armor";
					mes "and even wear it,";
					mes "whoohoo~^000000";
					next;
					mes "^228B22But one day, he was scammed";
					mes "Scammed by a wicked guild.";
					mes "Made poor once again.";
					mes "He decided to go to Ant Hell";
					mes "Right there";
					mes "And right then.";
					next;
					mes "^228B22Bats, Dwarves, Eggs, Ants!";
					mes "He battled them all~";
					mes "Worm Peelings, Jellopy!";
					mes "He gathered loot great and small.";
					next;
					mes "^228B22Then the glorious day came";
					mes "When he found a valuable card";
					mes "That'd bring great wealth to his naaaame~^000000";
					next;
					mes "^228B22But he kept it dear to him";
					mes "To remember his times of";
					mes "working so hard.";
					mes "He never sold it, never sold";
					mes "his precious card~^000000";
					next;
					mes "[Gunther Doubleharmony]";
					mes "That's a very old story about rich Mr. Kim, and his rise from rags to riches to rags to riches. Is it true or is it fiction? Oh, please don't ask me! I've no clue!";
					close;

				case 2:
					mes "[Gunther Doubleharmony]";
					mes "*Ahem*";
					mes "Gunther sings ";
					mes "of Yggdrasil~";
					next;
					mes "^228B22Evergreen Yggdrasil~";
					mes "Giant ashen tree";
					mes "reaching for the sky.";
					mes "Crystal, morning dew";
					mes "From its leaves";
					mes "Formed Urd's Pond.^000000";
					next;
					mes "^228B22Three wise girls.";
					mes "Seated beneath its boughs.";
					mes "Urd of the past,";
					mes "Belldandy of the present";
					mes "Skuld the future.^000000";
					next;
					mes "^228B22Spinning, weaving";
					mes "Threads of destiny.";
					mes "Evergreen Yggdrasil~";
					mes "Giant ashen tree";
					mes "reaching for the sky.";
					mes "Its roots soaked with tears.^000000";
					next;
					mes "^228B22Death in Hvergelmir.";
					mes "An evil dragon";
					mes "Burning its roots";
					mes "With eternal flame.";
					mes "The evil dragon Nidhogg";
					mes "Living between Yggdrasil";
					mes "and Niffheim.^000000";
					next;
					mes "^228B22Evergreen Yggdrasil~";
					mes "Giant ashen tree";
					mes "reaching for the sky.";
					mes "Wisdom in its roots";
					mes "Roots reaching";
					mes "Mimir's pond.^000000";
					next;
					mes "^228B22Guarded by a wise giant.";
					mes "Odin sacrificed one";
					mes "of his eyes for the wisdom.";
					mes "Heimdall's horn hidden";
					mes "In Yggdrasil's roots";
					mes "Will sound one last time";
					mes "Signaling Ragnarok.^000000";
					next;
					mes "[Gunther Doubleharmony]";
					mes "This is a very old story...";
					mes "Is it truth or fiction? But please don't ask me, I have no idea~!";
					close;

				case 3:
					mes "[Gunther Doubleharmony]";
					mes "I will sing one of Luke's songs, you know, Luke, one of the greatest Bards of his time? But I changed the words a little bit.";
					next;
					mes "^228B22I found it in a drawer.";
					mes "Old, worn letters";
					mes "Forming elaborate words.";
					mes "Sincere reflection";
					mes "Of a sincere mind.^000000";
					next;
					mes "^228B22I found it in a drawer.";
					mes "Was I really like that once?";
					mes "Was I really that childish?";
					mes "My memories are tarnished.";
					next;
					mes "^228B22I found it in a drawer.";
					mes "Love I had forgotten.";
					mes "She never got this letter.";
					mes "But both of us were too shy.";
					next;
					mes "^228B22I found it in a drawer.";
					mes "Love I had forgotten.";
					mes "I never gave her this letter.";
					mes "But both of us were too proud.";
					next;
					mes "[Gunther Doubleharmony]";
					mes "Do you have anyone in mind? Do you? If you ever write a love letter, you must send it and express yourself.";
					next;
					mes "[Gunther Doubleharmony]";
					mes "If you've written love letters that you'll never send, throw them away. Throw your goddamn pride away.";
					close;
				}

			case 2:
				switch(rand(1,3)) {
				case 1:
					mes "[Gunther Doubleharmony]";
					mes "Um, have you ever";
					mes "tasted Comodo cheese?";
					next;
					mes "[Gunther Doubleharmony]";
					mes "You can only taste it in Comodo, but you need to have a good strong stomach to digest it. Oh! And the cheese has a secret!";
					next;
					mes "[Gunther Doubleharmony]";
					mes "You ^228B22might^000000 be invulnerable to the power of the doomed swords, which come from the other world, if you eat it!";
					next;
					mes "[Gunther Doubleharmony]";
					mes "Why don't you go taste it if you haven't yet? I tried to taste it once. It was kind of yummy, but then I fainted. Hahahaha~!";
					close;

				case 2:
					mes "[Gunther Doubleharmony]";
					mes "I was passing Prontera the other day at the place where it used to be the Swordman training ground.";
					next;
					mes "[Gunther Doubleharmony]";
					mes "I saw some kid training really really hard and he didn't notice me watching him, so I guess he was really really serious!";
					next;
					mes "[Gunther Doubleharmony]";
					mes "He looked like he wanted to be a professional Swordman, but he was also giving his gear away to other Novices.";
					next;
					mes "[Gunther Doubleharmony]";
					mes "I got bored watching him do the same thing over and over and over again, but I think the Monster Research Organization would like him if I introduced him.";
					close;

				case 3:
					mes "[Gunther Doubleharmony]";
					mes "Have you ever been in Lutie,";
					mes "land of year round snow?";
					next;
					mes "[Gunther Doubleharmony]";
					mes "There is a snowman named";
					mes "SnowySnow and if you met him, you'd know all sorts of things about him like he can talk! It's so strange and mysterious~!";
					next;
					mes "[Gunther Doubleharmony]";
					mes "He has a mysterious bag where endless gifts come out, and he's got a mysterious past involving some colder town and something about a nasty witch.";
					next;
					mes "[Gunther Doubleharmony]";
					mes "But it's okay because he was rescued by some Alchemist and came back to life, but you should go to Lutie if you wanna know more about him, okay?";
					close;
				}
			case 3:
				mes "[Gunther Doubleharmony]";
				mes "You're gonna leave right now and not even listen to me a little bit? Okay, I'm cool, but promise you'll come back and listen to just one of my songs, okay?";
				close;
			}
		} else {
			mes "[" + @name$ + "]";
			mes "...";
			next;
			mes "[Gunther Doubleharmony]";
			mes "Wow, you're ignoring me, huh? Alright, that's fine by me! Unless you have some kind of problem where you can't talk, then I'm really really sorry.";
			close;
		}

	}

}

yuno_in04,20,123,7	script	Representative#bq	4_F_SISTER,{
//set @check = GetGlobalVar "040708_god2"
	mes "[Marlin Putiur]";
	if (god_brising == 3) {
		mes "Welcome to the";
		mes "Monster Research";
		mes "Organization.";
		next;
		mes "[Marlin Putiur]";
		mes "We are researching monsters based upon information from adventurers in order to efficiently cope with monsters out in the wild.";
		next;
		mes "[Marlin Putiur]";
		mes "We're accepting any kind of information related to monsters,";
		mes "so if you have any news or info, please don't hesitate to submit it to me.";
		next;
		mes "[Marlin Putiur]";
		mes "You can use the report documentation form in";
		mes "this room at your convenience.";
		next;
		mes "[Marlin Putiur]";
		mes "Eh...?";
		mes "Did you just say";
		mes "you're looking for";
		mes "someone? Well...";
		next;
		mes "[Marlin Putiur]";
		mes "Well, if he's a registered";
		mes "member of this organization,";
		mes "I can help you.";
		next;
		mes "[Marlin Putiur]";
		mes "What was the name?";
		mes "Hermite Charles...?";
		next;
		mes "[Marlin Putiur]";
		mes "Oh, I found him.";
		mes "Errr, but he didn't submit all of the required information when he applied for membership...";
		next;
		mes "[Marlin Putiur]";
		mes "Oh. He's a Rogue.";
		mes "Well, that explains everything. Anyway, did you want to see all";
		mes "the information we have?";
		next;
		mes "^3355FFMarlin shows you";
		mes "the membership";
		mes "application card.^000000";
		next;
		mes "[Membership Card]";
		mes "Name: Hermite Charles";
		mes "Job: Rogue";
		mes "Sex: Rogue";
		mes "Address: Yo Mama Street, Prontera";
		next;
		mes "[Marlin Putiur]";
		mes "Unfortunately, we don't have any more information. But I hope this will be helpful to you in some way.";
		next;
		mes "[Marlin Putiur]";
		mes "Still, it may be a good idea to visit the Rogue Guild. Perhaps";
		mes "they can help you.";
		close;
	}

	mes "Welcome to the";
	mes "Monster Research";
	mes "Organization.";
	next;
	mes "[Marlin Putiur]";
	mes "We are researching monsters based on information from adventurers in order to efficiently cope with monsters out in the wild.";
	next;
	mes "[Marlin Putiur]";
	mes "We're accepting any kind of information related to monsters, so if you have any news or info, please don't hesitate to submit it to me.";
	next;
	mes "[Marlin Putiur]";
	mes "You can use the report documentation form in this room at your convenience.";
	if (gef_bard_q == 4 || gef_bard_q == 24) {
		next;
		mes "[Marlin Putiur]";
		mes "Hmmm?";
		mes "Adventurers of this organization? Ah, you say you're looking for a Bard?";
		next;
		mes "[Marlin Putuir]";
		mes "Yes, we have a few Bard members who regularly send us information related to monsters.";
		next;
		mes "[Marlin Putiur]";
		mes "I also hear the Bards have been helping scholars instill bulletin boards in fields which indicate the location for new adventurers. Would you let me know the full name of the person you're looking for?";
		next;
		input .@inputstr$;
		if (.@inputstr$ == "Minty Errende") {
			mes "[Marlin Putiur]";
			mes "Minty Errende...";
			mes "Oh yes, I remember him. He told me a while ago that he's heading South, and that he's staying in Geffen now.";
			next;
			mes "[Marlin Putiur]";
			mes "He's a very kind, friendly person. Errende's always doing his best to provide us with the information we need. When you get a chance, would you please give him my regards?";
			close;

		} else if (.@inputstr$ == "Kino Kitty") {
			mes "[Marlin Putiur]";
			mes "Kino Kitty, Kino Kitty... Oh, here we are. He sent us a letter that says, 'I will stay in the desert until I find my real self.'";
			next;
			mes "[Marlin Putiur]";
			mes "He doesn't seem healthy, but I guess he's still traveling. Trying seeking him out in Morroc, and give my regards to him if you get the chance.";
			close;

		} else if (.@inputstr$ == "Gunther Doubleharmony") {
			mes "[Marlin Putiur]";
			mes "Ah, are you a friend of Gunther's? Haha, he's a very funny guy, if a little excitable. Let's see, Gunther, Gunther...";
			next;
			mes "[Marlin Putiur]";
			mes "Ah, it says here that he wanted to look around Payon and Alberta. So he'll be at one of those places. I'm sorry I can't be more specific.";
			close;

		} else {
			mes "[Marlin Putiur]";
			mes " " + .@inputstr$ + "...?";
			mes "Ummm hmm...";
			mes "I'm sorry, but we don't have any records for that person.";
			close;
		}

	} else {
		next;
		mes "[Marlin Putiur]";
		mes "We are endeavoring to research monsters in this world with the intent to aid each and every adventurer on their journeys.";
		close;
	}
}

yuno_in04,33,119,3	script	Adventurer#1	4_M_ROGUE,{
	mes "...";
	next;
	mes "...";
	mes ".......";
	next;
	mes "^3355FF*Scribble Scribble*^000000";
	next;
	mes "[Energetic Young Man]";
	mes "Err...?";
	mes "What is it?";
	next;
	if (Sex == SEX_FEMALE) {
		emotion e_heh;
		mes "[Energetic Young Man]";
		mes "Oh...!";
		mes "A beautiful,";
		mes "young lady~!";
		next;
		mes "[Energetic Young Man]";
		mes "Hello there~";
		mes "My name is Pane.";
		mes "May I ask yours?";
		@name$ = strcharinfo(PC_NAME);
		input .@inputstr$;
		next;
		mes "[Energetic Young Man]";
		mes "Oh...";
		mes "" +.@inputstr$+ "...";
		if (@name$ == .@inputstr$) {
			next;
			mes "[Energetic Young Man]";
			mes "^FF6699"+.@inputstr$+"!";
			mes "Such a wonderful name!";
			next;
			mes "[Energetic Young Man]";
			mes "I shall remember your name, my lady. Oh, but I'm so sorry. I'm kind of busy right now. Would you come back later? I'll do my best to please you next time.";
			emotion e_kis;
			close;

		} else {
			mes "That's your name?";
			next;
			mes "[Energetic Young Man]";
			mes "Eh, whatever. Oh, but I'm so sorry. I'm kind of busy right now. Would you come back later? I'll do my best to please you next time.";
			emotion e_heh;
			close;
		}

	} else {
		mes "[Energetic Young Man]";
		mes "What, man...!";
		mes "Leave me alone.";
		mes "Can't you see I'm busy?";
		close;
	}
}