viewing paste Unknown #51550 | Text

Posted on the
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
# This file is a part of rAthena.
#   Copyright(C) 2017 rAthena Development Team
#   https://rathena.org - https://github.com/rathena
#
# This program 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/>.
#
###########################################################################
# Pre-Renewal Achievement Database
###########################################################################
#
# Achievement Settings
#
###########################################################################
# ID - Unique achievement ID.
###########################################################################
# Group - Achievement group type. Each achievement type calls a specific
# objective check.
# Valid groups:
#  AG_ADD_FRIEND
#  AG_ADVENTURE
#  AG_BABY
#  AG_BATTLE
#  AG_CHATTING
#  AG_CHATTING_COUNT
#  AG_CHATTING_CREATE
#  AG_CHATTING_DYING
#  AG_EAT
#  AG_GET_ITEM
#  AG_GET_ZENY
#  AG_GOAL_ACHIEVE
#  AG_GOAL_LEVEL
#  AG_GOAL_STATUS
#  AG_HEAR
#  AG_JOB_CHANGE
#  AG_MARRY
#  AG_PARTY
#  AG_ENCHANT_FAIL
#  AG_ENCHANT_SUCCESS
#  AG_SEE
#  AG_SPEND_ZENY
#  AG_TAMING
###########################################################################
# Name - Achievement name. Used when sending rewards through RODEX.
###########################################################################
# Target - A list of monster ID and count values that the achievement
# requires. The target count can also be used for achievements that keep
# a counter while not being related to monster kills.
# Capped at MAX_ACHIEVEMENT_OBJECTIVES.
###########################################################################
# Condition - A conditional statement that must be met for the achievement
# to be considered complete.
###########################################################################
# Map - A map name that is used for the AG_CHATTING type which increments
# the counter based on the player's map.
###########################################################################
# Dependent: - A list of achievement IDs that need to be completed before
# this achievement is considered complete.
###########################################################################
# Reward - A list of rewards that are given on completion. All fields are
# optional.
#   ItemID: Item ID
#   Amount:  Amount of Item ID (default 1)
#   Script: Bonus Script
#   TitleID: Title ID
###########################################################################
# Score - Achievement points that are given on completion.
###########################################################################
 
Header:
  Type: ACHIEVEMENT_DB
  Version: 1
 
