mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-11 13:52:23 +00:00
I cannot find a page that details how to modify your server's maximum level, so I'm creating one. All the posts Google returns don't have complete information.
parent
a56cb72945
commit
dc9540bc48
32
Max-Level-For-Your-Server.md
Normal file
32
Max-Level-For-Your-Server.md
Normal file
@ -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._
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user