lofi
New Member
- Joined
- Jul 12, 2010
- Messages
- 203
CombatHelper v4.2.2
CombatHelper enhances target filtering, fixes combat issues and assists group members. Stuck handling features are now in StuckHelper plugin.
Features: (Designed for Honorbuddy 2.0.0.4317)
* - Improves target/loot filtering (integrates with CC)
* - Fixes stuck in combat and pet aggro bugs
* - Engages targets PvE and PvP (separate logic)
* - Ignores crowd-controlled targets in Battlegrounds
* - Follows leader and assists party/raid members
* - Auto attack for classes/specs that use it
Installation:
1. Download CombatHelper.cs to your Plugins folder.
2. Modify parameters (optional - see Configuration)
3. Click "Recompile All" under Plugins tab in Honorbuddy.
4. Select "CombatHelper" and check the "Enabled" checkbox.
For RaF botting (i.e. party/raid), on all followers enable FollowLeader in the configurations, load the attached Blank.xml profile, and run Combat/Heal Bot or Grind bot. Enable the plugin enabled on all toons. Alternately, use bot of your choice for leader with LeaderPlugin enabled, and run PartyBot on all followers (recommended). Another option is to try Multibox Suite by tjhasty.
Configuration:
1. Open CombatHelper.cs in your Plugins folder using any text editor (Notepad will do).
2. Edit configurations on lines 45+ (see code snippet below)
3. Save the file and click "Recompile All" in the Plugins tab.
4. Select "CombatHelper" and make sure it is enabled.
Debugging: (test targeting logic)
1. Select CombatHelper in the Plugins tab.
2. Target any unit in-game.
3. Click "Unit Check" button.
4. Read log messages.
Known Issues:
- Overrides factions and min/max target levels set in a profile (in many cases this is a good thing)
Please post any bugs, suggestions or feedback.
CombatHelper enhances target filtering, fixes combat issues and assists group members. Stuck handling features are now in StuckHelper plugin.
Features: (Designed for Honorbuddy 2.0.0.4317)
* - Improves target/loot filtering (integrates with CC)
* - Fixes stuck in combat and pet aggro bugs
* - Engages targets PvE and PvP (separate logic)
* - Ignores crowd-controlled targets in Battlegrounds
* - Follows leader and assists party/raid members
* - Auto attack for classes/specs that use it
Installation:
1. Download CombatHelper.cs to your Plugins folder.
2. Modify parameters (optional - see Configuration)
3. Click "Recompile All" under Plugins tab in Honorbuddy.
4. Select "CombatHelper" and check the "Enabled" checkbox.
For RaF botting (i.e. party/raid), on all followers enable FollowLeader in the configurations, load the attached Blank.xml profile, and run Combat/Heal Bot or Grind bot. Enable the plugin enabled on all toons. Alternately, use bot of your choice for leader with LeaderPlugin enabled, and run PartyBot on all followers (recommended). Another option is to try Multibox Suite by tjhasty.
Configuration:
1. Open CombatHelper.cs in your Plugins folder using any text editor (Notepad will do).
2. Edit configurations on lines 45+ (see code snippet below)
3. Save the file and click "Recompile All" in the Plugins tab.
4. Select "CombatHelper" and make sure it is enabled.
Code:
// User configurations
PullSpell = "None"; // Name of pull spell (leave unset to let CC pull)
MaxTargetDistance = 40; // Max distance to target nearby units
MaxAssistDistance = 75; // Max distance to assist nearby units
MaxLootDistance = 45; // Max distance to move to nearby lootable units
StuckInCombatTimeout = 10; // Seconds to wait out combat before pulling closest mob
FollowLeader = false; // Follow party/raid leader (or RaF leader if set)
FollowDistance = UseAutoAttack() ? 15 : 25; // Distance before moving to leader (RaF only)
MaxLevelsAbove = 3; // Don't pull mobs more than this many levels above me
MaxLevelsBelow = 5; // Don't pull mobs more than this many levels below me
LootLowLevelMobs = false; // Loot mobs more than MaxLevelsBelow levels than me
MaxHealthRatio = 2.5; // Don't pull mobs with more than this times my max health
MinHealthRatio = 0.1; // Don't pull mobs with less than this fraction of my health
IgnoreElites = true; // Enable to ignore elite mobs
IgnoreFlyers = true; // Enable to ignore flying mobs
MaxUnits = 25; // Max nearest units to inspect
FilterOnly = false; // Enable this setting to disable pull/assist feature
PullTargets = false; // Pull targets that are in range (disable to assist only)
PullTargetsPvP = true; // Pull targets while in battlegrounds
ClearTargets = false; // Clear targets that run out of range/LoS
Debugging: (test targeting logic)
1. Select CombatHelper in the Plugins tab.
2. Target any unit in-game.
3. Click "Unit Check" button.
4. Read log messages.
Known Issues:
- Overrides factions and min/max target levels set in a profile (in many cases this is a good thing)
Please post any bugs, suggestions or feedback.
Attachments
Last edited: