viewing paste Unknown #49500 | Haskell

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
//================= Hercules Script =======================================
//=       _   _                     _
//=      | | | |                   | |
//=      | |_| | ___ _ __ ___ _   _| | ___  ___
//=      |  _  |/ _ \ '__/ __| | | | |/ _ \/ __|
//=      | | | |  __/ | | (__| |_| | |  __/\__ \
//=      \_| |_/\___|_|  \___|\__,_|_|\___||___/
//================= License ===============================================
//= This file is part of Hercules.
//= http://herc.ws - http://github.com/HerculesWS/Hercules
//=
//= Copyright (C) 2012-2016  Hercules Dev Team
//= Copyright (C)  Euphy
//= Copyright (C)  Masao
//= Copyright (C)  Xantara
//= Copyright (C)  Paradox924X
//= Copyright (C)  L0ne_W0lf
//= Copyright (C)  Samuray22
//= Copyright (C)  Silent
//= Copyright (C)  Kargha
//= Copyright (C)  Playtester
//= Copyright (C)  DracoRPG
//= Copyright (C)  Poki#3
//= Copyright (C)  Nexon
//= Copyright (C)  dafide18
//= Copyright (C)  massdriller
//= Copyright (C)  shadowlady
//= Copyright (C)  Shinigami
//= Copyright (C)  Darkchild
//= Copyright (C)  kobra_k88
//= Copyright (C)  Lupus
//= Copyright (C)  Skotlex
//= Copyright (C)  dafide18
//= Copyright (C)  Syrus22
//=
//= 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/>.
//=========================================================================
//= Refining NPCs
//================= Description ===========================================
//= Refining NPCs and Metal Salesmen.
//================= Current Version =======================================
//= 3.3.2
//=========================================================================
 
