EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Support::Windows Servers (https://www.eqemulator.org/forums/forumdisplay.php?f=587)
-   -   None of my settings do anything? (https://www.eqemulator.org/forums/showthread.php?t=37591)

Lucia Moore 12-07-2013 01:56 PM

None of my settings do anything?
 
Okay, so I found this HUGE rule list in the database that seems to control all sorts of things. Level caps, how AC/Attack work on level differences, crit rates, everything....but changing those values seems to have zero effect on my server.

My DB seems to have three "rule sets". How do I know which one I'm using? And do any of these settings actually do anything?

Kingly_Krab 12-07-2013 02:03 PM

You can tell which rule set which zone is using by running this query:
Code:

SELECT ruleset, short_name, long_name, zoneidnumber FROM zone ORDER BY zoneidnumber ASC LIMIT 0, 1000;
Also, they do actually work; therefore, you may be editing the wrong rule set.

Lucia Moore 12-07-2013 02:09 PM

Quote:

Originally Posted by Kingly_Krab (Post 226566)
You can tell which rule set which zone is using by running this query:
Code:

SELECT ruleset, short_name, long_name, zoneidnumber FROM zone ORDER BY zoneidnumber ASC LIMIT 0, 1000;
Also, they do actually work; therefore, you may be editing the wrong rule set.

Oh, I see. I'll try changing that and see if characters can still level beyond 20, because that's the limit I'm trying to set.

Also, can I just set all zones to use the same ruleset, or will that break something?

Kingly_Krab 12-07-2013 02:12 PM

Try this query, there's a max level setting and a max level achievable by experience setting.
Code:

SELECT * FROM rule_values WHERE rule_name IN ("Character:MaxExpLevel", "Character:MaxLevel");
This will set all zones to whatever rule set you wish for them to have.
Code:

UPDATE zone SET ruleset = '#';
"#" Being the rule set you choose. This shouldn't break anything at all.


All times are GMT -4. The time now is 09:33 AM.

Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.