View Full Version : Missing SQL?
Dibalamin
07-06-2009, 02:56 PM
KLS, where did you hide the SQL for the new rule values for Monk Skills? I see slow mitigation in the svn, but not the rule values.
Dibalamin
07-06-2009, 04:44 PM
My bad, I was going by this:
KLS: Lowered monk kick damage and damage table bonuses but added rules to govern this damage so they can be boosted up for any servers that want.
What are the names of the values then? And what are the specifics of the rule? AKA what makes it hit for more/less, etc.
Zeice
07-06-2009, 05:01 PM
In /common/ruletypes.h
RULE_INT ( Combat, MonkDamageTableBonus, 5) //% bonus monks get to their damage table calcs
RULE_INT ( Combat, FlyingKickBonus, 50) //% Modifier that this skill gets to str and skill bonuses
RULE_INT ( Combat, DragonPunchBonus, 40) //% Modifier that this skill gets to str and skill bonuses
RULE_INT ( Combat, EagleStrikeBonus, 30) //% Modifier that this skill gets to str and skill bonuses
RULE_INT ( Combat, TigerClawBonus, 20) //% Modifier that this skill gets to str and skill bonuses
RULE_INT ( Combat, RoundKickBonus, 10) //% Modifier that this skill gets to str and skill bonuses
You would just add what you wanted into the rule_values table.
Dibalamin
07-06-2009, 05:09 PM
So, the rule_name would be Combat:MonkDamageTableBonus
the value would be 0-100 which will be a %
Never added rules manually before, want to make sure I don't hose it ><
If you don't plan to change them you don't have to add them.
Dibalamin
07-06-2009, 05:18 PM
Oh, I plan too. Flying kick at level 20ish is slamming people in the head for 180 in unrest from the Monk Skel's, and the 300 flying kick I dropped just a few minutes ago to a fire giant are a bit out of line for us =o.
leslamarch
07-06-2009, 05:29 PM
if anyone else needs them here they are
INSERT INTO `rule_values` VALUES ('0', 'Combat:MonkDamageTableBonus', '5', 'bonus monks get to their damage table calcs');
INSERT INTO `rule_values` VALUES ('0', 'Combat:FlyingKickBonus', '50', ' Modifier that this skill gets to str and skill bonuses');
INSERT INTO `rule_values` VALUES ('0', 'Combat:DragonPunchBonus', '40', ' Modifier that this skill gets to str and skill bonuses');
INSERT INTO `rule_values` VALUES ('0', 'Combat:EagleStrikeBonus', '30', ' Modifier that this skill gets to str and skill bonuses');
INSERT INTO `rule_values` VALUES ('0', 'Combat:TigerClawBonus', '20', 'Modifier that this skill gets to str and skill bonuses');
INSERT INTO `rule_values` VALUES ('0', 'Combat:RoundKickBonus', '10', 'Modifier that this skill gets to str and skill bonuses');
vBulletin® v3.8.11, Copyright ©2000-2025, vBulletin Solutions Inc.