//== Christopher: Geffen Blacksmith ========================
geffen_in,110,172,0 script  Christopher#1   1_M_SMITH,{
    mes "[Christopher Guillenrow]";
    mes "Welcome to Christopher's Workshop. Ye can get all yer stuff for forging here. What business";
    mes "brings ye to me?";
    next;
    switch(select("Purchase Anvil", "Purchase Forging Item", "Purchase Metal", "Purify Rough Ores", "Cancel")) {
    case 1:
        mes "[Christopher Guillenrow]";
        mes "A better Anvil gives ye a greeeater chance to make better weapons, ye know? But they'll cost ye more zeny. Just get it off yer chest and buy what fits your purposes best, laddy.";
        next;
        switch(select("Anvil - 30,000 zeny", "Oridecon Anvil - 120,000 zeny", "Golden Anvil - 300,000 zeny", "Better Anvil than the others.", "Cancel.")) {
        case 1:
            if (Zeny < 30000) {
                mes "[Christopher Guillenrow]";
                mes "I don't think I can let ye have this with the zeny ye have. I can't lose me money because of ye.";
                close;
            }
            getitem Anvil,1; // Anvil
            Zeny -= 30000;
            mes "[Christopher Guillenrow]";
            mes "This is the cheapest one, but efficient enough to forge most items. Thank ye fer shopping at me workshop.  Feel free to come anytime, whenever ye need.";
            close;
        case 2:
            if (Zeny < 120000) {
                mes "[Christopher Guillenrow]";
                mes "I don't think I can let ye have this with the zeny ye have. I can't lose me money because of ye.";
                close;
            }
            getitem Oridecon_Anvil,1; // Oridecon_Anvil
            Zeny -= 120000;
            mes "[Christopher Guillenrow]";
            mes "Aye, friend ye have an eye for the anvil. This must be the proper anvil for a Blacksmith, eh? Thank ye fer shopping at me workshop.  Feel free to come anytime, whenever ye need.";
            close;
        case 3:
            if (Zeny < 300000) {
                mes "[Christopher Guillenrow]";
                mes "I don't think I can let ye have this with the zeny ye have. I can't lose me money because of ye.";
                close;
            }
            getitem Golden_Anvil,1; // Golden_Anvil
            Zeny -= 300000;
            mes "[Christopher Guillenrow]";
            mes "This one is the best among all me stuffs in me workshop! With this, ye can rule the Blacksmith world! Thank ye fer shopping at me workshop.  Feel free to come anytime, whenever ye need.";
            close;
        case 4:
            mes "[Christopher Guillenrow]";
            mes "Well, sorry. But I don't have anythin' harder' than the Golden Anvil.";
            next;
            mes "[Christopher Guillenrow]";
            mes "Me thinks 'Ringgel,' the Legendary Anvil Maker would have one. But, I don't think ye can find him, though he be somewhere in this world.";
            close;
        case 5:
            mes "[Christopher Guillenrow]";
            mes "Okay, feel free to come anytime, whenever ye need. Fare ye well.";
            close;
        }
    case 2:
        mes "[Christopher Guillenrow]";
        mes "A respectable blacksmith uses fine tools. Ye can become one o'those with me Stuff. Choose anything ye want.";
        next;
        switch(select("Mini-Furnace - 150 zeny", "Iron Hammer - 1000 zeny", "Golden Hammer - 3000 zeny", "Oridecon Hammer - 5000 zeny", "Cancel.")) {
        case 1:
            mes "[Christopher Guillenrow]";
            mes "It's a much needed tool fer refining metal! So, How many do ye wish to buy? If ye want to quit, just type the number '0.'";
            next;
            while(1) {
                input .@input;
                if (.@input == 0) {
                    mes "[Christopher Guillenrow]";
                    mes "Aye, the deal is canceled. Fare ye well.";
                    close;
                }
                else if ((.@input < 0) || (.@input > 500)) {
                    mes "[Christopher Guillenrow]";
                    mes "Ye can buy 500, er less.";
                    next;
                }
                else {
                    break;
                }
            }
            .@sell = .@input * 150;
            if (Zeny < .@sell) {
                mes "[Christopher Guillenrow]";
                mes "I don't think I can let ye have this with the zeny ye have. I can't lose me money because of ye.";
                close;
            }
            if (checkweight(Portable_Furnace,.@input) == 0) {
                mes "[Christopher Guillenrow]";
                mes "Ye look like you don't got enough room in yer inventory. Put some stuff into your Kafra Storage, why don't ye?";
                close;
            }
            getitem Portable_Furnace,.@input; // Portable_Furnace
            Zeny -= .@sell;
            mes "[Christopher Guillenrow]";
            mes "Thank ye fer shopping at me workshop. Feel free to come anytime, whenever ye need.";
            close;
        case 2:
            if (Zeny < 1000) {
                mes "[Christopher Guillenrow]";
                mes "I don't think I can let ye have this with the zeny ye have. I can't lose me money because of ye.";
                close;
            }
            getitem Iron_Hammer,1; // Iron_Hammer
            Zeny -= 1000;
            mes "[Christopher Guillenrow]";
            mes "Thank ye fer shopping at me workshop. Feel free to come anytime, whenever ye need.";
            close;
        case 3:
            if (Zeny < 3000) {
                mes "[Christopher Guillenrow]";
                mes "I don't think I can let ye have this with the zeny ye have. I can't lose me money because of ye.";
                close;
            }
            getitem Golden_Hammer,1; // Golden_Hammer
            Zeny -= 3000;
            mes "[Christopher Guillenrow]";
            mes "Thank ye fer shopping at me workshop. Feel free to come anytime, whenever ye need.";
            close;
        case 4:
            if (Zeny < 5000) {
                mes "[Christopher Guillenrow]";
                mes "I don't think I can let ye have this with the zeny ye have. I can't lose me money because of ye.";
                close;
            }
            getitem Oridecon_Hammer,1; // Oridecon_Hammer
            Zeny -= 5000;
            mes "[Christopher Guillenrow]";
            mes "Thank ye fer shopping at me workshop. Feel free to come anytime, whenever ye need.";
            close;
        case 5:
            mes "[Christopher Guillenrow]";
            mes "Feel free to come anytime, whenever ye need. Fare ye well.";
            close;
        }
    case 3:
        mes "[Christopher Guillenrow]";
        mes "I prepare every Metal, and only the high quality ones o'course. Now then, which one do ye need?";
        next;
        switch(select("Phracon - 200z.", "Emveretarcon - 1000z.", "Cancel.")) {
        case 1:
            mes "[Christopher Guillenrow]";
            mes "So, How many do ye wish to buy? If ye dont want anything, just type the number as '0.'";
            next;
            while(1) {
                input .@input;
                if (.@input == 0) {
                    mes "[Christopher Guillenrow]";
                    mes "Deal has";
                    mes "been canceled.";
                    mes "Fare ye well.";
                    close;
                }
                else if ((.@input < 0) || (.@input > 500)) {
                    mes "[Christopher Guillenrow]";
                    mes "Ye can buy 500, er less.";
                    next;
                }
                else {
                    break;
                }
            }
            .@sell = .@input * 200;
            if (Zeny < .@sell) {
                mes "[Christopher Guillenrow]";
                mes "Ye don't have enough money. Ye know I can't sell this at a lower price... You know how the wifey nags about Zeny.";
                close;
            }
            if (checkweight(Phracon,.@input) == 0) {
                mes "[Christopher Guillenrow]";
                mes "Ye look like you don't have the room to carry anythin' new. Why don't ye put some things into Kafra Storage n' come back.";
                close;
            }
            getitem Phracon,.@input; // Phracon
            Zeny -= .@sell;
            mes "[Christopher Guillenrow]";
            mes "Thank ye fer shopping at me workshop. Feel free to come anytime, whenever ye need.";
            close;
        case 2:
            mes "[Christopher Guillenrow]";
            mes "So, how many do ye wish to buy? If ye dont want anything at all, just type the number as '0.'";
            next;
            while(1) {
                input .@input;
                if (.@input == 0) {
                    mes "[Christopher Guillenrow]";
                    mes "Deal has";
                    mes "been canceled.";
                    mes "Fare ye well.";
                    close;
                }
                else if ((.@input < 0) || (.@input > 500)) {
                    mes "[Christopher Guillenrow]";
                    mes "Ye can buy 500, er less.";
                    next;
                }
                else {
                    break;
                }
            }
            .@sell = .@input * 1000;
            if (Zeny < .@sell) {
                mes "[Christopher Guillenrow]";
                mes "I don't think I can let ye have this with the zeny ye have. I can't lose me money because of ye.";
                close;
            }
            if (checkweight(Emveretarcon,.@input) == 0) {
                mes "[Christopher Guillenrow]";
                mes "Me friend... Seems to me ye don't have Inventory space. Why doncha put some things into Kafra Storage first?";
                close;
            }
            getitem Emveretarcon,.@input; // Emveretarcon
            Zeny -= .@sell;
            mes "[Christopher Guillenrow]";
            mes "Thank ye fer shopping at me workshop. Feel free to come anytime, whenever ye need, whenever ye want.";
            close;
        case 3:
            mes "[Christopher Guillenrow]";
            mes "Feel free to come anytime, whenever ye need. Fare ye well.";
            close;
        }
    case 4:
        mes "[Christopher Guillenrow]";
        mes "I can purify yer Oridecon and Elunium. I make a refined Ore out of 5 o'each rough ones. Well... Which one do ye want to make?";
        next;
        switch(select("Make Oridecon", "Make Elunium", "Cancel.")) {
        case 1:
            if (countitem(Oridecon_Stone) < 5) {
                mes "[Christopher Guillenrow]";
                mes "I told ye, I need 5 o'the rough Oridecons fer one Oridecon.";
                close;
            }
            else {
                delitem Oridecon_Stone,5;
                getitem Oridecon,1; // Oridecon
                mes "[Christopher Guillenrow]";
                mes "Here's an Oridecon fer ye. Ye will be always welcome here, I'll be waitin' for ye.";
                close;
            }
        case 2:
            if (countitem(Elunium_Stone) < 5) {
                mes "[Christopher Guillenrow]";
                mes "I told ye, I need 5 rough Eluniums fer one Elunium.";
                close;
            }
            else {
                delitem Elunium_Stone,5;
                getitem Elunium,1; // Elunium
                mes "[Christopher Guillenrow]";
                mes "Arrr, here's yer Elunium. Yer business is always welcome here, so feel free to come again.";
                close;
            }
        case 3:
            mes "[Christopher Guillenrow]";
            mes "Feel free to come anytime, whenever ye need. Fare ye well.";
            close;
        }
    case 5:
        mes "[Christopher Guillenrow]";
        mes "Feel free to come anytime, whenever ye need and whenever ye want. Fare ye well.";
        close;
    }
}
 
