mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-31 17:26:30 +00:00
Add PercentChanceToCastGroupCure
This commit is contained in:
@@ -811,6 +811,7 @@ RULE_INT(Bots, PercentChanceToCastMez, 75, "The chance for a bot to attempt to c
|
|||||||
RULE_INT(Bots, PercentChanceToCastSlow, 75, "The chance for a bot to attempt to cast the given spell type in combat. Default 75%.")
|
RULE_INT(Bots, PercentChanceToCastSlow, 75, "The chance for a bot to attempt to cast the given spell type in combat. Default 75%.")
|
||||||
RULE_INT(Bots, PercentChanceToCastDebuff, 75, "The chance for a bot to attempt to cast the given spell type in combat. Default 75%.")
|
RULE_INT(Bots, PercentChanceToCastDebuff, 75, "The chance for a bot to attempt to cast the given spell type in combat. Default 75%.")
|
||||||
RULE_INT(Bots, PercentChanceToCastCure, 75, "The chance for a bot to attempt to cast the given spell type in combat. Default 75%.")
|
RULE_INT(Bots, PercentChanceToCastCure, 75, "The chance for a bot to attempt to cast the given spell type in combat. Default 75%.")
|
||||||
|
RULE_INT(Bots, PercentChanceToCastGroupCure, 75, "The chance for a bot to attempt to cast the given spell type in combat. Default 75%.")
|
||||||
RULE_INT(Bots, PercentChanceToCastHateRedux, 75, "The chance for a bot to attempt to cast the given spell type in combat. Default 75%.")
|
RULE_INT(Bots, PercentChanceToCastHateRedux, 75, "The chance for a bot to attempt to cast the given spell type in combat. Default 75%.")
|
||||||
RULE_INT(Bots, PercentChanceToCastFear, 75, "The chance for a bot to attempt to cast the given spell type in combat. Default 75%.")
|
RULE_INT(Bots, PercentChanceToCastFear, 75, "The chance for a bot to attempt to cast the given spell type in combat. Default 75%.")
|
||||||
RULE_INT(Bots, PercentChanceToCastOtherType, 90, "The chance for a bot to attempt to cast the remaining spell types in combat. Default 0-%.")
|
RULE_INT(Bots, PercentChanceToCastOtherType, 90, "The chance for a bot to attempt to cast the remaining spell types in combat. Default 0-%.")
|
||||||
|
|||||||
@@ -2094,6 +2094,8 @@ uint8 Bot::GetChanceToCastBySpellType(uint16 spellType)
|
|||||||
return RuleI(Bots, PercentChanceToCastDebuff);
|
return RuleI(Bots, PercentChanceToCastDebuff);
|
||||||
case BotSpellTypes::Cure:
|
case BotSpellTypes::Cure:
|
||||||
return RuleI(Bots, PercentChanceToCastCure);
|
return RuleI(Bots, PercentChanceToCastCure);
|
||||||
|
case BotSpellTypes::GroupCures:
|
||||||
|
return RuleI(Bots, PercentChanceToCastGroupCure);
|
||||||
case BotSpellTypes::HateRedux:
|
case BotSpellTypes::HateRedux:
|
||||||
return RuleI(Bots, PercentChanceToCastHateRedux);
|
return RuleI(Bots, PercentChanceToCastHateRedux);
|
||||||
case BotSpellTypes::Fear:
|
case BotSpellTypes::Fear:
|
||||||
|
|||||||
Reference in New Issue
Block a user