max refine

Maximum refine for the server can be modified in src/map/status.h. See this piece of code:

/*** 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
This should be self-explanatory, but if your server is in Renewal mode, you should edit the first definition of MAX_REFINE; if it is in pre-renewal mode second one.

After that you should edit db/re/refine_db.txt if you're on Renewal mode or /db/pre-re/refine_db.txt if you're on pre-renewal. These files are pretty self-explanatory too, just read thoroughly the structure at the start of the file and description of each parameter and modify accordingly. Now you're done with this.

 
Back
Top