//== Paul Spanner: Einbroch Blacksmith Supplier ============
ein_in01,38,29,0    script  Paul Spanner    1_M_SMITH,{
    if (checkweight(Knife,1) == 0) {
        mes "- Wait a minute !! -";
        mes "- Currently you're carrying -";
        mes "- too many items with you. -";
        mes "- Please try again -";
        mes "- after you lose some weight. -";
        close;
    }
    mes "[Paul Spanner]";
    mes "Welcome, my friend.";
    mes "In my shop, you will find everything that you need in forging.";
    mes "Tell me what you need.";
    next;
    switch(select("Purchase Anvil.", "Purchase Forging Items.", "Purchase Metal.", "Process Ores.", "Quit.")) {
    case 1:
        mes "[Paul Spanner]";
        mes "Anvil is the most necessary item for Blacksmiths.";
        mes "Since you will use an Anvil more than once, you'd better buy a nice one.";
        next;
        switch(select("Anvil - 30,000z.", "Oridecon Anvil - 120,000z.", "Golden Anvil - 300,000z.", "I need a better anvil.", "Cancel.")) {
        case 1:
            if (Zeny < 30000) {
                mes "[Paul Spanner]";
                mes "With that much of money, you cannot even buy a toy anvil!";
                close;
            }
            getitem Anvil,1;
            Zeny -= 30000;
            mes "[Paul Spanner]";
            mes "It is the cheapest anvil which has the most basic ability.";
            mes "Thank you for using my shop. If you need anything, just let me know.";
            close;
        case 2:
            if (Zeny < 120000) {
                mes "[Paul Spanner]";
                mes "With that much of money, you cannot even buy a toy anvil!";
                close;
            }
            getitem Oridecon_Anvil,1;
            Zeny -= 120000;
            mes "[Paul Spanner]";
            mes "Ah, you have an eye for anvil. A Blacksmith needs an anvil at least as good as this.";
            mes "Thank you for using my shop. If you need anything, just let me know.";
            close;
        case 3:
            if (Zeny < 300000) {
                mes "[Paul Spanner]";
                mes "With that much of money, you cannot even buy a toy anvil!";
                close;
            }
            getitem Golden_Anvil,1;
            Zeny -= 300000;
            mes "[Paul Spanner]";
            mes "I can tell your ambition to become a good Blacksmith just by looking at you to choose this Golden Anvil!";
            mes "This anvil will surely aid you in creating the best weapons.";
            close;
        case 4:
            mes "[Paul Spanner]";
            mes "I am sorry, but I do not sell better anvils than Golden Anvil.";
            mes "Unless you find the legendary anvil of 'Linggell', I don't think that you could find better one than Golden Anvil in any other places.";
            close;
        case 5:
            mes "[Paul Spanner]";
            mes "If you need anything, just let me know.";
            close;
        }
    case 2:
        mes "[Paul Spanner]";
        mes "You need various materials to process ores and to forge weapons.";
        mes "I have everything that you need. Take a look.";
        next;
        switch(select("Mini Furnace - 150z.", "Iron Hammer - 1,000z.", "Golden Hammer - 3,000z.", "Oridecon Hammer - 5,000z.", "Cancel.")) {
        case 1:
            .@item = 612;
            .@item_cost = 150;
            .@item_weight = 200;
            mes "[Paul Spanner]";
            mes "You definately need this furnce to process ores!";
            next;
            break;
        case 2:
            .@item = 613;
            .@item_cost = 1000;
            .@item_weight = 200;
            break;
        case 3:
            .@item = 614;
            .@item_cost = 3000;
            .@item_weight = 300;
            break;
        case 4:
            .@item = 615;
            .@item_cost = 5000;
            .@item_weight = 400;
            break;
        case 5:
            mes "[Paul Spanner]";
            mes "If you need anything, just let me know.";
            close;
        }
        mes "[Paul Spanner]";
        mes "So, how many do you need? If you want to cancel the trade, enter '0'.";
        next;
        while(1) {
            input .@input;
            if (.@input == 0) {
                mes "[Paul Spanner]";
                mes "You have canceled the trade. If you need anything, just let me know.";
                close;
            }
            else if ((.@input < 0) || (.@input > 500)) {
                mes "[Paul Spanner]";
                mes "You can only buy 500 or less at a time.";
                next;
            }
            else {
                break;
            }
        }
        .@sell = .@input * .@item_cost;
        if (Zeny < .@sell) {
            mes "[Paul Spanner]";
            mes "You don't have enough money. Sorry, I cannot sell them at a loss.";
            close;
        }
        if (checkweight(.@item,.@input) == 0) {
            mes "[Paul Spanner]";
            mes "Hey, you look pale. Why don't you go lighten your weight first.";
            close;
        }
        Zeny -= .@sell;
        getitem .@item,.@input;
        mes "[Paul Spanner]";
        mes "Thank you for using my shop. If you need anything, just let me know.";
        close;
    case 3:
        mes "[Paul Spanner]";
        mes "I have high quality metal.";
        mes "So, which metal would you like to buy?";
        next;
        switch(select("Phracon - 200z.", "Emveretarcon - 1,000z.", "Quit.")) {
        case 1:
            .@item = 1010;
            .@item_price = 200;
            break;
        case 2:
            .@item = 1011;
            .@item_price = 1000;
            break;
        case 3:
            mes "[Paul Spanner]";
            mes "If you need anything, just let me know.";
            close;
        }
        mes "[Paul Spanner]";
        mes "So, how many of them do you need? If you want to cancel the trade, enter '0'.";
        next;
        while(1) {
            input .@input;
            if (.@input == 0) {
                mes "[Paul Spanner]";
                mes "The trade has been canceled. If you need anything, just let me know.";
                close;
            }
            else if ((.@input < 0) || (.@input > 500)) {
                mes "[Paul Spanner]";
                mes "You can buy 500 or less at a time.";
                next;
            }
            else {
                break;
            }
        }
        .@sell = .@input * .@item_price;
        if (Zeny < .@sell) {
            mes "[Paul Spanner]";
            mes "You don't have enough money. Sorry, I cannot sell them at a loss.";
            close;
        }
        if (checkweight(.@item,.@input) == 0) {
            mes "[Paul Spanner]";
            mes "Hey, you look pale. Why don't you go lighten your weight first?";
            close;
        }
        getitem .@item,.@input;
        Zeny -= .@sell;
        mes "[Paul Spanner]";
        mes "Thank you for using my shop. If you need anything, just let me know.";
        close;
    case 4:
        mes "[Paul Spanner]";
        mes "I can process Oridecon and Elunium for you.";
        mes "You need 5 ores to process them into one Oridecon or Elunium.";
        mes "So, which one do you want to process?";
        switch(select("Oridecon", "Elunium", "Quit.")) {
        case 1:
            if (countitem(Oridecon_Stone) < 5) {
                mes "[Paul Spanner]";
                mes "You need 5 ores to process them into one pure Oridecon.";
                close;
            }
            else {
                delitem Oridecon_Stone,5;
                getitem Oridecon,1;
                mes "[Paul Spanner]";
                mes "There you go. Thank you for using my service.";
                close;
            }
        case 2:
            if (countitem(Elunium_Stone) < 5) {
                mes "[Paul Spanner]";
                mes "You need 5 ores to process them into one pure Elunium.";
                close;
            }
            else {
                delitem Elunium_Stone,5;
                getitem Elunium,1;
                mes "[Paul Spanner]";
                mes "There you go. Thank you for using my service.";
                close;
            }
        case 3:
            mes "[Paul Spanner]";
            mes "If you need anything, just let me know.";
            close;
        }
    case 5:
        mes "[Paul Spanner]";
        mes "If you need anything, just let me know.";
        close;
    }
}
 
