cadz Posted July 1, 2013 Group: Members Topic Count: 83 Topics Per Day: 0.02 Content Count: 243 Reputation: 1 Joined: 08/29/12 Last Seen: August 1, 2021 Share Posted July 1, 2013 hi i would like to request a refine that you need premium ticket for addtional +1 refine like example i have +7 weapon i got prem ticket then i talk to the refiner he will +1 my weapon 100% nothing more. thanks and more power to the scripters! Quote Link to comment Share on other sites More sharing options...
Euphy Posted July 1, 2013 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted July 1, 2013 trunk/npc/re/merchants/ticket_refiner.txt (disabled by default; you have to enable it manually) 1 Quote Link to comment Share on other sites More sharing options...
Euphy Posted July 1, 2013 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted July 1, 2013 set .@ticket, ITEM_ID; if (!countitem(.@ticket)) { mes "[Premium Refiner]"; mes "You need a Premium Ticket to continue."; close; } mes "[Premium Refiner]"; mes "Is there anything you want to refine?"; next; // Create equip menu. setarray .@position$[1], "Head","Body","Left hand","Right hand","Robe","Shoes","Accessory 1","Accessory 2","Head 2","Head 3"; set .@menu$,""; for(set .@i,1; .@i<=10; set .@i,.@i+1) { if (getequipisequiped(.@i)) set .@menu$, .@menu$+.@position$[.@i]+" ~ "+getequipname(.@i); set .@menu$, .@menu$+":"; } set .@part, select(.@menu$); // Check if the item is refinable (delete this section if you don't need it). if (!getequipisenableref(.@part)) { mes "[Premium Refiner]"; mes "This item is not refinable."; close; } // Check if the item is over the max refine (+20). if (getequiprefinerycnt(.@part) > 20) { mes "[Premium Refiner]"; mes "I can't refine this item any higher!"; close; } mes "[Premium Refiner]"; mes "Are you sure you want to refine "+getequipname(.@part)+"?"; next; if(select("Yes, go on.:Wait a second...") == 2) close; mes "[Premium Refiner]"; mes "All done! Enjoy!"; delitem .@ticket,1; successrefitem .@part; close; It's pretty basic; refer to the documentation (trunk/doc/script_commands.txt) if you have questions about any of the commands. Quote Link to comment Share on other sites More sharing options...
cadz Posted July 1, 2013 Group: Members Topic Count: 83 Topics Per Day: 0.02 Content Count: 243 Reputation: 1 Joined: 08/29/12 Last Seen: August 1, 2021 Author Share Posted July 1, 2013 thanks euphy euphy i for got how to add the refine deeds? like if+11 +10 + 9 armor refined deeds and armor? Quote Link to comment Share on other sites More sharing options...
stydianx Posted July 1, 2013 Group: Members Topic Count: 105 Topics Per Day: 0.02 Content Count: 390 Reputation: 27 Joined: 07/12/12 Last Seen: October 24, 2022 Share Posted July 1, 2013 Thanks! Quote Link to comment Share on other sites More sharing options...
cadz Posted July 2, 2013 Group: Members Topic Count: 83 Topics Per Day: 0.02 Content Count: 243 Reputation: 1 Joined: 08/29/12 Last Seen: August 1, 2021 Author Share Posted July 2, 2013 thanks Quote Link to comment Share on other sites More sharing options...
Question
cadz
hi i would like to request a refine that you need premium ticket for addtional +1 refine like example i have +7 weapon i got prem ticket then i talk to the refiner he will +1 my weapon 100% nothing more. thanks and more power to the scripters!
Link to comment
Share on other sites
5 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.