Body:
  - ID: 110000
    Group: "AG_EAT"
    Name: "At this time I live to eat"
    Score: 10
  - ID: 110001
    Group: "AG_SEE"
    Name: "A fan of this polarity"
    Score: 10
  - ID: 120001
    Group: "AG_ADVENTURE"
    Name: "North Prontera Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120002
    Group: "AG_ADVENTURE"
    Name: "North Prontera Field Exploration(2)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120003
    Group: "AG_ADVENTURE"
    Name: "North Prontera Field Exploration(3)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120004
    Group: "AG_ADVENTURE"
    Name: "West Prontera Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120005
    Group: "AG_ADVENTURE"
    Name: "West Prontera Field Exploration(2)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120006
    Group: "AG_ADVENTURE"
    Name: "East Prontera Field Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120007
    Group: "AG_ADVENTURE"
    Name: "South Prontera Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120008
    Group: "AG_ADVENTURE"
    Name: "South Prontera Field Exploration(2)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120009
    Group: "AG_ADVENTURE"
    Name: "South Prontera Field Exploration(3)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120010
    Group: "AG_ADVENTURE"
    Name: "South Prontera Field Exploration(4)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120011
    Group: "AG_ADVENTURE"
    Name: "East Geffen Field Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120012
    Group: "AG_ADVENTURE"
    Name: "Southeast Geffen Field Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120013
    Group: "AG_ADVENTURE"
    Name: "Northwest Geffen Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120014
    Group: "AG_ADVENTURE"
    Name: "Northwest Geffen Field Exploration(2)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120015
    Group: "AG_ADVENTURE"
    Name: "Northwest Geffen Field Exploration(3)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120016
    Group: "AG_ADVENTURE"
    Name: "South Geffen Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120017
    Group: "AG_ADVENTURE"
    Name: "South Geffen Field Exploration(2)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120018
    Group: "AG_ADVENTURE"
    Name: "Sograt Desert Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120019
    Group: "AG_ADVENTURE"
    Name: "Sograt Desert Field Exploration(2)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120020
    Group: "AG_ADVENTURE"
    Name: "Sograt Desert Field Exploration(3)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120021
    Group: "AG_ADVENTURE"
    Name: "Sograt Desert Field Exploration(4)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120022
    Group: "AG_ADVENTURE"
    Name: "Sograt Desert Field Exploration(5)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120023
    Group: "AG_ADVENTURE"
    Name: "Sograt Desert Field Exploration(6)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120024
    Group: "AG_ADVENTURE"
    Name: "Southwest Payon Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120025
    Group: "AG_ADVENTURE"
    Name: "Southwest Payon Field Exploration(2)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120026
    Group: "AG_ADVENTURE"
    Name: "Southwest Payon Field Exploration(3)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120027
    Group: "AG_ADVENTURE"
    Name: "Southwest Payon Field Exploration(4)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120028
    Group: "AG_ADVENTURE"
    Name: "East Payon Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120029
    Group: "AG_ADVENTURE"
    Name: "East Payon Field Exploration(2)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120030
    Group: "AG_ADVENTURE"
    Name: "East Payon Field Exploration(3)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120031
    Group: "AG_ADVENTURE"
    Name: "East Payon Field Exploration(4)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120032
    Group: "AG_ADVENTURE"
    Name: "North Mjolnir Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120033
    Group: "AG_ADVENTURE"
    Name: "North Mjolnir Field Exploration(2)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120034
    Group: "AG_ADVENTURE"
    Name: "North Mjolnir Field Exploration(3)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120035
    Group: "AG_ADVENTURE"
    Name: "North Mjolnir Field Exploration(4)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120036
    Group: "AG_ADVENTURE"
    Name: "North Mjolnir Field Exploration(5)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120037
    Group: "AG_ADVENTURE"
    Name: "South Mjolnir Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120038
    Group: "AG_ADVENTURE"
    Name: "South Mjolnir Field Exploration(2)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120039
    Group: "AG_ADVENTURE"
    Name: "South Mjolnir Field Exploration(3)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120040
    Group: "AG_ADVENTURE"
    Name: "South Mjolnir Field Exploration(4)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120041
    Group: "AG_ADVENTURE"
    Name: "South Mjolnir Field Exploration(5)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120042
    Group: "AG_ADVENTURE"
    Name: "South Mjolnir Field Exploration(6)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120043
    Group: "AG_ADVENTURE"
    Name: "South Aldebaran Field Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120044
    Group: "AG_ADVENTURE"
    Name: "Comodo Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120045
    Group: "AG_ADVENTURE"
    Name: "Comodo Field Exploration(2)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120046
    Group: "AG_ADVENTURE"
    Name: "Comodo Field Exploration(3)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120047
    Group: "AG_ADVENTURE"
    Name: "Comodo Field Exploration(4)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120048
    Group: "AG_ADVENTURE"
    Name: "Comodo Field Exploration(5)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120049
    Group: "AG_ADVENTURE"
    Name: "Comodo Field Exploration(6)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120050
    Group: "AG_ADVENTURE"
    Name: "Comodo Field Exploration(7)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120051
    Group: "AG_ADVENTURE"
    Name: "Comodo Field Exploration(8)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120052
    Group: "AG_ADVENTURE"
    Name: "Border Checkpoint Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120053
    Group: "AG_ADVENTURE"
    Name: "Border Checkpoint Field Exploration(2)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120054
    Group: "AG_ADVENTURE"
    Name: "Kiel Hyre Mansion Field Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120055
    Group: "AG_ADVENTURE"
    Name: "El Mes Plateau Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120056
    Group: "AG_ADVENTURE"
    Name: "El Mes Plateau Field Exploration(2)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120057
    Group: "AG_ADVENTURE"
    Name: "El Mes Plateau Field Exploration(3)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120058
    Group: "AG_ADVENTURE"
    Name: "El Mes Gorge Field Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120059
    Group: "AG_ADVENTURE"
    Name: "Kiel Hyre Academy Field Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120060
    Group: "AG_ADVENTURE"
    Name: "Guard Camp Field Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120061
    Group: "AG_ADVENTURE"
    Name: "Juno Field Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120062
    Group: "AG_ADVENTURE"
    Name: "Front of Thanatos Tower Field Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120063
    Group: "AG_ADVENTURE"
    Name: "Hugel Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120064
    Group: "AG_ADVENTURE"
    Name: "Hugel Field Exploration(2)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120065
    Group: "AG_ADVENTURE"
    Name: "Hugel Field Exploration(3)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120066
    Group: "AG_ADVENTURE"
    Name: "Abyss Lake Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120067
    Group: "AG_ADVENTURE"
    Name: "Einbroch Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120068
    Group: "AG_ADVENTURE"
    Name: "Einbroch Field Exploration(2)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120069
    Group: "AG_ADVENTURE"
    Name: "Einbroch Field Exploration(3)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120070
    Group: "AG_ADVENTURE"
    Name: "Einbroch Field Exploration(4)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120071
    Group: "AG_ADVENTURE"
    Name: "Einbroch Field Exploration(5)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120072
    Group: "AG_ADVENTURE"
    Name: "Einbroch Field Exploration(6)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120073
    Group: "AG_ADVENTURE"
    Name: "Einbroch Field Exploration(7)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120074
    Group: "AG_ADVENTURE"
    Name: "Einbroch Field Exploration(8)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120075
    Group: "AG_ADVENTURE"
    Name: "Lighthalzen Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120076
    Group: "AG_ADVENTURE"
    Name: "Lighthalzen Field Exploration(2)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120077
    Group: "AG_ADVENTURE"
    Name: "Lighthalzen Field Exploration(3)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120078
    Group: "AG_ADVENTURE"
    Name: "Rachel Audhumbla Plains Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120079
    Group: "AG_ADVENTURE"
    Name: "Rachel Plains Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120080
    Group: "AG_ADVENTURE"
    Name: "Rachel Plains Field Exploration(2)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120081
    Group: "AG_ADVENTURE"
    Name: "Rachel Plains Field Exploration(3)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120082
    Group: "AG_ADVENTURE"
    Name: "Rachel Audhumbla Grassland Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120083
    Group: "AG_ADVENTURE"
    Name: "Rachel Audhumbla Grassland Field Exploration(2)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120084
    Group: "AG_ADVENTURE"
    Name: "Portus Luna Field Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120085
    Group: "AG_ADVENTURE"
    Name: "Veins Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120086
    Group: "AG_ADVENTURE"
    Name: "Veins Field Exploration(2)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120087
    Group: "AG_ADVENTURE"
    Name: "Veins Field Exploration(3)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120088
    Group: "AG_ADVENTURE"
    Name: "Veins Field Exploration(4)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120089
    Group: "AG_ADVENTURE"
    Name: "Veins Field Exploration(5)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120090
    Group: "AG_ADVENTURE"
    Name: "Eclage Field Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120091
    Group: "AG_ADVENTURE"
    Name: "North Bitfrost Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120092
    Group: "AG_ADVENTURE"
    Name: "South Bitfrost Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120093
    Group: "AG_ADVENTURE"
    Name: "Splendide Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120094
    Group: "AG_ADVENTURE"
    Name: "Splendide Field Exploration(2)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120095
    Group: "AG_ADVENTURE"
    Name: "Splendide Field Exploration(3)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120096
    Group: "AG_ADVENTURE"
    Name: "Manuk Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120097
    Group: "AG_ADVENTURE"
    Name: "Manuk Field Exploration(2)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120098
    Group: "AG_ADVENTURE"
    Name: "Manuk Field Exploration(3)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120099
    Group: "AG_ADVENTURE"
    Name: "Outskirts of Kamidal Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120100
    Group: "AG_ADVENTURE"
    Name: "Outskirts of Kamidal Field Exploration(2)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120101
    Group: "AG_ADVENTURE"
    Name: "Amatsu Field Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120102
    Group: "AG_ADVENTURE"
    Name: "Kunlun Field Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120103
    Group: "AG_ADVENTURE"
    Name: "Kunlun Field Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120104
    Group: "AG_ADVENTURE"
    Name: "Ayothaya Field Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120105
    Group: "AG_ADVENTURE"
    Name: "Moscovia Field Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120106
    Group: "AG_ADVENTURE"
    Name: "Brasilis Field Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120107
    Group: "AG_ADVENTURE"
    Name: "Dewata Field Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120108
    Group: "AG_ADVENTURE"
    Name: "Malaya Field Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120109
    Group: "AG_ADVENTURE"
    Name: "Malaya Field Exploration(2)"
    #Reward:
    #  ItemID: 22876
    Score: 10
  - ID: 120110
    Group: "AG_ADVENTURE"
    Name: "Abbey Underground Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120111
    Group: "AG_ADVENTURE"
    Name: "Abyss Lake Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120112
    Group: "AG_ADVENTURE"
    Name: "Clock Tower Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120113
    Group: "AG_ADVENTURE"
    Name: "Amatsu Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120114
    Group: "AG_ADVENTURE"
    Name: "Ant Hell Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120115
    Group: "AG_ADVENTURE"
    Name: "Ayothaya Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120116
    Group: "AG_ADVENTURE"
    Name: "Comodo Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120117
    Group: "AG_ADVENTURE"
    Name: "Brasilis Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120118
    Group: "AG_ADVENTURE"
    Name: "Clock Tower Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120119
    Group: "AG_ADVENTURE"
    Name: "Istana Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120120
    Group: "AG_ADVENTURE"
    Name: "Scaraba Hole Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120121
    Group: "AG_ADVENTURE"
    Name: "Bitfrost Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120122
    Group: "AG_ADVENTURE"
    Name: "Einbroch Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120123
    Group: "AG_ADVENTURE"
    Name: "Geffen Underground Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120124
    Group: "AG_ADVENTURE"
    Name: "Glastheim Dungeon Exploration(1)"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120125
    Group: "AG_ADVENTURE"
    Name: "Glastheim Dungeon Exploration(2)"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120126
    Group: "AG_ADVENTURE"
    Name: "Glastheim Dungeon Exploration(3)"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120127
    Group: "AG_ADVENTURE"
    Name: "Glastheim Dungeon Exploration(4)"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120128
    Group: "AG_ADVENTURE"
    Name: "Kunlun Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120129
    Group: "AG_ADVENTURE"
    Name: "Rachel Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120130
    Group: "AG_ADVENTURE"
    Name: "Sphinx Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120131
    Group: "AG_ADVENTURE"
    Name: "Izlude Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120132
    Group: "AG_ADVENTURE"
    Name: "Robot Factory Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120133
    Group: "AG_ADVENTURE"
    Name: "Bio Lab Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120134
    Group: "AG_ADVENTURE"
    Name: "Kunlun Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120135
    Group: "AG_ADVENTURE"
    Name: "Nogg Road Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120136
    Group: "AG_ADVENTURE"
    Name: "Coal Mine Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120137
    Group: "AG_ADVENTURE"
    Name: "Pyramid Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120138
    Group: "AG_ADVENTURE"
    Name: "Orc Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120139
    Group: "AG_ADVENTURE"
    Name: "Payon Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120140
    Group: "AG_ADVENTURE"
    Name: "Labyrinth Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120141
    Group: "AG_ADVENTURE"
    Name: "Undersea Tunnel Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120142
    Group: "AG_ADVENTURE"
    Name: "Thanatos Tower Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120143
    Group: "AG_ADVENTURE"
    Name: "Thor Volcano Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120144
    Group: "AG_ADVENTURE"
    Name: "Sunken Ship Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120145
    Group: "AG_ADVENTURE"
    Name: "Turtle Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 120146
    Group: "AG_ADVENTURE"
    Name: "Toy Factory Dungeon Exploration"
    #Reward:
    #  ItemID: 22876
    Score: 20
  - ID: 127001
    Group: "AG_CHATTING"
    Name: "Prontera Contribution"
    Map: "prontera"
    Target:
      - Id: 0
        Count: 100000
    Score: 10
  - ID: 127002
    Group: "AG_CHATTING"
    Name: "Geffen Contribution"
    Map: "geffen"
    Target:
      - Id: 0
        Count: 100000
    Score: 10
  - ID: 127003
    Group: "AG_CHATTING"
    Name: "Morocc Contribution"
    Map: "morocc"
    Target:
      - Id: 0
        Count: 100000
    Score: 10
  - ID: 127004
    Group: "AG_CHATTING"
    Name: "Payon Contribution"
    Map: "payon"
    Target:
      - Id: 0
        Count: 100000
    Score: 10
  - ID: 127005
    Group: "AG_CHATTING"
    Name: "Juno Contribution"
    Map: "yuno"
    Target:
      - Id: 0
        Count: 100000
    Score: 10
  - ID: 127006
    Group: "AG_CHATTING"
    Name: "Lighthalzen Contribution"
    Map: "lighthalzen"
    Target:
      - Id: 0
        Count: 100000
    Score: 10
  - ID: 127007
    Group: "AG_CHATTING"
    Name: "Einbroch Contribution"
    Map: "einbroch"
    Target:
      - Id: 0
        Count: 100000
    Score: 10
  - ID: 127008
    Group: "AG_CHATTING"
    Name: "Rachel Contribution"
    Map: "rachel"
    Target:
      - Id: 0
        Count: 100000
    Score: 10
  - ID: 127009
    Group: "AG_CHATTING"
    Name: "Veins Contribution"
    Map: "veins"
    Target:
      - Id: 0
        Count: 100000
    Score: 10
  - ID: 128000
    Group: "AG_BATTLE"
    Name: "Uninvited Guest"
    #Target:
    #  - Id: 0
    #    MobID: 2996
    #    Count: 1
    Score: 10
  - ID: 128001
    Group: "AG_BATTLE"
    Name: "Strange Guest"
    #Target:
    #  - Id: 0
    #    MobID: 2996
    #    Count: 10
    Score: 10
  - ID: 128002
    Group: "AG_BATTLE"
    Name: "Get along with map..."
    #Target:
    #  - Id: 0
    #    MobID: 2996
    #    Count: 25
    Score: 20
  - ID: 128003
    Group: "AG_BATTLE"
    Name: "Welcomed Guest"
    #Target:
    #  - Id: 0
    #    MobID: 2996
    #    Count: 50
    Score: 30
  - ID: 128004
    Group: "AG_BATTLE"
    Name: "Kimmy's best friend"
    #Target:
    #  - Id: 0
    #    MobID: 2996
    #    Count: 100
    Score: 50
  - ID: 128005
    Group: "AG_BATTLE"
    Name: "Novice Angler"
    #Target:
    #  - Id: 0
    #    MobID: 2322
    #    Count: 1
    Score: 10
  - ID: 128006
    Group: "AG_BATTLE"
    Name: "Juicy Hunter"
    #Target:
    #  - Id: 0
    #    MobID: 2322
    #    Count: 10
    Score: 20
  - ID: 128007
    Group: "AG_BATTLE"
    Name: "Rhythm Master"
    #Target:
    #  - Id: 0
    #    MobID: 2322
    #    Count: 50
    Score: 50
  - ID: 128008
    Group: "AG_BATTLE"
    Name: "Bold Adventurer"
    Target:
      - Id: 0
        MobID: 1929
        Count: 1
    Score: 10
  - ID: 128009
    Group: "AG_BATTLE"
    Name: "Baphomet Hatred"
    Target:
      - Id: 0
        MobID: 1929
        Count: 10
    Score: 20
  - ID: 128010
    Group: "AG_BATTLE"
    Name: "Goat's Nemesis"
    Target:
      - Id: 0
        MobID: 1929
        Count: 50
    Score: 50
  - ID: 128011
    Group: "AG_BATTLE"
    Name: "Ordinary Tourist"
    #Target:
    #  - Id: 0
    #    MobID: 3029
    #    Count: 1
    Score: 10
  - ID: 128012
    Group: "AG_BATTLE"
    Name: "Backcountry Expert"
    #Target:
    #  - Id: 0
    #    MobID: 3029
    #    Count: 10
    Score: 20
  - ID: 128013
    Group: "AG_BATTLE"
    Name: "Able to eat more like this"
    #Target:
    #  - Id: 0
    #    MobID: 3029
    #    Count: 50
    Score: 50
  - ID: 128014
    Group: "AG_BATTLE"
    Name: "Digest hard meat"
    #Target:
    #  - Id: 0
    #    MobID: 2319
    #    Count: 1
    Score: 10
  - ID: 128015
    Group: "AG_BATTLE"
    Name: "Master of Escape"
    #Target:
    #  - Id: 0
    #    MobID: 2319
    #    Count: 10
    Score: 20
  - ID: 128016
    Group: "AG_BATTLE"
    Name: "Immortal Hunter"
    #Target:
    #  - Id: 0
    #    MobID: 2319
    #    Count: 50
    Score: 50
  - ID: 128017
    Group: "AG_BATTLE"
    Name: "Stood up and overcame despair"
    #Target:
    #  - Id: 0
    #    MobID: 3097
    #    Count: 1
    Score: 10
  - ID: 128018
    Group: "AG_BATTLE"
    Name: "Ember of Hope"
    #Target:
    #  - Id: 0
    #    MobID: 3097
    #    Count: 10
    Score: 10
  - ID: 128019
    Group: "AG_BATTLE"
    Name: "Pouring Aurora"
    #Target:
    #  - Id: 0
    #    MobID: 3097
    #    Count: 25
    Score: 20
  - ID: 128020
    Group: "AG_BATTLE"
    Name: "Who is desperate? I am hopeless!"
    #Target:
    #  - Id: 0
    #    MobID: 3097
    #    Count: 50
    Score: 30
  - ID: 128021
    Group: "AG_BATTLE"
    Name: "I know god will save the world"
    #Target:
    #  - Id: 0
    #    MobID: 3097
    #    Count: 100
    Score: 50
  - ID: 128022
    Group: "AG_BATTLE"
    Name: "There was mercy in Morocc army"
    #Target:
    #  - Id: 0
    #    MobID: 3000
    #  Count: 1
    Score: 10
  - ID: 128023
    Group: "AG_BATTLE"
    Name: "There was fear in Morocc army"
    #Target:
    #  - Id: 0
    #    MobID: 3000
    #    Count: 10
    Score: 20
  - ID: 128024
    Group: "AG_BATTLE"
    Name: "Guard of weak army"
    #Target:
    #  - Id: 0
    #    MobID: 3000
    #    Count: 50
    Score: 50
  - ID: 128025
    Group: "AG_BATTLE"
    Name: "Audience with the queen"
    #Target:
    #  - Id: 0
    #    MobID: 2529
    #    Count: 1
    Score: 10
  - ID: 128026
    Group: "AG_BATTLE"
    Name: "Warm earth"
    #Target:
    #  - Id: 0
    #    MobID: 2533
    #    Count: 1
    Score: 10
  - ID: 128027
    Group: "AG_BATTLE"
    Name: "Water is very good exactly"
    #Target:
    #  - Id: 0
    #    MobID: 2534
    #    Count: 1
    Score: 10
  - ID: 128028
    Group: "AG_BATTLE"
    Name: "Pleasant breeze"
    #Target:
    #  - Id: 0
    #    MobID: 2535
    #    Count: 1
    Score: 10
  - ID: 128029
    Group: "AG_BATTLE"
    Name: "Visitor of old castle"
    #Target:
    #  - Id: 0
    #    MobID: 2476
    #    Count: 1
    Score: 10
  - ID: 128030
    Group: "AG_BATTLE"
    Name: "Lord of old castle"
    #Target:
    #  - Id: 0
    #    MobID: 2476
    #    Count: 10
    Score: 20
  - ID: 128031
    Group: "AG_BATTLE"
    Name: "Conqueror of old castle"
    #Target:
    #  - Id: 0
    #    MobID: 2476
    #    Count: 50
    Score: 50
  - ID: 128032
    Group: "AG_BATTLE"
    Name: "Haggard sucker"
    #Target:
    #  - Id: 0
    #    MobID: 3150
    #    Count: 1
    Score: 10
  - ID: 128033
    Group: "AG_BATTLE"
    Name: "Hope of the Knight"
    #Target:
    #  - Id: 0
    #    MobID: 3150
    #    Count: 10
    Score: 20
  - ID: 128034
    Group: "AG_BATTLE"
    Name: "Guardian of the Dawn"
    #Target:
    #  - Id: 0
    #    MobID: 3150
    #    Count: 50
    Score: 50
  - ID: 128035
    Group: "AG_BATTLE"
    Name: "Time Traveler"
    #Target:
    #  - Id: 0
    #    MobID: 3190
    #    Count: 1
    Score: 10
  - ID: 128036
    Group: "AG_BATTLE"
    Name: "Restore ancient relic"
    #Target:
    #  - Id: 0
    #    MobID: 3190
    #    Count: 10
    Score: 20
  - ID: 128037
    Group: "AG_BATTLE"
    Name: "Master of relic transport"
    #Target:
    #  - Id: 0
    #    MobID: 3190
    #    Count: 50
    Score: 50
  - ID: 128038
    Group: "AG_BATTLE"
    Name: "Show Jailbreak to the captain"
    #Target:
    #  - Id: 0
    #    MobID: 3181
    #    Count: 1
    Score: 10
  - ID: 128039
    Group: "AG_BATTLE"
    Name: "Show Jailbreak to the weak captain"
    #Target:
    #  - Id: 0
    #    MobID: 3188
    #    Count: 1
    Score: 10
  - ID: 128040
    Group: "AG_BATTLE"
    Name: "Riot on board"
    #Target:
    #  - Id: 0
    #    MobID: 3181
    #    Count: 1
    Score: 20
  - ID: 128041
    Group: "AG_BATTLE"
    Name: "Turmoil on board"
    #Target:
    #  - Id: 0
    #    MobID: 3181
    #    Count: 10
    Score: 20
  - ID: 128042
    Group: "AG_BATTLE"
    Name: "Rebellion on board"
    #Target:
    #  - Id: 0
    #    MobID: 3181
    #    Count: 50
    Score: 50
  - ID: 128043
    Group: "AG_BATTLE"
    Name: "Revolt of Riot"
    #Target:
    #  - Id: 0
    #    MobID: 3188
    #    Count: 50
    Score: 50
  - ID: 128044
    Group: "AG_BATTLE"
    Name: "Magic tournament champion"
    #Target:
    #  - Id: 0
    #    MobID: 2564
    #    Count: 1
    Score: 10
  - ID: 128045
    Group: "AG_BATTLE"
    Name: "Gladiator of Coliseum"
    #Target:
    #  - Id: 0
    #    MobID: 2564
    #    Count: 10
    Score: 20
  - ID: 128046
    Group: "AG_BATTLE"
    Name: "Slayer of Colosseum"
    #Target:
    #  - Id: 0
    #    MobID: 2564
    #    Count: 50
    Score: 50
  - ID: 128047
    Group: "AG_BATTLE"
    Name: "Endless Tower challenger"
    Target:
      - Id: 0
        MobID: 1956
        Count: 1
    Score: 10
  - ID: 128048
    Group: "AG_BATTLE"
    Name: "Endless Tower Slayer"
    Target:
      - Id: 0
        MobID: 1956
        Count: 10
    Score: 20
  - ID: 128049
    Group: "AG_BATTLE"
    Name: "Lord of the tower"
    Target:
      - Id: 0
        MobID: 1956
        Count: 50
    Score: 50
  - ID: 128050
    Group: "AG_BATTLE"
    Name: "Novice Exorcist"
    #Target:
    #  - Id: 0
    #    MobID: 2327
    #    Count: 1
    Score: 10
  - ID: 128051
    Group: "AG_BATTLE"
    Name: "Experienced Exorcist"
    #Target:
    #  - Id: 0
    #    MobID: 2327
    #    Count: 10
    Score: 20
  - ID: 128052
    Group: "AG_BATTLE"
    Name: "Legendary Exorcist"
    #Target:
    #  - Id: 0
    #    MobID: 2327
    #    Count: 50
    Score: 50
  - ID: 129001
    Group: "AG_ADVENTURE"
    Name: "Prontera Explorer"
    Dependent:
      - Id: 120001
      - Id: 120002
      - Id: 120003
      - Id: 120004
      - Id: 120005
      - Id: 120006
      - Id: 120007
      - Id: 120008
      - Id: 120009
      - Id: 120010
    Reward:
      ItemID: 644
    Score: 20
  - ID: 129002
    Group: "AG_ADVENTURE"
    Name: "Geffen Explorer"
    Dependent:
      - Id: 120011
      - Id: 120012
      - Id: 120013
      - Id: 120014
      - Id: 120015
      - Id: 120016
      - Id: 120017
    Reward:
      ItemID: 644
    Score: 20
  - ID: 129003
    Group: "AG_ADVENTURE"
    Name: "Sograt Desert Explorer"
    Dependent:
      - Id: 120018
      - Id: 120019
      - Id: 120020
      - Id: 120021
      - Id: 120022
      - Id: 120023
    Reward:
      ItemID: 644
    Score: 20
  - ID: 129004
    Group: "AG_ADVENTURE"
    Name: "Payon Explorer"
    Dependent:
      - Id: 120024
      - Id: 120025
      - Id: 120026
      - Id: 120027
      - Id: 120028
      - Id: 120029
      - Id: 120030
      - Id: 120031
    Reward:
      ItemID: 644
    Score: 20
  - ID: 129005
    Group: "AG_ADVENTURE"
    Name: "North Mjolnir Explorer"
    Dependent:
      - Id: 120032
      - Id: 120033
      - Id: 120034
      - Id: 120035
      - Id: 120036
    Reward:
      ItemID: 644
    Score: 20
  - ID: 129006
    Group: "AG_ADVENTURE"
    Name: "South Mjolnir Explorer"
    Dependent:
      - Id: 120037
      - Id: 120038
      - Id: 120039
      - Id: 120040
      - Id: 120041
      - Id: 120042
      - Id: 120043
    Reward:
      ItemID: 644
    Score: 20
  - ID: 129007
    Group: "AG_ADVENTURE"
    Name: "Comodo Explorer"
    Dependent:
      - Id: 120044
      - Id: 120045
      - Id: 120046
      - Id: 120047
      - Id: 120048
      - Id: 120049
      - Id: 120050
      - Id: 120051
    Reward:
      ItemID: 644
    Score: 20
  - ID: 129008
    Group: "AG_ADVENTURE"
    Name: "Rune-Midgarts Explorer"
    Dependent:
      - Id: 129001
      - Id: 129002
      - Id: 129003
      - Id: 129004
      - Id: 129005
      - Id: 129006
      - Id: 129007
    Reward:
      ItemID: 617
    Score: 50
  - ID: 129009
    Group: "AG_ADVENTURE"
    Name: "Juno Explorer"
    Dependent:
      - Id: 120052
      - Id: 120053
      - Id: 120054
      - Id: 120055
      - Id: 120056
      - Id: 120057
      - Id: 120058
      - Id: 120059
      - Id: 120060
      - Id: 120061
    Reward:
      ItemID: 644
    Score: 20
  - ID: 129010
    Group: "AG_ADVENTURE"
    Name: "Hugel Explorer"
    Dependent:
      - Id: 120062
      - Id: 120063
      - Id: 120064
      - Id: 120065
      - Id: 120066
    Reward:
      ItemID: 644
    Score: 20
  - ID: 129011
    Group: "AG_ADVENTURE"
    Name: "Einbroch Explorer"
    Dependent:
      - Id: 120067
      - Id: 120068
      - Id: 120069
      - Id: 120070
      - Id: 120071
      - Id: 120072
      - Id: 120073
      - Id: 120074
    Reward:
      ItemID: 644
    Score: 20
  - ID: 129012
    Group: "AG_ADVENTURE"
    Name: "Lighthalzen Explorer"
    Dependent:
      - Id: 120075
      - Id: 120076
      - Id: 120077
    Reward:
      ItemID: 644
    Score: 20
  - ID: 129013
    Group: "AG_ADVENTURE"
    Name: "Schwarzwald Explorer"
    Dependent:
      - Id: 129009
      - Id: 129010
      - Id: 129011
      - Id: 129012
    Reward:
      ItemID: 617
    Score: 50
  - ID: 129014
    Group: "AG_ADVENTURE"
    Name: "Rachel Explorer"
    Dependent:
      - Id: 120078
      - Id: 120079
      - Id: 120080
      - Id: 120081
      - Id: 120082
      - Id: 120083
      - Id: 120084
    Reward:
      ItemID: 644
    Score: 20
  - ID: 129015
    Group: "AG_ADVENTURE"
    Name: "Veins Explorer"
    Dependent:
      - Id: 120085
      - Id: 120086
      - Id: 120087
      - Id: 120088
      - Id: 120089
    Reward:
      ItemID: 644
    Score: 20
  - ID: 129016
    Group: "AG_ADVENTURE"
    Name: "Arunafeltz Explorer"
    Dependent:
      - Id: 129014
      - Id: 129015
    Reward:
      ItemID: 617
    Score: 50
  - ID: 129017
    Group: "AG_ADVENTURE"
    Name: "Laphine Explorer"
    Dependent:
      - Id: 120090
      - Id: 120091
      - Id: 120092
      - Id: 120093
      - Id: 120094
      - Id: 120095
    Reward:
      ItemID: 644
    Score: 20
  - ID: 129018
    Group: "AG_ADVENTURE"
    Name: "Manuk Explorer"
    Dependent:
      - Id: 120096
      - Id: 120097
      - Id: 120098
      - Id: 120099
      - Id: 120100
    Reward:
      ItemID: 644
    Score: 20
  - ID: 129019
    Group: "AG_ADVENTURE"
    Name: "Eclage Explorer"
    Dependent:
      - Id: 129017
      - Id: 129018
    Reward:
      ItemID: 617
    Score: 50
  - ID: 129020
    Group: "AG_ADVENTURE"
    Name: "Localizing fields explorer"
    Dependent:
      - Id: 120101
      - Id: 120102
      - Id: 120103
      - Id: 120104
      - Id: 120105
      - Id: 120106
      - Id: 120107
      - Id: 120108
      - Id: 120109
    Reward:
      ItemID: 617
    Score: 50
  - ID: 129021
    Group: "AG_BATTLE"
    Name: "Glastheim Challenge Mode" # Complete 100 times?
    Reward:
      TitleID: 1045
    Score: 10
  - ID: 130000 # Talk to Prince NPC (npc/quests/quests_morocc.txt L5288)
    Group: "AG_CHATTING"
    Name: "Socialite debut"
    Reward:
      TitleID: 1034
    Score: 10
  - ID: 170000
    Group: "AG_HEAR"
    Name: "Song chamber is not an accident"
    Score: 10
  - ID: 190000
    Group: "AG_CHATTING"
    Name: "Alliance workers of merchant city"
    Score: 50
  - ID: 200000
    Group: "AG_GOAL_LEVEL"
    Name: "Acquire the first aura!"
    Condition: " BaseLevel >= 99 "
    Reward:
      ItemID: 12549
      Script: " specialeffect2 EF_BLESSING; sc_start SC_BLESSING,30000,10; "
      TitleID: 1000
    Score: 50
  - ID: 200001
    Group: "AG_GOAL_LEVEL"
    Name: "Acquire the second aura!"
    Condition: " BaseLevel >= 150 "
    Dependent:
      - Id: 200000
    Reward:
      ItemID: 5364
      Script: " specialeffect2 EF_BLESSING; sc_start SC_BLESSING,30000,10; "
      TitleID: 1001
    Score: 60
  - ID: 200002
    Group: "AG_GOAL_LEVEL"
    Name: "Acquire the third aura!"
    Condition: " BaseLevel >= 175 "
    Dependent:
      - Id: 200001
    Reward:
    #  ItemID: 18880
      Script: " specialeffect2 EF_BLESSING; sc_start SC_BLESSING,30000,10; "
      TitleID: 1002
    Score: 70
  - ID: 200003
    Group: "AG_GOAL_LEVEL"
    Name: "Master Job level!"
    Condition: " JobLevel >= 50 "
    Reward:
      ItemID: 617
      Script: " specialeffect2 EF_BLESSING; sc_start SC_BLESSING,30000,10; "
      TitleID: 1003
    Score: 30
  - ID: 200004
    Group: "AG_GOAL_LEVEL"
    Name: "Grandmaster Job level!"
    Condition: " JobLevel >= 70 "
    Dependent:
      - Id: 200003
    Reward:
    #  ItemID: 12817
      Script: " specialeffect2 EF_BLESSING; sc_start SC_BLESSING,30000,10; "
      TitleID: 1004
    Score: 50
  - ID: 200005
    Group: "AG_JOB_CHANGE"
    Name: "Official Adventurer"
    Condition: " Class >= JOB_SWORDMAN && Class <= JOB_THIEF "
    Reward:
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 10
  - ID: 200006
    Group: "AG_JOB_CHANGE"
    Name: "First step of job change!"
    Condition: " Class >= JOB_SWORDMAN && Class <= JOB_THIEF "
    Reward:
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 20
  - ID: 200007
    Group: "AG_JOB_CHANGE"
    Name: "Veteran Adventurer! (1)"
    Condition: " Class >= JOB_KNIGHT && Class <= JOB_ASSASSIN "
    Reward:
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 25
  - ID: 200008
    Group: "AG_JOB_CHANGE"
    Name: "Veteran Adventurer! (2)"
    Condition: " Class >= JOB_CRUSADER && Class <= JOB_DANCER "
    Reward:
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 25
  - ID: 200009
    Group: "AG_JOB_CHANGE"
    Name: "Warrior (1)"
    Condition: " Class >= JOB_LORD_KNIGHT && Class <= JOB_ASSASSIN_CROSS "
    Reward:
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 30
  - ID: 200010
    Group: "AG_JOB_CHANGE"
    Name: "Warrior (2)"
    Condition: " Class >= JOB_PALADIN && Class <= JOB_GYPSY "
    Reward:
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 30
  - ID: 200011
    Group: "AG_JOB_CHANGE"
    Name: "Elite Adventurer! (1)"
    Condition: " Class >= JOB_RUNE_KNIGHT && Class <= JOB_GUILLOTINE_CROSS "
    Reward:
    #  ItemID: 16483
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 50
  - ID: 200012
    Group: "AG_JOB_CHANGE"
    Name: "Transcendentaler! (1)"
    Condition: " Class >= JOB_RUNE_KNIGHT_T && Class <= JOB_GUILLOTINE_CROSS_T "
    Reward:
    #  ItemID: 16483
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 60
  - ID: 200013
    Group: "AG_JOB_CHANGE"
    Name: "Elite Adventurer! (2)"
    Condition: " Class >= JOB_ROYAL_GUARD && Class <= JOB_SHADOW_CHASER "
    Reward:
    #  ItemID: 16483
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 50
  - ID: 200014
    Group: "AG_JOB_CHANGE"
    Name: "Transcendentaler! (2)"
    Condition: " Class >= JOB_ROYAL_GUARD_T && Class <= JOB_SHADOW_CHASER_T "
    Reward:
    #  ItemID: 16483
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 60
  - ID: 200015
    Group: "AG_JOB_CHANGE"
    Name: "The way of exceptional character"
    Condition: " Class == JOB_SUPER_NOVICE || Class == JOB_GUNSLINGER || Class == JOB_NINJA || Class == JOB_TAEKWON "
    Reward:
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 10
  - ID: 200016
    Group: "AG_JOB_CHANGE"
    Name: "This is My way!"
    Condition: " Class == JOB_STAR_GLADIATOR || Class == JOB_SOUL_LINKER || Class == JOB_KAGEROU || Class == JOB_OBORO || Class == JOB_REBELLION "
    Reward:
    #  ItemID: 16483
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 20
  - ID: 200017
    Group: "AG_GOAL_STATUS"
    Name: "Bearish Power!"
    Condition: " readparam(bStr) >= 90 "
    Score: 10
  - ID: 200018
    Group: "AG_GOAL_STATUS"
    Name: "Overflowing Magic!"
    Condition: " readparam(bInt) >= 90 "
    Score: 10
  - ID: 200019
    Group: "AG_GOAL_STATUS"
    Name: "Healthy Body and Mental Health!"
    Condition: " readparam(bVit) >= 90 "
    Score: 10
  - ID: 200020
    Group: "AG_GOAL_STATUS"
    Name: "Speed of Light"
    Condition: " readparam(bAgi) >= 90 "
    Score: 10
  - ID: 200021
    Group: "AG_GOAL_STATUS"
    Name: "Hawk Eyes"
    Condition: " readparam(bDex) >= 90 "
    Score: 10
  - ID: 200022
    Group: "AG_GOAL_STATUS"
    Name: "Maximum Luck"
    Condition: " readparam(bLuk) >= 90 "
    Score: 10
  - ID: 200023
    Group: "AG_GOAL_STATUS"
    Name: "Dragonlike Power!"
    Condition: " readparam(bStr) >= 125 "
    Reward:
      Script: " sc_start SC_GIANTGROWTH,180000,1; "
    Score: 20
  - ID: 200024
    Group: "AG_GOAL_STATUS"
    Name: "Magic Insanity"
    Condition: " readparam(bInt) >= 125 "
    Reward:
      Script: " specialeffect2 EF_HASTEUP; bonus_script \"{ bonus2 bHPLossRate,100,10000; bonus bBaseAtk,20; bonus bAspdRate,25; }\",60,0,0,EFST_STEAMPACK; "
    Score: 20
  - ID: 200025
    Group: "AG_GOAL_STATUS"
    Name: "Rock Alloy"
    Condition: " readparam(bVit) >= 125 "
    Reward:
      Script: " specialeffect2 EF_HEAL3; sc_start2 SC_S_LIFEPOTION,600000,-5,5; "
    Score: 20
  - ID: 200026
    Group: "AG_GOAL_STATUS"
    Name: "Speed of Light"
    Condition: " readparam(bAgi) >= 125 "
    Reward:
      Script: " specialeffect2 EF_STEAL; sc_start SC_INCFLEE2,60000,20; "
    Score: 20
  - ID: 200027
    Group: "AG_GOAL_STATUS"
    Name: "Falcon's Eyes"
    Condition: " readparam(bDex) >= 125 "
    Reward:
      Script: " specialeffect2 EF_MAGICALATTHIT; sc_start SC_INCCRI,300000,30; "
    Score: 20
  - ID: 200028
    Group: "AG_GOAL_STATUS"
    Name: "Lucky Fever"
    Condition: " readparam(bLuk) >= 125 "
    Reward:
      Script: " specialeffect2 EF_GLORIA; sc_start SC_GLORIA,15000,0; "
    Score: 20
  - ID: 200029
    Group: "AG_GOAL_STATUS"
    Name: "Incarnation of Love and Hate"
    Condition: " BaseLevel == 99 && Class == JOB_NOVICE "
    Reward:
    #  ItemID: 16483
      Script: " specialeffect2 EF_BLESSING; sc_start SC_BLESSING,30000,10; "
    Score: 30
  - ID: 200030
    Group: "AG_GOAL_STATUS"
    Name: "I really love it!"
    Condition: " BaseLevel == 99 && (Class >= JOB_SWORDMAN && Class <= JOB_THIEF) "
    Reward:
    #  ItemID: 16504
      Script: " specialeffect2 EF_BLESSING; sc_start SC_BLESSING,30000,10; "
    Score: 30
  - ID: 200031
    Group: "AG_JOB_CHANGE"
    Name: "Reborn in Valhalla!"
    Condition: " Class == JOB_NOVICE_HIGH "
    Reward:
    #  ItemID: 23575
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 10
  - ID: 200032
    Group: "AG_GOAL_LEVEL"
    Name: "The start of another adventure!"
    Condition: " BaseLevel == 100 "
    #Reward:
    #  ItemID: 23585
    Score: 10
  - ID: 200033
    Group: "AG_GOAL_LEVEL"
    Name: "With a new mind!(1)"
    Condition: " BaseLevel == 170 && (Class >= JOB_RUNE_KNIGHT && Class <= JOB_GUILLOTINE_CROSS_T) "
    #Reward:
    #  ItemID: 6959
    Score: 50
  - ID: 200034
    Group: "AG_GOAL_LEVEL"
    Name: "With a new mind!(2)"
    Condition: " BaseLevel == 170 && (Class >= JOB_ROYAL_GUARD && Class <= JOB_SHADOW_CHASER_T) "
    #Reward:
    #  ItemID: 6959
    Score: 50
  - ID: 220000
    Group: "AG_CHATTING_CREATE"
    Name: "Community begin"
    Score: 10
  - ID: 220001
    Group: "AG_CHATTING_DYING"
    Name: "A mouth only moment"
    Score: 10
  - ID: 220002
    Group: "AG_CHATTING_COUNT"
    Name: "Admiring the chatter"
    Condition: " ARG0 == 20 "
    Score: 10
  - ID: 220003
    Group: "AG_ADD_FRIEND"
    Name: "My friend's friend~"
    Condition: " ARG0 >= 1 "
    Score: 10
  - ID: 220004
    Group: "AG_ADD_FRIEND"
    Name: "A competition of popularity"
    Condition: " ARG0 >= 10 "
    Score: 10
  - ID: 220005
    Group: "AG_PARTY"
    Name: "Let's Party~"
    Score: 10
  - ID: 220006
    Group: "AG_MARRY"
    Name: "Married with who..?"
    Reward:
      TitleID: 1022
    Score: 20
  - ID: 220007
    Group: "AG_BABY"
    Name: "Can you grow?"
    Condition: " ARG0 == 1 "
    Reward:
      TitleID: 1032
    Score: 20
  - ID: 220008
    Group: "AG_BABY"
    Name: "Being a parent"
    Condition: " ARG0 == 2 "
    Reward:
      TitleID: 1033
    Score: 20
  - ID: 220009
    Group: "AG_SPEND_ZENY"
    Name: "Activating the market economy (1)"
    Condition: " ARG0 >= 10000 "
    Target:
      - Id: 0
        Count: 10000
    Score: 10
  - ID: 220010
    Group: "AG_SPEND_ZENY"
    Name: "Activating the market economy (2)"
    Condition: " ARG0 >= 100000 "
    Target:
      - Id: 0
        Count: 100000
    Score: 15
  - ID: 220011
    Group: "AG_SPEND_ZENY"
    Name: "Activating the market economy (3)"
    Condition: " ARG0 >= 500000 "
    Target:
      - Id: 0
        Count: 500000
    Score: 20
  - ID: 220012
    Group: "AG_SPEND_ZENY"
    Name: "Activating the market economy (4)"
    Condition: " ARG0 >= 1000000 "
    Target:
      - Id: 0
        Count: 1000000
    Score: 30
  - ID: 220013
    Group: "AG_SPEND_ZENY"
    Name: "Activating the market economy (5)"
    Condition: " ARG0 >= 5000000 "
    Target:
      - Id: 0
        Count: 5000000
    Score: 50
  - ID: 220014
    Group: "AG_ENCHANT_SUCCESS"
    Name: "I can't quit from refining! (1)"
    Condition: " ARG0 == 1 && ARG1 >= 7 "
    Score: 10
  - ID: 220015
    Group: "AG_ENCHANT_SUCCESS"
    Name: "I can't quit from refining! (2)"
    Condition: " ARG0 == 1 && ARG1 >= 12 "
    Score: 15
  - ID: 220016
    Group: "AG_ENCHANT_SUCCESS"
    Name: "I can't quit from refining! (3)"
    Condition: " ARG0 == 2 && ARG1 >= 7 "
    Score: 10
  - ID: 220017
    Group: "AG_ENCHANT_SUCCESS"
    Name: "I can't quit from refining! (4)"
    Condition: " ARG0 == 2 && ARG1 >= 12 "
    Score: 15
  - ID: 220018
    Group: "AG_ENCHANT_SUCCESS"
    Name: "I can't quit from refining! (5)"
    Condition: " ARG0 == 3 && ARG1 >= 7 "
    Score: 15
  - ID: 220019
    Group: "AG_ENCHANT_SUCCESS"
    Name: "I can't quit from refining! (6)"
    Condition: " ARG0 == 3 && ARG1 >= 12 "
    Score: 20
  - ID: 220020
    Group: "AG_ENCHANT_SUCCESS"
    Name: "I can't quit from refining! (7)"
    Condition: " ARG0 == 4 && ARG1 >= 7 "
    Score: 20
  - ID: 220021
    Group: "AG_ENCHANT_SUCCESS"
    Name: "I can't quit from refining! (8)"
    Condition: " ARG0 == 4 && ARG1 >= 12 "
    Score: 30
  - ID: 220022
    Group: "AG_ENCHANT_FAIL"
    Name: "Human's greed has no ending.."
    Score: 10
  - ID: 220023
    Group: "AG_GET_ITEM"
    Name: "I found it! (1)"
    Condition: " ARG0 >= 100 "
    Score: 10
  - ID: 220024
    Group: "AG_GET_ITEM"
    Name: "I found it! (2)"
    Condition: " ARG0 >= 1000 "
    Score: 10
  - ID: 220025
    Group: "AG_GET_ITEM"
    Name: "I found it! (3)"
    Condition: " ARG0 >= 5000 "
    Score: 15
  - ID: 220026
    Group: "AG_GET_ITEM"
    Name: "I found it! (4)"
    Condition: " ARG0 >= 10000 "
    Score: 15
  - ID: 220027
    Group: "AG_GET_ITEM"
    Name: "I found it! (5)"
    Condition: " ARG0 >= 50000 "
    Score: 20
  - ID: 220028
    Group: "AG_GET_ITEM"
    Name: "I found it! (6)"
    Condition: " ARG0 >= 100000 "
    Score: 20
  - ID: 220029
    Group: "AG_GET_ITEM"
    Name: "I found it! (7)"
    Condition: " ARG0 >= 150000 "
    Score: 30
  - ID: 220030
    Group: "AG_GET_ZENY"
    Name: "Rich King (1)"
    Condition: " ARG0 >= 10000 "
    Score: 10
  - ID: 220031
    Group: "AG_GET_ZENY"
    Name: "Rich King (2)"
    Condition: " ARG0 >= 100000 "
    Score: 15
  - ID: 220032
    Group: "AG_GET_ZENY"
    Name: "Rich King (3)"
    Condition: " ARG0 >= 1000000 "
    Score: 20
  - ID: 220033
    Group: "AG_GET_ZENY"
    Name: "Rich King (4)"
    Condition: " ARG0 >= 10000000 "
    Score: 25
  - ID: 220034
    Group: "AG_GET_ZENY"
    Name: "Rich King (5)"
    Condition: " ARG0 >= 100000000 "
    Score: 30
  - ID: 220035
    Group: "AG_GET_ZENY"
    Name: "Rich King (6)"
    Condition: " ARG0 >= 1000000000 "
    Score: 40
  - ID: 230100
    Group: "AG_TAMING"
    Name: "Poring is Love"
    Dependent:
      - Id: 230101
      - Id: 230102
      - Id: 230103
      - Id: 230104
    Reward:
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
      TitleID: 1025
    Score: 50
  - ID: 230110
    Group: "AG_TAMING"
    Name: "Entomologist"
    Dependent:
      - Id: 230111
      - Id: 230112
      - Id: 230113
      - Id: 230114
      - Id: 230115
      - Id: 230116
    Reward:
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
      TitleID: 1026
    Score: 50
  - ID: 230120
    Group: "AG_TAMING"
    Name: "Animals are also our friend"
    Dependent:
      - Id: 230121
      - Id: 230122
      - Id: 230123
      - Id: 230124
      - Id: 230125
      - Id: 230126
      - Id: 230127
      - Id: 230128
    Reward:
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
      TitleID: 1027
    Score: 50
  - ID: 230140
    Group: "AG_TAMING"
    Name: "Monster Girls Unite!!"
    Dependent:
      - Id: 230141
      - Id: 230142
      - Id: 230143
      - Id: 230144
      - Id: 230145
      - Id: 230146
      - Id: 230147
    Reward:
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
      TitleID: 1029
    Score: 50
  - ID: 230101
    Group: "AG_TAMING"
    Name: "Poring - taming"
    Target:
      - Id: 0
        MobID: 1002
        Count: 1
    Score: 10
  - ID: 230102
    Group: "AG_TAMING"
    Name: "Drops - taming"
    Target:
      - Id: 0
        MobID: 1113
        Count: 1
    Score: 10
  - ID: 230103
    Group: "AG_TAMING"
    Name: "Poporing - taming"
    Target:
      - Id: 0
        MobID: 1031
        Count: 1
    Score: 10
  - ID: 230104
    Group: "AG_TAMING"
    Name: "Novice Poring - taming"
    #Target:
    #  - Id: 0
    #    MobID: 2398
    #    Count: 1
    Score: 10
  - ID: 230111
    Group: "AG_TAMING"
    Name: "Chonchon - taming"
    Target:
      - Id: 0
        MobID: 1011
        Count: 1
    Score: 10
  - ID: 230112
    Group: "AG_TAMING"
    Name: "Steel Chonchon - taming"
    Target:
      - Id: 0
        MobID: 1042
        Count: 1
    Score: 10
  - ID: 230113
    Group: "AG_TAMING"
    Name: "Hunter Fly - taming"
    Target:
      - Id: 0
        MobID: 1035
        Count: 1
    Score: 10
  - ID: 230114
    Group: "AG_TAMING"
    Name: "Rocker - taming"
    Target:
      - Id: 0
        MobID: 1052
        Count: 1
    Score: 10
  - ID: 230115
    Group: "AG_TAMING"
    Name: "Spore - taming"
    Target:
      - Id: 0
        MobID: 1014
        Count: 1
    Score: 10
  - ID: 230116
    Group: "AG_TAMING"
    Name: "Poison Spore - taming"
    Target:
      - Id: 0
        MobID: 1077
        Count: 1
    Score: 10
  - ID: 230121
    Group: "AG_TAMING"
    Name: "Lunatic - taming"
    Target:
      - Id: 0
        MobID: 1063
        Count: 1
    Score: 10
  - ID: 230122
    Group: "AG_TAMING"
    Name: "Picky - taming"
    Target:
      - Id: 0
        MobID: 1049
        Count: 1
    Score: 10
  - ID: 230123
    Group: "AG_TAMING"
    Name: "Savage Bebe - taming"
    Target:
      - Id: 0
        MobID: 1167
        Count: 1
    Score: 10
  - ID: 230124
    Group: "AG_TAMING"
    Name: "Baby Desert Wolf - taming"
    Target:
      - Id: 0
        MobID: 1107
        Count: 1
    Score: 10
  - ID: 230125
    Group: "AG_TAMING"
    Name: "Smokie - taming"
    Target:
      - Id: 0
        MobID: 1056
        Count: 1
    Score: 10
  - ID: 230126
    Group: "AG_TAMING"
    Name: "Yoyo - taming"
    Target:
      - Id: 0
        MobID: 1057
        Count: 1
    Score: 10
  - ID: 230127
    Group: "AG_TAMING"
    Name: "Peco Peco - taming"
    Target:
      - Id: 0
        MobID: 1019
        Count: 1
    Score: 10
  - ID: 230128
    Group: "AG_TAMING"
    Name: "Petite - taming"
    Target:
      - Id: 0
        MobID: 1155
        Count: 1
    Score: 10
  - ID: 230141
    Group: "AG_TAMING"
    Name: "Munak - taming"
    Target:
      - Id: 0
        MobID: 1026
        Count: 1
    Score: 10
  - ID: 230142
    Group: "AG_TAMING"
    Name: "Isis - taming"
    Target:
      - Id: 0
        MobID: 1029
        Count: 1
    Score: 10
  - ID: 230143
    Group: "AG_TAMING"
    Name: "Sohee - taming"
    Target:
      - Id: 0
        MobID: 1170
        Count: 1
    Score: 10
  - ID: 230144
    Group: "AG_TAMING"
    Name: "Zherlthsh - taming"
    Target:
      - Id: 0
        MobID: 1200
        Count: 1
    Score: 10
  - ID: 230145
    Group: "AG_TAMING"
    Name: "Alice - taming"
    Target:
      - Id: 0
        MobID: 1275
        Count: 1
    Score: 10
  - ID: 230146
    Group: "AG_TAMING"
    Name: "Succubus - taming"
    Target:
      - Id: 0
        MobID: 1370
        Count: 1
    Score: 10
  - ID: 230147
    Group: "AG_TAMING"
    Name: "Loli Ruri - taming"
    Target:
      - Id: 0
        MobID: 1505
        Count: 1
    Score: 10
  - ID: 230200
    Group: "AG_BATTLE"
    Name: "Poring seeker"
    Dependent:
      - Id: 230201
      - Id: 230202
      - Id: 230203
    Score: 10
  - ID: 230201
    Group: "AG_BATTLE"
    Name: "Exploring Poring's life (1)"
    Target:
      - Id: 0
        MobID: 1002
        Count: 10
    #  - Id: 1
    #    MobID: 2398
    #    Count: 10
      - Id: 2
        MobID: 1113
        Count: 10
      - Id: 3
        MobID: 1031
        Count: 10
      - Id: 4
        MobID: 1242
        Count: 10
    Score: 10
  - ID: 230202
    Group: "AG_BATTLE"
    Name: "Exploring Poring's life (2)"
    Target:
      - Id: 0
        MobID: 1090
        Count: 1
      - Id: 1
        MobID: 1582
        Count: 1
      - Id: 2
        MobID: 1096
        Count: 1
      - Id: 3
        MobID: 1388
        Count: 1
      - Id: 4
        MobID: 1120
        Count: 1
    Score: 20
  - ID: 230203
    Group: "AG_BATTLE"
    Name: "Exploring Poring's life (3)"
    Target:
      - Id: 0
        MobID: 1613
        Count: 5
      - Id: 1
        MobID: 1977
        Count: 5
      - Id: 2
        MobID: 1836
        Count: 5
    Score: 20
  - ID: 240000
    Group: "AG_GOAL_LEVEL"
    Name: "First Login after the introduction of Achievement Tasks"
    Score: 10
    Condition: " true "
  - ID: 240001
    Group: "AG_GOAL_ACHIEVE"
    Name: "Reaching Level 1"
    Condition: " AchievementLevel >= 1 "
    Reward:
      ItemID: 644
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 10
  - ID: 240002
    Group: "AG_GOAL_ACHIEVE"
    Name: "Reaching Level 2"
    Condition: " AchievementLevel >= 2 "
    Dependent:
      - Id: 240001
    Reward:
      ItemID: 644
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 10
  - ID: 240003
    Group: "AG_GOAL_ACHIEVE"
    Name: "Reaching Level 3"
    Condition: " AchievementLevel >= 3 "
    Dependent:
      - Id: 240002
    Reward:
      ItemID: 644
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 10
  - ID: 240004
    Group: "AG_GOAL_ACHIEVE"
    Name: "Reaching Level 4"
    Condition: " AchievementLevel >= 4 "
    Dependent:
      - Id: 240003
    Reward:
      ItemID: 644
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 10
  - ID: 240005
    Group: "AG_GOAL_ACHIEVE"
    Name: "Reaching Level 5"
    Condition: " AchievementLevel >= 5 "
    Dependent:
      - Id: 240004
    Reward:
      ItemID: 644
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 10
  - ID: 240006
    Group: "AG_GOAL_ACHIEVE"
    Name: "Reaching Level 6"
    Condition: " AchievementLevel >= 6 "
    Dependent:
      - Id: 240005
    Reward:
      ItemID: 644
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 10
  - ID: 240007
    Group: "AG_GOAL_ACHIEVE"
    Name: "Reaching Level 7"
    Condition: " AchievementLevel >= 7 "
    Dependent:
      - Id: 240006
    Reward:
      ItemID: 644
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 10
  - ID: 240008
    Group: "AG_GOAL_ACHIEVE"
    Name: "Reaching Level 8"
    Condition: " AchievementLevel >= 8 "
    Dependent:
      - Id: 240007
    Reward:
      ItemID: 644
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 10
  - ID: 240009
    Group: "AG_GOAL_ACHIEVE"
    Name: "Reaching Level 9"
    Condition: " AchievementLevel >= 9 "
    Dependent:
      - Id: 240008
    Reward:
      ItemID: 644
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 10
  - ID: 240010
    Group: "AG_GOAL_ACHIEVE"
    Name: "Reaching Level 10"
    Condition: " AchievementLevel >= 10 "
    Dependent:
      - Id: 240009
    Reward:
      ItemID: 644
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
      TitleID: 1023
    Score: 10
  - ID: 240011
    Group: "AG_GOAL_ACHIEVE"
    Name: "Reaching Level 11"
    Condition: " AchievementLevel >= 11 "
    Dependent:
      - Id: 240010
    Reward:
      ItemID: 644
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 10
  - ID: 240012
    Group: "AG_GOAL_ACHIEVE"
    Name: "Reaching Level 12"
    Condition: " AchievementLevel >= 12 "
    Dependent:
      - Id: 240011
    Reward:
      ItemID: 644
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 10
  - ID: 240013
    Group: "AG_GOAL_ACHIEVE"
    Name: "Reaching Level 13"
    Condition: " AchievementLevel >= 13 "
    Dependent:
      - Id: 240012
    Reward:
      ItemID: 644
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 10
  - ID: 240014
    Group: "AG_GOAL_ACHIEVE"
    Name: "Reaching Level 14"
    Condition: " AchievementLevel >= 14 "
    Dependent:
      - Id: 240013
    Reward:
      ItemID: 644
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 10
  - ID: 240015
    Group: "AG_GOAL_ACHIEVE"
    Name: "Reaching Level 15"
    Condition: " AchievementLevel >= 15 "
    Dependent:
      - Id: 240014
    Reward:
      ItemID: 644
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 10
  - ID: 240016
    Group: "AG_GOAL_ACHIEVE"
    Name: "Reaching Level 16"
    Condition: " AchievementLevel >= 16 "
    Dependent:
      - Id: 240015
    Reward:
      ItemID: 644
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 10
  - ID: 240017
    Group: "AG_GOAL_ACHIEVE"
    Name: "Reaching Level 17"
    Condition: " AchievementLevel >= 17 "
    Dependent:
      - Id: 240016
    Reward:
      ItemID: 644
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 10
  - ID: 240018
    Group: "AG_GOAL_ACHIEVE"
    Name: "Reaching Level 18"
    Condition: " AchievementLevel >= 18 "
    Dependent:
      - Id: 240017
    Reward:
      ItemID: 644
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 10
  - ID: 240019
    Group: "AG_GOAL_ACHIEVE"
    Name: "Reaching Level 19"
    Condition: " AchievementLevel >= 19 "
    Dependent:
      - Id: 240018
    Reward:
      ItemID: 644
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
    Score: 10
  - ID: 240020
    Group: "AG_GOAL_ACHIEVE"
    Name: "Reaching Level 20"
    Condition: " AchievementLevel >= 20 "
    Dependent:
      - Id: 240019
    Reward:
      ItemID: 644
      Script: " specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,30000,10; "
      TitleID: 1024
    Score: 10
 
Viewed 568 times, submitted by Guest.