//== Weapon/Armor Refiners =================================
prt_in,63,60,0  script  Hollgrehenn 4_M_03,{
    callfunc "refinemain","Hollgrehenn",0;
    end;
}
morocc_in,73,38,6   script  Aragham 4W_M_03,{
    callfunc "refinemain","Aragham",0;
    end;
}
payon,144,173,5 script  Antonio 4_M_ORIENT01,{
    callfunc "refinemain","Antonio",0;
    end;
}
alberta_in,28,58,0  script  Fredrik 4_M_03,{
    callfunc "refinemain","Fredrik",0;
    end;
}
yuno_in01,171,21,4  script  Lambert 4_M_ORIENT01,{
    callfunc "refinemain","Lambert",0;
    end;
}
ein_in01,24,87,5    script  Manthasman  4_M_DWARF,{
    callfunc "refinemain","Manthasman Pruhag",0;
    end;
}
lhz_in02,282,20,7   script  Fulerr  4_M_LGTMAN,{
    callfunc "refinemain","Fulerr",0;
    end;
}
 
//== Main Refiner Function =================================
// To allow auto safe refining/multiple refining set the second argument to '1'
// in the function call.
// If you enable this function, be sure to edit the value of .@safe to the max
// safe refine in refine_db.txt as well.
function    script  refinemain  {
    disable_items;
    .@features = getarg(1);
    mes "[" + getarg(0) + "]";
    mes "I'm the Armsmith.";
    mes "I can refine all kinds of weapons, armor and equipment, so let me";
    mes "know what you want me to refine.";
    next;
 
    setarray .@position$[1], "Head","Body","Left hand","Right hand","Robe","Shoes","Accessory 1","Accessory 2","Head 2","Head 3";
    .@menu$ = "";
    for(.@i = 1; .@i <= 10; ++.@i) {
        if(getequipisequiped(.@i)) {
            .@menu$ += .@position$[.@i] + "-" + "[" + getequipname(.@i) + "]";
            .@equipped = 1;
        }
        .@menu$ += ":";
    }
    if (.@equipped == 0) {
        mes "[" + getarg(0) + "]";
        mes "I don't think I can refine any items you have...";
        close;
    }
    .@part = select(.@menu$);
 
    if(!getequipisequiped(.@part)) { //custom check
        mes "[" + getarg(0) + "]";
        mes "You're not wearing";
        mes "anything there that";
        mes "I can refine.";
        emotion e_an;
        close;
    }
    //Check if the item is refinable...
    if(!getequipisenableref(.@part)) {
        mes "[" + getarg(0) + "]";
        mes "I don't think I can";
        mes "refine this item at all...";
        close;
    }
    //Check to see if the items is already +10
    if(getequiprefinerycnt(.@part) >= 10) {
        mes "[" + getarg(0) + "]";
        mes "I can't refine this";
        mes "any more. This is as";
        mes "refined as it gets!";
        close;
    }
    .@refineitemid = getequipid(.@part); // save id of the item
    .@refinerycnt = getequiprefinerycnt(.@part); //save refinery count
    switch(getequipweaponlv(.@part)){
    case 0:     //Refine Armor
        .@price = 2000;
        .@material = 985;
        .@safe = 4;
        break;
    case 1:     //Refine Level 1 Weapon
        .@price = 50;
        .@material = 1010;
        .@safe = 7;
        break;
    case 2:     //Refine Level 2 Weapon
        .@price = 200;
        .@material = 1011;
        .@safe = 6;
        break;
    case 3:     //Refine Level 3 Weapon
        .@price = 5000;
        .@material = 984;
        .@safe = 5;
        break;
    case 4:     //Refine Level 4 Weapon
        .@price = 20000;
        .@material = 984;
        .@safe = 4;
        break;
    case 5:     //Refine other stuff?
        .@price = 2000;
        .@material = 985;
        .@safe = 4;
        break;
    }
    if(.@features != 1) {
        mes "[" + getarg(0) + "]";
        mes "To refine this I need";
        mes "one ^003366"+getitemname(.@material)+"^000000 and";
        mes "a service fee of " + .@price + " Zeny.";
        mes "Do you really wish to continue?";
        next;
        if(select("Yes", "No") == 2){
            mes "[" + getarg(0) + "]";
            mes "Yeah...";
            mes "There's no need to";
            mes "rush. Take your time.";
            close;
        }
        if(getequippercentrefinery(.@part) < 100) {
            mes "[" + getarg(0) + "]";
            mes "Oh no! If I continue to";
            mes "refine this, there's a risk it could";
            switch(.@material) {
            case 985:
                mes "be destroyed! That means that ^FF0000this equipment^000000, and ^FF0000any cards^000000 or special properties added to this armor, ^FF0000will be gone^000000.";
                break;
            default:
                mes "be destroyed, and you'd ^FF0000lose the weapon^000000, any ^FF0000cards in the weapon^000000,";
                mes "or any added special properties.";
                break;
            }
            next;
            mes "["+getarg(0)+"]";
            mes "I can't make it any clearer.";
            mes "Once a weapon is destroyed,";
            mes "there's no getting it back.";
            mes "You really have a chance to";
            mes "^FF0000lose this weapon^000000 forever.";
            mes "Do you still want to refine?";
            next;
            if(select("Yes", "No") == 2){
                mes "[" + getarg(0) + "]";
                mes "I completely agree...";
                mes "I might be a great refiner, but sometimes even I make mistakes.";
                close;
            }
        }
        if((countitem(.@material) < 1) || (Zeny < .@price)) {
            mes "[" + getarg(0) + "]";
            mes "You don't seem to have";
            mes "enough Zeny or "+getitemname(.@material)+"...";
            mes "Go get some more. I'll be";
            mes "here all day if you need me.";
            close;
        }
        Zeny -= .@price;
        delitem .@material,1;
 
        //custom checks
        if(getequipisequiped(.@part) == 0) { // hacker has removed the item (not changed, why?)
            mes "[" + getarg(0) + "]";
            mes "Look here... you don't have any Items on...";
            close;
        }
        if(getequiprefinerycnt(.@part) != .@refinerycnt || getequipid(.@part) != .@refineitemid) { // hacker has changed the item
            mes "[" + getarg(0) + "]";
            emotion e_an;
            mes "Wait a second...";
            mes "Do you think I'm stupid?!";
            mes "You switched the item while I wasn't looking! Get out of here!";
            close;
        }
 
        if(getequippercentrefinery(.@part) <= rand(100)) {
            failedrefitem .@part;
            mes "[" + getarg(0) + "]";
            emotion (!rand(5))?e_cash:e_omg;
            .@lose = rand(1,3);
            if (.@lose == 1) {
                mes "OH! MY GOD!";
                mes "Damn it! Not again!";
                mes "I'm terribly sorry, but you know practice does make perfect.";
                mes "Um, right? Heh heh...";
            } else if(.@lose == 2) {
                mes "Nooooooo!";
                mes "It broke!";
                mes "I-I'm sorry!";
            } else {
                mes "Crap!";
                mes "It couldn't take";
                mes "much more tempering!";
                mes "Sorry about this...";
            }
            close;
        }
        mes "["+getarg(0)+"]";
        successrefitem .@part;
        emotion e_heh;
        .@win = rand(1,3);
        if (.@win == 1) {
            mes "Perfect!";
            mes "Heh heh!";
            mes "Once again,";
            mes "flawless work";
            mes "from the master~";
        } else if(.@win == 2) {
            mes "Success...!";
            mes "Yet again, my amazing";
            mes "talent truly dazzles";
            mes "and shines today.";
        } else {
            mes "Heh heh!";
            mes "I'm all done.";
            mes "No doubt, my work is";
            mes "to your satisfaction.";
            mes "Sheer, utter perfection~";
        }
        close;
    }
 
//- New Refining Functions -
    if(getequiprefinerycnt(.@part) < .@safe) {
        mes "[" + getarg(0) + "]";
        mes "I can refine this to the safe limit or a desired number of times. It's your choice.";
        next;
        .@menu2 = select("To the safe limit, please.","I'll decide how many times.","I've changed my mind...");
    } else
        .@menu2 = 2;
    switch(.@menu2){
    case 1:
        .@refinecnt = .@safe - getequiprefinerycnt(.@part);
        break;
    case 2:
        next;
        mes "[" + getarg(0) + "]";
        mes "How many times would you like me to refine your item?";
        next;
        input .@refinecnt;
        .@refinecheck = .@refinecnt + getequiprefinerycnt(.@part);
        if (.@refinecnt < 1 || .@refinecheck > 10) {
            mes "[" + getarg(0) + "]";
            mes "I can't refine this item that many times.";
            close;
        }
        if(.@refinecheck > .@safe) {
            .@refinecheck -= .@safe;
            mes "[" + getarg(0) + "]";
            mes "This will try to refine the equipment " + .@refinecheck + " times past the safe limit. Your equipment may be destroyed... is that ok?";
            next;
            if(select("Yes...","No...") == 2){
                mes "[" + getarg(0) + "]";
                mes "You said so... So be it.";
                close;
            }
        }
        break;
    case 3:
        next;
        mes "[" + getarg(0) + "]";
        mes "You said so... So be it.";
        close;
    }
    .@fullprice = .@price * .@refinecnt;
    mes "[" + getarg(0) + "]";
    mes "That will cost you " + .@refinecnt + " " + getitemname(.@material) + " and " + .@fullprice + " Zeny. Is that ok?";
    next;
    if(select("Yes","No...") == 2){
        mes "[" + getarg(0) + "]";
        mes "You said so... So be it.";
        close;
    }
    if(countitem(.@material) < .@refinecnt || Zeny < .@fullprice) {
        mes "[" + getarg(0) + "]";
        mes "Is that all you got? Unfortunately I can't work for you at a lower price. Try putting yourself in my shoes.";
        close;
    }
    Zeny -= .@fullprice;
    delitem .@material,.@refinecnt;
    while(.@refinecnt){
        if (getequipisequiped(.@part) == 0) {
            mes "[" + getarg(0) + "]";
            mes "Look here... you don't have any items on...";
            close;
        }
        if (getequipid(.@part) != .@refineitemid || (.@menu2 == 1 && getequippercentrefinery(.@part) < 100)) {
            mes "[" + getarg(0) + "]";
            mes "Clang... No, but did you imagine I could be so stupid?!";
            mes "You changed it...";
            mes "Get out before I stun you with my Hammer!!";
            close;
        }
        mes "Clang, clang!!!";
        if(.@menu2 == 2 && getequippercentrefinery(.@part) <= rand(100)) {
            failedrefitem .@part;
            emotion e_omg;
            mes "[" + getarg(0) + "]";
            mes "WAHHHH!!! I'm so sorry... I warned you this could happen...";
            --.@refinecnt;
            if(.@refinecnt == 0) close;
            mes "Here's the unused Zeny and materials back...";
            getitem .@material,.@refinecnt;
            .@fullprice = .@refinecnt * .@price;
            Zeny += .@fullprice;
            close;
        }
        successrefitem .@part;
        emotion e_no1;
        --.@refinecnt;
        next;
    }
    mes "[" + getarg(0) + "]";
    mes "All finished... Come again soon.";
    close;
}
 
