//================= 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 . //========================================================================= //= 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; } }