<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Max Level</title><link>https://sourceforge.net/p/rathena/wiki/Max%2520Level/</link><description>Recent changes to Max Level</description><atom:link href="https://sourceforge.net/p/rathena/wiki/Max%20Level/feed" rel="self"/><language>en</language><lastBuildDate>Mon, 20 Feb 2023 05:02:05 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/rathena/wiki/Max%20Level/feed" rel="self" type="application/rss+xml"/><item><title>Max Level modified by Brynner</title><link>https://sourceforge.net/p/rathena/wiki/Max%2520Level/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Brynner</dc:creator><pubDate>Mon, 20 Feb 2023 05:02:05 -0000</pubDate><guid>https://sourceforge.net6f84b5b79b4ece1d8ca9accb5fe13770c93cb556</guid></item><item><title>Edit_Max_Level modified by Brynner</title><link>https://sourceforge.net/p/rathena/wiki/Edit_Max_Level/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,61 +1,32 @@
----
-title: Edit Max Level
-permalink: /Edit_Max_Level/
----
-
 One of the most common issues during server configurations is setting the max base and job levels. The process involves a 2-part editing--the source code and the configuration files.

-Editing The Source Code
------------------------
+## Editing The Source Code

-### \\src\\map\\map.h
+### /src/map/map.h
+Open /src/map/map.h and look for this line of code:
+`#define MAX_LEVEL 160`

-------------------------------------------------------------------------
+Change **160** to your desired maximum value, i.e.
+`#define MAX_LEVEL 1000`

-Open ***\\src\\map\\map.h*** and look for this line of code:
-
-`#define MAX_LEVEL `***`160`***
-
-Change ***160*** to your desired maximum value, i.e.
-
-`#define MAX_LEVEL `***`1000`***
-
-Compiling The Server
---------------------
-
+## Compiling The Server
 After editing the source code, you must recompile your binaries for the changes to take effect.

-See [Compiling](/Compiling "wikilink").
-
-Editing The Configuration and Database Files
---------------------------------------------
-
-### \\conf\\battle\\client.conf
-
-------------------------------------------------------------------------
-
-Open ***\\conf\\battle\\client.conf*** and look for this line of code:
-
-`max_lv: `***`99`***
-
+## Editing The Configuration and Database Files
+### /conf/battle/client.conf
+Open /conf/battle/client.conf and look for this line of code:
+`max_lv: 99`
 and
-
-`aura_lv: `***`99`***
+`aura_lv: 99`

 Modify these to your desire values. But take note of the maximum values had in your source. Any value exceeding the supported values will be automatically reverted to **99**.

-### \\db\\(pre-)re\\job_exp.txt
-
-------------------------------------------------------------------------
-
-sets the final maximum values for the base and job levels. The included file supports up to base level 1000.
+### /db/(pre-)re/job_exp.txt
+Set the final maximum values for the base and job levels. The included file supports up to base level 1000.

 Each entry under job_exp.txt is in the format

