how can i make this script work?

Brynner

Community Contributors
Messages
563
Points
0
Github
https://github.com/bgamez23
i just want this +6 Armor Refine Ticket will be usable. if you use it. it will ask you which item you want to safe refine. after you choose it will refine it to +6 without failed. it will consume the +6 Armor Refine Ticket if it was successfully refine. thanks in advance. 

 Item ID# 6235 (Guarantee_Armor_6Up)

 
You could try something like this:

while (getrefine(EQI_ARMOR) < 6) { successrefitem EQI_ARMOR;}
 
Item script version:

while (getrefine(EQI_ARMOR) < 6) { successrefitem EQI_ARMOR; }

If you're using a "Guarantee_Armor_6Up", I would assume you're refining an armor lol. The only choice the user should have is wearing the desired equipment to be refined.

 
Last edited by a moderator:
You could try something like this:

while (getrefine(EQI_ARMOR) < 6) { successrefitem EQI_ARMOR;}

Item script version:

while (getrefine(EQI_ARMOR) < 6) { successrefitem EQI_ARMOR; }

If you're using a "Guarantee_Armor_6Up", I would assume you're refining an armor lol. The only choice the user should have is wearing the desired equipment to be refined.
how this thing works? you use the 6235 (Guarantee_Armor_6Up) and it will popup a refiner npc dialog?

 
Back
Top