Jump to content
  • 0
v00m3r

Sure +10 Refiner

Question

Can I request a Sure +10 Refiner?

Im having trouble finding it.

This is what it do..

The player Click the NPc and choose the item to plus.

To make it +10 the item should not have any refine. and it needs 3 TCG ticket for this..

Thanks in advance..

anyone?

Edited by v00m3r
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

You could try this one,too,I just added a Derefiner and a Repairman to it,too.

Here's the Link :

https://rikisscripts.googlecode.com/svn/trunk/npc/Refiner.txt

If you want the NPC to refine it just to +10 except to +100 then just change this part :

mes "[smith]";
mes "Okay I'm going";
mes "to refine your Equipment";
mes "to +100,Thx for using my Service!";
next;
for(set @part,1;@part<101;set @part,@part+1)
if(getequipisequiped(@part))
while(getequiprefinerycnt(@part) < 100)
successrefitem @part;
mes "[smith]";
mes "Congrats Enjoy it!";
close;
end;

to this :

mes "[smith]";
mes "Okay I'm going";
mes "to refine your Equipment";
mes "to +10,Thx for using my Service!";
next;
for(set @part,1;@part<11;set @part,@part+1)
if(getequipisequiped(@part))
while(getequiprefinerycnt(@part) < 10)
successrefitem @part;
mes "[smith]";
mes "Congrats Enjoy it!";
close;
end;

Have fun,I hope that I helped you.

Link to comment
Share on other sites

My Refine Function can do this.

Script Release > Script Collection > Emistry Script > Refine Function

thanks ill try this one.. i love your script ^^

Edited by v00m3r
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.