turbo_room,132,84,4 script Donation Refiner 707,{
mes "Safe refine upto +10";
mes "What item do you want to be refined?";
next;
set @refine,.equip_part[select(getequipname(.equip_part[0]),
getequipname(.equip_part[1]),
getequipname(.equip_part[2]),
getequipname(.equip_part[3]),
getequipname(.equip_part[4]),
getequipname(.equip_part[5]),
// getequipname(.equip_part[6]),
// getequipname(.equip_part[7]),
// getequipname(.equip_part[8]),
getequipname(.equip_part[9]))-1];
if(countitem(7179) < 1) {
mes "You are missing:";
mes ""+((countitem(7179) < 1)?"1 Proof of Donation":"")+"";
close;
}
if(getequiprefinerycnt(@refine) >= 10) {
mes "+10 Item cannot be refined anymore.";
close;
}
else {
delitem 7179,1;
successrefitem @refine;
mes "Clang Clang! Success!";
close;
}
OnInit:
setarray .equip_part[0],2,3,6,7,8,9,10;
}
I am currently using this script for a pod refiner and it can also refine non-refinable item. what should i add on this script to not refine non-refinable items like alice doll etc.
and also I just did a trial and error of the equipment's positioning and i came up with setarray .equip_part[0],2,3,6,7,8,9,10; that numbers. i am new in scripting, your help will greatly appreciated!
Question
cross10hunter
I am currently using this script for a pod refiner and it can also refine non-refinable item. what should i add on this script to not refine non-refinable items like alice doll etc.
and also I just did a trial and error of the equipment's positioning and i came up with setarray .equip_part[0],2,3,6,7,8,9,10; that numbers. i am new in scripting, your help will greatly appreciated!
Edited by Mael1 answer 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.