Jump to content
  • 0

HELP - Hot make a refiner greater than +10


MojoMojo

Question


  • Group:  Members
  • Topic Count:  50
  • Topics Per Day:  0.01
  • Content Count:  114
  • Reputation:   1
  • Joined:  03/07/12
  • Last Seen:  

I want to make a refiner that refine equipment beyond the +10?

Link to comment
Share on other sites

7 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  53
  • Topics Per Day:  0.01
  • Content Count:  291
  • Reputation:   4
  • Joined:  04/24/12
  • Last Seen:  

rathena already have +11 and up refiner. at prontera you have 1.go to the refiner then upper portal,,

Edited by v00m3r
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  50
  • Topics Per Day:  0.01
  • Content Count:  114
  • Reputation:   1
  • Joined:  03/07/12
  • Last Seen:  

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 by MojoMojo
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  130
  • Reputation:   43
  • Joined:  12/11/11
  • Last Seen:  

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 by plankt
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  50
  • Topics Per Day:  0.01
  • Content Count:  114
  • Reputation:   1
  • Joined:  03/07/12
  • Last Seen:  

I saw this command, but, it dont stop at +10?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  130
  • Reputation:   43
  • Joined:  12/11/11
  • Last Seen:  

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 by plankt
  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  50
  • Topics Per Day:  0.01
  • Content Count:  114
  • Reputation:   1
  • Joined:  03/07/12
  • Last Seen:  

Thank you!

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  658
  • Reputation:   57
  • Joined:  11/20/11
  • Last Seen:  

You can refine them up to +100 with my Refiner here :

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

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