PDA

View Full Version : Need Help Tweaking Lan Server


blackwaterr3
07-29-2009, 07:37 PM
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.

vales
07-29-2009, 10:05 PM
I would highly recommend getting the latest binaries (http://www.eqemulator.net/forums/showthread.php?t=29043) 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 (http://www.eqemulator.net/forums/showthread.php?t=28989) for people reporting issues until I can get the guide up on the wikki. :)

pfyon
07-29-2009, 10:29 PM
You can use:

UPDATE rules_values SET rule_value = 7.5 WHERE rule_name = 'Character:ExpMultiplier';


If it doesn't exist, you have to create it first.


INSERT INTO rules_values (ruleset_id,rule_name,rule_value) values (0,'Character:ExpMultiplier',7.5);


The above sql will create a the rule as part of ruleset 0 (the default) and set it to 7.5 (7.5x exp, I assume). The value I have in mine is 0.6.

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.

blackwaterr3
07-29-2009, 11:55 PM
ok Looks good and save the database by using
[use peq]