//== Material Salesmen =====================================
prt_in,56,68,5  script  Vurewell    4_M_04,{
    callfunc "phramain","Vurewell";
    end;
}
payon,145,178,3 script  Begnahd 4_M_ORIENT01,{
    callfunc "phramain","Begnahd";
    end;
}
morocc_in,63,32,6   script  Sade    4W_M_03,{
    callfunc "phramain","Sade";
    end;
}
alberta_in,13,71,3  script  Kahlamanlith    4_M_04,{
    callfunc "phramain","Kahlamanlith";
    end;
}
yuno_in01,171,27,4  script  Dilemma 4_M_ORIENT01,{
    callfunc "phramain","Dilemma";
    end;
}
ein_in01,15,87,3    script  Tirehaus    4_M_04,{
    callfunc "phramain","Tirehaus";
    end;
}
lhz_in02,278,24,3   script  Krugg   4_M_04,{
    callfunc "phramain","Krugg";
    end;
}
 
//== Material Salesmen Functions ===========================
function    script  phramain    {
    if (checkweight(Knife,1) == 0) {
        mes "- Wait a minute !! -";
        mes "- Currently you're carrying -";
        mes "- too many items with you. -";
        mes "- Please try again -";
        mes "- after you lose some weight. -";
        close;
    }
    mes "[" + getarg(0) + "]";
    mes "I sell 2 kinds of Metal";
    mes "for tempering weaponry.";
    mes "I have ^007777Phracon^000000 for Level 1";
    mes "Weapons, and ^007777Emveretarcon^000000";
    mes "for Level 2 Weapons.";
    next;
    switch(select("Phracon - 200 Zeny", "Emveretarcon - 1000 Zeny", "Ask about other Metals")) {
    case 1:
        .@material = 1010;
        .@price = 200;
        break;
    case 2:
        .@material = 1011;
        .@price = 1000;
        break;
    case 3:
        mes "[" + getarg(0) + "]";
        mes "Other metals?";
        mes "Well, you'll need special metals to upgrade higher level weapons, or any kind of armor. But you know, Oridecon and Elunium is really";
        mes "hard to just find...";
        close;
    }
    mes "[" + getarg(0) + "]";
    mes "So how many do you wish to buy?";
    mes "If you don't want any, please enter the number, '0.'";
    next;
    while(1) {
        input .@input;
        if (.@input == 0) {
            mes "[" + getarg(0) + "]";
            mes "The deal has";
            mes "been cancelled.";
            close;
        }
        else if (.@input < 0 || .@input > 500) {
            mes "[" + getarg(0) + "]";
            mes "Alright, you can";
            mes "puchase up to 500.";
            mes "No more than that,";
            mes "got it? Good.";
            next;
        }
        else {
            break;
        }
    }
    .@sell = .@input * .@price;
    if (Zeny < .@sell) {
        mes "[" + getarg(0) + "]";
        mes "Err...";
        mes "You don't have";
        mes "enough Zeny to buy";
        mes ""+ .@input +" of them.";
        close;
    }
    if (checkweight(.@material,.@input) == 0) {
        mes "[" + getarg(0) + "]";
        mes "Hmm...";
        mes "I can't give you anything if you don't have enough room in your inventory. Why don't you put your extra things in Kafra Storage and try again?";
        close;
    }
    getitem .@material,.@input;
    Zeny -= .@sell;
    mes "[" + getarg(0) + "]";
    mes "Here you are!";
    mes "Thank you for";
    mes "your patronage.";
    close;
}
 
