MojoMojo Posted June 6, 2012 Posted June 6, 2012 I want to make a refiner that refine equipment beyond the +10? Quote
v00m3r Posted June 6, 2012 Posted June 6, 2012 (edited) rathena already have +11 and up refiner. at prontera you have 1.go to the refiner then upper portal,, Edited June 6, 2012 by v00m3r Quote
MojoMojo Posted June 6, 2012 Author Posted June 6, 2012 (edited) rathena already have +11 and up refiner You can be more specific... Like: Where i can found the rAthena script file that do that? Edited June 6, 2012 by MojoMojo Quote
plankt Posted June 6, 2012 Posted June 6, 2012 (edited) If you're looking for the refiner scripts, they are in the folder "npc\merchants\" If you want to know the commands required for refining: *successrefitem <equipment slot>; This command will refine an item in the specified equipment slot of the invoking character by +1. For a list of equipment slots see 'getequipid'. This command will not only add the +1, but also display a 'refine success' effect on the character and put appropriate messages into their chat window. It will also give the character fame points if a weapon reached +10 this way, even though these will only take effect for blacksmith who will later forge a weapon. The official scripts seems to use the 'successrefitem' command as a function instead: 'successrefitem(<number>)' but it returns nothing on the stack. This is since jAthena, so probably nobody knows for sure why is it so. --------------------------------------- *failedrefitem <equipment slot>; This command will fail to refine an item in the specified equipment slot of the invoking character. The item will be destroyed. This will also display a 'refine failure' effect on the character and put appropriate messages into their chat window. The official scripts seems to use the 'failedrefitem' command as a function instead: 'failedrefitem(<number>)' but it returns nothing on the stack. This is since jAthena, so probably nobody knows for sure why is it so. --------------------------------------- *downrefitem <equipment slot>; This command will downgrade an item by - 1 in the specified equipment slot of the invoking character. So the item will not be destroyed unlike in the failedrefitem script command. This will also display a 'refine failure' effect on the character and put appropriate messages into their chat window. The official scripts seems to use the 'downrefitem' command as a function instead: 'downrefitem(<number>)' but it returns nothing on the stack. This is since jAthena, so probably nobody knows for sure why is it so. Edited June 6, 2012 by plankt Quote
MojoMojo Posted June 6, 2012 Author Posted June 6, 2012 I saw this command, but, it dont stop at +10? Quote
plankt Posted June 6, 2012 Posted June 6, 2012 (edited) Inside "src\map\status.h" you will find this section: /** * Max Refine available to your server * Changing this limit requires edits to refine_db.txt **/ #ifdef RENEWAL # define MAX_REFINE 20 #else # define MAX_REFINE 10 #endif What it says is, if you have renewal, max refine rate will be 20, otherwise it'll be 10. You can change this for any value you want above 10. You will need to re-compile after changing this. Edited June 6, 2012 by plankt 1 Quote
Rikimaru Posted June 6, 2012 Posted June 6, 2012 You can refine them up to +100 with my Refiner here : https://rikisscripts.googlecode.com/svn/trunk/npc/Refiner.txt Quote
Question
MojoMojo
I want to make a refiner that refine equipment beyond the +10?
7 answers 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.