JassMax Posted July 10, 2013 Group: Members Topic Count: 65 Topics Per Day: 0.01 Content Count: 235 Reputation: 0 Joined: 05/03/13 Last Seen: December 18, 2018 Share Posted July 10, 2013 Hi, i want refiner which can be refine by lotto ball 04 per lotto ball 04 = refine +1 100% (without break) until + 10 and if we want de refine item.. that can be done by lotto ball 031 x lotto ball 03 = de refine 1 item both functional should be in one npc like this 1 ) refiner 2) derefiner thank in advance... Bump~ Quote Link to comment Share on other sites More sharing options...
KoolKat29 Posted July 10, 2013 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 90 Reputation: 5 Joined: 06/17/12 Last Seen: September 6, 2013 Share Posted July 10, 2013 (edited) You can use Sir Emistry's Refine Function Script + from other working Derefiner script http://pastebin.com/raw.php?i=g8W9yhSs prontera,79,129,5 script test 757,{ mes "Refiner and Refine Remover"; next; switch (select("+1 Refiner","Refine Remover")) { case 1: mes "Which equipment you want to refine ?"; mes "make sure you have equipped the items and at least 1 Lotto Ball No.4."; next; callfunc( "RefineFunc",7364 ,1,63,0,10,1,0,100 ); end; case 2: setarray .@ItemID[0],7363,1; mes "Which equipment you want to reomove the refine?"; mes "make sure you have equipped the items and at least 1 Lotto Ball No.3."; next; if( countitem( .@ItemID[0] ) >= .@ItemID[1] ){ for( set .@i,1; .@i <= 10; set .@i,.@i + 1 ) set .@Menu$,.@Menu$ + (( getequipid(.@i) > 0 && getequiprefinerycnt(.@i) )? getitemname(getequipid(.@i)):"" )+":"; set .@i,select(.@Menu$); setarray .@GetData[0],getequipid(.@i),getequipcardid(.@i,0),getequipcardid(.@i,1),getequipcardid(.@i,2),getequipcardid(.@i,3); failedrefitem .@i; delitem .@ItemID[0],.@ItemID[1]; getitem2 .@GetData[0],1,1,0,0,.@GetData[1],.@GetData[2],.@GetData[3],.@GetData[4]; equip .@GetData[0]; mes "Done."; } end; } } Edited July 11, 2013 by Capuche code 1 Quote Link to comment Share on other sites More sharing options...
JassMax Posted July 11, 2013 Group: Members Topic Count: 65 Topics Per Day: 0.01 Content Count: 235 Reputation: 0 Joined: 05/03/13 Last Seen: December 18, 2018 Author Share Posted July 11, 2013 (edited) You can use Sir Emistry's Refine Function Script + from other working Derefiner script http://pastebin.com/raw.php?i=g8W9yhSs prontera,79,129,5 script test 757,{ mes "Refiner and Refine Remover"; next; switch (select("+1 Refiner","Refine Remover")) { case 1: mes "Which equipment you want to refine ?"; mes "make sure you have equipped the items and at least 1 Lotto Ball No.4."; next; callfunc( "RefineFunc",7364 ,1,63,0,10,1,0,100 ); end; case 2: setarray .@ItemID[0],7363,1; mes "Which equipment you want to reomove the refine?"; mes "make sure you have equipped the items and at least 1 Lotto Ball No.3."; next; if( countitem( .@ItemID[0] ) >= .@ItemID[1] ){ for( set .@i,1; .@i <= 10; set .@i,.@i + 1 ) set .@Menu$,.@Menu$ + (( getequipid(.@i) > 0 && getequiprefinerycnt(.@i) )? getitemname(getequipid(.@i)):"" )+":"; set .@i,select(.@Menu$); setarray .@GetData[0],getequipid(.@i),getequipcardid(.@i,0),getequipcardid(.@i,1),getequipcardid(.@i,2),getequipcardid(.@i,3); failedrefitem .@i; delitem .@ItemID[0],.@ItemID[1]; getitem2 .@GetData[0],1,1,0,0,.@GetData[1],.@GetData[2],.@GetData[3],.@GetData[4]; equip .@GetData[0]; mes "Done."; } end; } } Thanks for reply KoolKat29 thanks for de-refine function working good.. actually im using same script...after make this topic same script from Emistry's Refine Function,,, I want to remove de refine effect which looks failed (@effect / @specialeffect)i want effect as success like when we refine any item its show success same for de refine.. is it possible ? Edited July 11, 2013 by JassMax Quote Link to comment Share on other sites More sharing options...
Currently Posted December 29, 2013 Group: Members Topic Count: 162 Topics Per Day: 0.03 Content Count: 313 Reputation: 1 Joined: 01/22/12 Last Seen: November 17, 2023 Share Posted December 29, 2013 After I click "Refine". How to add a loop so as long as the player has the item, it will keep going to menu "Refine" and just spam enter until they reach 100 (or limit) or no more item. Quote Link to comment Share on other sites More sharing options...
Question
JassMax
Hi,
i want refiner which can be refine by lotto ball 04
per lotto ball 04 = refine +1 100% (without break) until + 10
and if we want de refine item.. that can be done by lotto ball 03
1 x lotto ball 03 = de refine 1 item
both functional should be in one npc
like this
1 ) refiner
2) derefiner
thank in advance...
Bump~
Link to comment
Share on other sites
3 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.