-`Max Level,Class list,Type (0 - Base Exp / 1 - Job Exp),Exp 1,2,3,...`
-`Example: //Base - Normal and Baby Jobs`
-`         99,0:1:2:3:4:5:6:7:8:9:10:11:12:13:14:15:... = 99 Base level for Normal Jobs and baby Jobs`
-
-Edit the Max Level values to your desired values. You can also set the maximum Job level under this file. Each entry is labeled accordingly.
-
-[Category:Configuration](/Category:Configuration "wikilink") [Category:Source Snippets](/Category:Source_Snippets "wikilink")
+    Max Level,Class list,Type (0 - Base Exp / 1 - Job Exp),Exp 1,2,3,...
+    Example: //Base - Normal and Baby Jobs
+             99,0:1:2:3:4:5:6:7:8:9:10:11:12:13:14:15:... = 99 Base level for Normal Jobs and baby Jobs
+Edit the Max Level values to your desired values. You can also set the maximum Job level under this file. Each entry is labelled accordingly.
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Brynner</dc:creator><pubDate>Mon, 20 Feb 2023 05:02:05 -0000</pubDate><guid>https://sourceforge.neta679847177e6042ca1b456dd608b2a10ceaaa290</guid></item><item><title>Edit_Max_Level modified by Brynner</title><link>https://sourceforge.net/p/rathena/wiki/Edit_Max_Level/</link><description>&lt;div class="markdown_content"&gt;&lt;hr/&gt;
&lt;p&gt;title: Edit Max Level&lt;br/&gt;
permalink: /Edit_Max_Level/&lt;/p&gt;
&lt;hr/&gt;
&lt;p&gt;One of the most common issues during server configurations is setting the max base and job levels. The process involves a 2-part editing--the source code and the configuration files.&lt;/p&gt;
&lt;h2 id="editing-the-source-code"&gt;Editing The Source Code&lt;/h2&gt;
&lt;h3 id="srcmapmaph"&gt;\src\map\map.h&lt;/h3&gt;
&lt;hr/&gt;
&lt;p&gt;Open &lt;strong&gt;&lt;em&gt;\src\map\map.h&lt;/em&gt;&lt;/strong&gt; and look for this line of code:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;#define MAX_LEVEL&lt;/code&gt;&lt;strong&gt;&lt;em&gt;&lt;code&gt;160&lt;/code&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Change &lt;strong&gt;&lt;em&gt;160&lt;/em&gt;&lt;/strong&gt; to your desired maximum value, i.e.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;#define MAX_LEVEL&lt;/code&gt;&lt;strong&gt;&lt;em&gt;&lt;code&gt;1000&lt;/code&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;h2 id="compiling-the-server"&gt;Compiling The Server&lt;/h2&gt;
&lt;p&gt;After editing the source code, you must recompile your binaries for the changes to take effect.&lt;/p&gt;
&lt;p&gt;See &lt;a class="" href="/Compiling" title="wikilink"&gt;Compiling&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id="editing-the-configuration-and-database-files"&gt;Editing The Configuration and Database Files&lt;/h2&gt;
&lt;h3 id="confbattleclientconf"&gt;\conf\battle\client.conf&lt;/h3&gt;
&lt;hr/&gt;
&lt;p&gt;Open &lt;strong&gt;&lt;em&gt;\conf\battle\client.conf&lt;/em&gt;&lt;/strong&gt; and look for this line of code:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;max_lv:&lt;/code&gt;&lt;strong&gt;&lt;em&gt;&lt;code&gt;99&lt;/code&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;and&lt;/p&gt;
&lt;p&gt;&lt;code&gt;aura_lv:&lt;/code&gt;&lt;strong&gt;&lt;em&gt;&lt;code&gt;99&lt;/code&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Modify these to your desire values. But take note of the maximum values had in your source. Any value exceeding the supported values will be automatically reverted to &lt;strong&gt;99&lt;/strong&gt;.&lt;/p&gt;
&lt;h3 id="dbpre-rejob_exptxt"&gt;\db\(pre-)re\job_exp.txt&lt;/h3&gt;
&lt;hr/&gt;
&lt;p&gt;sets the final maximum values for the base and job levels. The included file supports up to base level 1000.&lt;/p&gt;
&lt;p&gt;Each entry under job_exp.txt is in the format&lt;/p&gt;
&lt;p&gt;&lt;code&gt;Max Level,Class list,Type (0 - Base Exp / 1 - Job Exp),Exp 1,2,3,...&lt;/code&gt;&lt;br/&gt;
&lt;code&gt;Example: //Base - Normal and Baby Jobs&lt;/code&gt;&lt;br/&gt;
&lt;code&gt;99,0:1:2:3:4:5:6:7:8:9:10:11:12:13:14:15:... = 99 Base level for Normal Jobs and baby Jobs&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Edit the Max Level values to your desired values. You can also set the maximum Job level under this file. Each entry is labeled accordingly.&lt;/p&gt;
&lt;p&gt;&lt;a class="" href="/Category:Configuration" title="wikilink"&gt;Category:Configuration&lt;/a&gt; &lt;a class="" href="/Category:Source_Snippets" title="wikilink"&gt;Category:Source Snippets&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Brynner</dc:creator><pubDate>Mon, 20 Feb 2023 04:59:17 -0000</pubDate><guid>https://sourceforge.net779560393e5c8e1720151b41f133980038a221fe</guid></item></channel></rss>