prontera,155,181,5 script Sample 4_F_KAFRA1,{
.@eqi = select(.eqi_menu$);
mes "it cost "+F_InsertComma(.cost[.@option])+" Zeny";
if (getequipid(.eqi_list[.@eqi]) <= 0) {
mes "you didnt have any equipment there.";
}
else if (Zeny < .cost[.@option]) {
}
else {
.@option = select("refine", "derefine");
Zeny -= .cost[.@option];
if (.@option == 1) {
successrefitem .eqi_list[.@eqi];
}
else {
downrefitem .eqi_list[.@eqi];
}
mes "done.";
}
close;
OnInit:
setarray .cost,
10000, // refine
100000; // de-refine
setarray .eqi_list,
EQI_HEAD_TOP,
EQI_ARMOR,
EQI_HAND_L,
EQI_HAND_R,
EQI_GARMENT,
EQI_SHOES;
.@size = getarraysize(.eqi_list);
for (.@i = 0; .@i < .@size; .@i++)
.eqi_menu$ = .eqi_menu$ + F_getpositionname(.eqi_list[.@i]) + ":";
end;
}