Also a very simple way to adjust Game Define multipliers is to open the Stored Procedure find the Column in the SELECT statement for example [Exp] (Experience Points) -
SELECT .. , [Exp], ...
change the column to be something like:
SELECT .. , CONVERT(INT, ([Exp] * 2)) [Exp], ...
Which would effectively double the XP. However if the result is larger than the max data type value you would need to use something like a CASE statement to handle overflows see:
[Only registered and activated users can see links. Click Here To Register...]