//== Ori/Elu Refiners ======================================
prt_in,63,69,3  script  Dietrich    4_M_02,{
    callfunc "orimain","Dietrich";
    end;
}
payon,137,178,5 script  Hakhim  4_M_ORIENT01,{
    callfunc "orimain","Hakhim";
    end;
}
morocc_in,72,32,6   script  Abdula  4W_M_03,{
    callfunc "orimain","Abdula";
    end;
}
alberta_in,21,63,5  script  Xenophon    4_M_02,{
    callfunc "orimain","Xenophon Zolotas";
    end;
}
yuno_in01,164,27,4  script  Delight 4_M_ORIENT01,{
    callfunc "orimain","Delight";
    end;
}
ein_in01,18,82,6    script  Matestein   4_M_02,{
    callfunc "orimain","Matestein";
    end;
}
lhz_in02,281,24,5   script  Fruel   4_M_02,{
    callfunc "orimain","Fruel";
    end;
}
 
//== Ori/Elu Functions =====================================
function    script  orimain {
    if (checkweight(Knife,1) == 0) {
        mes "- Wait a minute !! -";
        mes "- Currently you're carrying -";
        mes "- too many items with you. -";
        mes "- Please try again -";
        mes "- after you lose some weight. -";
        close;
    }
    mes "[" + getarg(0) + "]";
    mes "I can purify your";
    mes "Rough Oridecons or";
    mes "Rough Eluniums. I'll need";
    mes "5 Rough Stones to make";
    mes "1 pure one for you.";
    next;
    switch(select("Make Oridecon", "Make Elunium", "Ask about Enchanted Stones")) {
    case 1:
        if (countitem(Oridecon_Stone) > 4) {
            delitem Oridecon_Stone,5;
            getitem Oridecon,1; // Oridecon
            mes "[" + getarg(0) + "]";
            mes "Here's your Oridecon.";
            mes "You're welcome to come";
            mes "back whenever you want.";
            close;
        }
        else {
            mes "[" + getarg(0) + "]";
            mes "You're kidding me, right?";
            mes "I just told you that I need 5 Rough Oridecons to make a pure Oridecon.";
            close;
        }
    case 2:
        if (countitem(Elunium_Stone) > 4) {
            delitem Elunium_Stone,5;
            getitem Elunium,1; // Elunium
            mes "[" + getarg(0) + "]";
            mes "Here's your Elunium.";
            mes "You're welcome to come";
            mes "back whenever you want.";
            close;
        }
        else {
            mes "[" + getarg(0) + "]";
            mes "You're kidding me, right?";
            mes "I just told you that I need 5 Rough Eluniums to make a pure Elunium.";
            close;
        }
    case 3:
        mes "[" + getarg(0) + "]";
        mes "Enchanted Stones...?";
        mes "I've been a stonesmith for 20 years, so I've heard a lot about them. Supposedly, there are";
        mes "four different kinds.";
        next;
        mes "[" + getarg(0) + "]";
        mes "Each Enchanted Stone possesses one of the following elemental properties: Earth, Wind, Water and Fire.";
        next;
        mes "[" + getarg(0) + "]";
        mes "If someone combines a Enchanted Stone with a weapon while smithing, that weapon will possess the same property as the Stone.";
        next;
        mes "[" + getarg(0) + "]";
        mes "Needless to say, you need to have some smithing skill to produce this kind of elemental weapon.";
        close;
    }
}
 
