primeRO Posted October 5, 2012 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 10 Reputation: 0 Joined: 10/05/12 Last Seen: October 10, 2012 Share Posted October 5, 2012 Can I request script of Item Refiner which is like this: "I will choose how much to refine the item" "Safety refine level (+7)" "I changed my mind" this is like the MYRO refiner ^^.. thanks Quote Link to comment Share on other sites More sharing options...
Bin4ry Posted October 5, 2012 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 782 Reputation: 82 Joined: 01/01/12 Last Seen: September 21, 2015 Share Posted October 5, 2012 (edited) /npc/merchant/refine.txt prt_in,63,60,0 script Hollgrehenn 85,{ callfunc "refinemain","Hollgrehenn",0; end; } change to prt_in,63,60,0 script Hollgrehenn 85,{ callfunc "refinemain","Hollgrehenn",1; end; } Edited October 5, 2012 by darristan Quote Link to comment Share on other sites More sharing options...
onli0721 Posted October 6, 2012 Group: Members Topic Count: 15 Topics Per Day: 0.00 Content Count: 36 Reputation: 0 Joined: 06/10/12 Last Seen: March 18, 2016 Share Posted October 6, 2012 (edited) /npc/merchant/refine.txt prt_in,63,60,0 script Hollgrehenn 85,{ callfunc "refinemain","Hollgrehenn",0; end; } change to prt_in,63,60,0 script Hollgrehenn 85,{ callfunc "refinemain","Hollgrehenn",1; end; } Sir I already change the @safe to 7 case 0: //Refine Armor set .@price,2000; set .@material,985; set .@safe,7; break; case 1: //Refine Level 1 Weapon set .@price,50; set .@material,1010; set .@safe,7; break; case 2: //Refine Level 2 Weapon set .@price,200; set .@material,1011; set .@safe,7; break; case 3: //Refine Level 3 Weapon set .@price,5000; set .@material,984; set .@safe,7; break; case 4: //Refine Level 4 Weapon set .@price,20000; set .@material,984; set .@safe,7; break; case 5: //Refine other stuff? set .@price,2000; set .@material,985; set .@safe,7; break; but when I'm upgrading...the refiner said "you will cost you 7 elunium and 14000z" when I hit "yes" it will just upgrade in +4 instead of 7.. but my 7pcs elunium will disappear.. and also it will not be safe If i continue to upgrade it from +7...from +4 to +5 it will destroy.. how can I fix it? Edited October 6, 2012 by Emistry Please use [CODEBOX] or Attachments for long contents. Quote Link to comment Share on other sites More sharing options...
primeRO Posted October 6, 2012 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 10 Reputation: 0 Joined: 10/05/12 Last Seen: October 10, 2012 Author Share Posted October 6, 2012 /npc/merchant/refine.txt prt_in,63,60,0 script Hollgrehenn 85,{ callfunc "refinemain","Hollgrehenn",0; end; } change to prt_in,63,60,0 script Hollgrehenn 85,{ callfunc "refinemain","Hollgrehenn",1; end; } Sir I already change the @safe to 7 case 0: //Refine Armor set .@price,2000; set .@material,985; set .@safe,7; break; case 1: //Refine Level 1 Weapon set .@price,50; set .@material,1010; set .@safe,7; break; case 2: //Refine Level 2 Weapon set .@price,200; set .@material,1011; set .@safe,7; break; case 3: //Refine Level 3 Weapon set .@price,5000; set .@material,984; set .@safe,7; break; case 4: //Refine Level 4 Weapon set .@price,20000; set .@material,984; set .@safe,7; break; case 5: //Refine other stuff? set .@price,2000; set .@material,985; set .@safe,7; break; but when I'm upgrading...the refiner said "you will cost you 7 elunium and 14000z" when I hit "yes" it will just upgrade in +4 instead of 7.. but my 7pcs elunium will disappear.. and also it will not be safe If i continue to upgrade it from +7...from +4 to +5 it will destroy.. how can I fix it? Yeah his right how to fix it? Quote Link to comment Share on other sites More sharing options...
Bin4ry Posted October 6, 2012 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 782 Reputation: 82 Joined: 01/01/12 Last Seen: September 21, 2015 Share Posted October 6, 2012 Change the value in /db/re/refine_db.txt Quote Link to comment Share on other sites More sharing options...
chemlee989 Posted April 11, 2013 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 3 Reputation: 0 Joined: 04/10/13 Last Seen: April 15, 2013 Share Posted April 11, 2013 70, 4,7, 100,100,100,100, 60, 40, 40, 20, 20, 10, // Armor 2, 3,7, 100,100,100,100,100,100,100, 60, 40, 20, // Lv.1 Weapons 3, 5,6, 100,100,100,100,100,100, 60, 40, 20, 20, // Lv.2 Weapons 5, 8,5, 100,100,100,100,100, 60, 50, 20, 20, 20, // Lv.3 Weapons 7,13,4, 100,100,100,100, 60, 40, 40, 20, 20, 10, // Lv.4 Weaponswhich one of these is for the safe refine? Quote Link to comment Share on other sites More sharing options...
Capuche Posted April 11, 2013 Group: Developer Topic Count: 10 Topics Per Day: 0.00 Content Count: 2407 Reputation: 616 Joined: 07/05/12 Last Seen: March 20 Share Posted April 11, 2013 In the red square 100 = 100% refine = safe refine Just before the red square, 7 = Safe level limit for example in the first line. // Stats per level for safe upgrade, Stats per level after safe limit, Safe level limit, Lv.1 %, Lv 2 %, Lv.3%, ect... Quote Link to comment Share on other sites More sharing options...
chemlee989 Posted April 14, 2013 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 3 Reputation: 0 Joined: 04/10/13 Last Seen: April 15, 2013 Share Posted April 14, 2013 Thank you! Quote Link to comment Share on other sites More sharing options...
Question
primeRO
Can I request script of Item Refiner which is like this:
"I will choose how much to refine the item"
"Safety refine level (+7)"
"I changed my mind"
this is like the MYRO refiner ^^..
thanks
Link to comment
Share on other sites
7 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.