Kept getting a compile error about unable to add pointers on bot.cpp; this fixes it (TSVN patch format):
Code:
Index: zone/bot.cpp
===================================================================
--- zone/bot.cpp (revision 2173)
+++ zone/bot.cpp (working copy)
@@ -7696,1 +7696,1 @@
- min_hit = min_hit * (100 + itembonuses.MinDamageModifier + spellbonuses.MinDamageModifier) / 100;
+ min_hit = min_hit * (100 + itembonuses.MinDamageModifier[skillinuse] + spellbonuses.MinDamageModifier[skillinuse]) / 100;