//== Equipment Repairmen ===================================
alberta_in,31,65,4  script  Repairman#alb   4_M_04,{
    callfunc "repairmain","Repairman";
    end;
}
 
moc_ruins,107,94,4  script  Repairman#moc   4W_M_03,{
    callfunc "repairmain","Repairman";
    end;
}
 
payon,143,165,0 script  Repairman#pay   4_M_ORIENT01,{
    callfunc "repairmain","Repairman";
    end;
}
 
prt_in,63,54,2  script  Repairman#prt   4_M_04,{
    callfunc "repairmain","Grendal";
    end;
}
 
yuno_in01,175,28,3  script  Repairman#juno  4_M_04,{
    callfunc "repairmain","Repairman";
    end;
}
 
geffen_in,34,166,3  script  Repairman#gef   4_M_04,{
    callfunc "repairmain","Repairman";
    end;
}
 
aldeba_in,38,60,3   script  Repairman#alde  4_M_04,{
    callfunc "repairmain","Repairman";
    end;
}
 
lhz_in02,284,14,3   script  Repairman#lhz   4_M_04,{
    callfunc "repairmain","Repairman";
    end;
}
 
prt_gld,139,117,4   script  Repairman#prt_gld   4_M_04,{
    callfunc "repairmain","Repairman";
    end;
}
 
