diff --git a/Max-Level-For-Your-Server.md b/Max-Level-For-Your-Server.md new file mode 100644 index 0000000..8136597 --- /dev/null +++ b/Max-Level-For-Your-Server.md @@ -0,0 +1,32 @@ +# Four Easy Steps to setting your server level. + +So you want to take your server to the next level? There are a lot of old posts about this, and the ones Google likes to show are all missing a crucial detail. There are four variables that contain this data. They are all in the rule_values table. I don't see a page for this, so here it goes. + +_In this example I'm setting the Max Level to 100; change this value as needed._ + +**1)** Open a MySQL Admin tool (Heidi, OmniDB, MySQL Workbench, etc.) and connect to the eqemu database for your server. + +**2)** Run the following SQL Statements: + +`UPDATE eqemu.rule_values SET rule_value = 100 WHERE rule_name = "Character:MaxLevel"` + +`UPDATE eqemu.variables SET value = 100 WHERE rule_name = "Character:MaxExpLevel"` + +**3)** Verify + +`SELECT * FROM rule_values WHERE rule_name = "Character:MaxLevel" or rule_name = "Character:MaxExpLevel"` + +You should have 4 records returned. If everything looks correct, proceed to step 4. + +**4)** Restart your server. + +## Have fun out there. Herokiller signing out. + +_Thanks to Akkadius for the clue on multiple variables._ + + + + + + +