Need Help Tweaking Lan Server
Hello i making a EQ Lan Server and for the past few days i have been
messing around with SQL trying to get the EXP Gain from 100% to 750% this is as far has ive gotten, i am Using Build "EQServerPack-Maps-4.0-1110a". mysql>show databases; mysql>select database()peq; mysql>use peq; mysql>show tables; ~ !rule_sets !rule_values !Variables ~ These are the only tables i see that would have the exp gain info under them however i dont know how to find out which one does and how to change it. Im VERY new to using sql so can you help me do it step by step. |
I would highly recommend getting the latest binaries and set up a more recent build of the server. That version hasn't been updated in ages, and is missing a ton of options, not to mention an outdated database.
What you could then d is change the Character:ExpMultiplier in rules_values to what you desire. There's also the Character:GroupExpMultiplier, Character:RaidExpMultiplier values to change as well. Almost forgot, there's some editing needed in the guide, and since I can't edit the post, you might want to check this topic for people reporting issues until I can get the guide up on the wikki. :) |
You can use:
Code:
UPDATE rules_values SET rule_value = 7.5 WHERE rule_name = 'Character:ExpMultiplier'; Code:
INSERT INTO rules_values (ruleset_id,rule_name,rule_value) values (0,'Character:ExpMultiplier',7.5); Actually, I have two DBs set up and I don't remember which was the backup. I think the newer PEQ db doesn't have those rules in by default, so I don't know what the default for exp multiplier is. |
ok Looks good and save the database by using
[use peq] |
All times are GMT -4. The time now is 01:37 PM. |
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.