gef_fild13,263,117,4    script  Repairman#gef_fild  4_M_04,{
    callfunc "repairmain","Repairman";
    end;
}
 
pay_gld,295,183,4   script  Repairman#pay_gld   4_M_04,{
    callfunc "repairmain","Repairman";
    end;
}
 
alde_gld,220,152,4  script  Repairman#alde_gld  4_M_04,{
    callfunc "repairmain","Repairman";
    end;
}
 
aru_gld,189,336,4   script  Repairman#aru_gld   4_M_04,{
    callfunc "repairmain","Repairman";
    end;
}
 
sch_gld,340,80,7    script  Repairman#sch_gld   4_M_04,{
    callfunc "repairmain","Repairman";
    end;
}
 
//== Equipment Repair Function =============================
function    script  repairmain  {
    .@repairprice = 5000;
    mes "["+getarg(0)+"]";
    mes "Hey there!";
    mes "Do you want me";
    mes "to repair any items?";
    mes "You can count on me";
    mes "for item repairs!";
    next;
    switch(select("Actually, I do have some items...", "None at the moment.")) {
    case 1:
        .@checkitem = 1;
        while (1) {
            if (getbrokenid(.@checkitem) == 0) {
                break;
            }
            ++.@checkitem;
        }
        --.@checkitem;
        if (!.@checkitem) {
            mes "["+getarg(0)+"]";
            mes "Oh wow, this is incredible!";
            mes "You must take very good care of your things. None of your items are damaged!";
            next;
            mes "["+getarg(0)+"]";
            mes "If everyone is like you, I'm going to be unemployed!! Haha~!";
            close;
        }
        mes "["+getarg(0)+"]";
        mes "Hmm...";
        mes "Let's see...";
        mes "Out of all your items,";
        mes "" + .@checkitem + " are damaged.";
        mes "Would you like to repair?";
        next;
        .@totalcost = .@repairprice*.@checkitem;
        mes "["+getarg(0)+"]";
        mes "Each repair costs " + .@repairprice + " Zeny. So to repair all your damaged items would cost " + .@totalcost + " Zeny! Would you like to repair the items?";
        next;
        switch(select("Yes", "No")) {
        case 1:
            if (Zeny < .@totalcost) {
                mes "["+getarg(0)+"]";
                mes "Whoa whoa...";
                mes "Check your wallet before you receive the repair bill! I can't repair anything because you don't have enough Zeny.";
                close;
            }
            .@checkitem2 = 1;
            while (1) {
                if (getbrokenid(.@checkitem2) == 0) {
                    break;
                }
                ++.@checkitem2;
            }
            --.@checkitem2;
            if (.@checkitem == .@checkitem2) {
                Zeny -= .@totalcost;
                while (.@checkitem) {
                    repair(.@checkitem);
                    --.@checkitem;
                }
                mes "["+getarg(0)+"]";
                mes "Okay! All done. Now, try to be a little more careful. Items have lives too you know.";
                close;
            }
            else {
                mes "["+getarg(0)+"]";
                mes "Mmm? Something's wrong. Wait... Equip the items you need to repair and then come back to me.";
                close;
            }
        case 2:
            mes "["+getarg(0)+"]";
            mes "Well, it's no skin off my nose, but it's not good to leave items damaged. You should get them repaired as soon as possible!";
            close;
        }
    case 2:
        mes "["+getarg(0)+"]";
        mes "Hohoho...";
        mes "You don't have";
        mes "any business with me";
        mes "if you don't have any";
        mes "items to repair.";
        close;
    }
}
 
Viewed 880 times, submitted by rainer.