Jump to content
  • 0

request: refiner


cadz

Question


  • Group:  Members
  • Topic Count:  83
  • Topics Per Day:  0.02
  • Content Count:  243
  • Reputation:   1
  • Joined:  08/29/12
  • Last Seen:  

hi there i would like to request a script a refiner that auto +5+6+7+8+9+10 but same as normal refine rate can failed.

mes "i am the refiner";

mes " you want auto +7?";

and so on....

thanks in advance

Link to comment
Share on other sites

2 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  45
  • Topics Per Day:  0.01
  • Content Count:  715
  • Reputation:   83
  • Joined:  01/05/12
  • Last Seen:  

Try to change the Refine Function in npc/merchants/refine.txt in line 565 to 594

// Weapon/Armor Refiners
//============================================================
prt_in,63,60,0	script	Hollgrehenn	85,{
callfunc "refinemain","Hollgrehenn",0;
end;
}
morocc_in,73,38,6	script	Aragham	99,{
callfunc "refinemain","Aragham",0;
end;
}
payon,144,173,5	script	Antonio	88,{
callfunc "refinemain","Antonio",0;
end;
}
alberta_in,28,58,0	script	Fredrik	85,{
callfunc "refinemain","Fredrik",0;
end;
}
yuno_in01,171,21,4	script	Lambert	88,{
callfunc "refinemain","Lambert",0;
end;
}
ein_in01,24,87,5	script	Manthasman	826,{
callfunc "refinemain","Manthasman Pruhag",0;
end;
}
lhz_in02,282,20,7	script	Fulerr	869,{
callfunc "refinemain","Fulerr",0;
end;
}

Just change "0" to "1" so that the Safe Refine will be on. For an example

prt_in,63,60,0	script	Hollgrehenn	85,{
callfunc "refinemain","Hollgrehenn",0;
end;
}

Change the "0" to "1"

callfunc "refinemain","Hollgrehenn",0;

to this

callfunc "refinemain","Hollgrehenn",1;

you can also make a duplicate refine npc with Safe Refine so that you wont mess the script npc

prontera,99,99,5	script	Refiner	85,{
callfunc "refinemain","Refiner",1;
end;
}

Edited by Lelouch vi Britannia
  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  83
  • Topics Per Day:  0.02
  • Content Count:  243
  • Reputation:   1
  • Joined:  08/29/12
  • Last Seen:  

i see is there already script for those npc?

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...