lofi
New Member
- Joined
- Jul 12, 2010
- Messages
- 203
StuckHelper v1.0.1
StuckHelper detects when the bot is stuck in various conditions and tries to unstick the bot by either dismounting or jumping. If all else fails, the bot base is re-started. These features were separated from CombatHelper so that they can be used independently.
Features: (Designed for Honorbuddy 2.0.0.4129)
* - Detects when stuck and performs unstuck routine
* - Restarts bot when stuck or at intervals (stability fix)
* - Fixes stuck in air being attacked for ArchaeologyBuddy
* - Fixes stuck in shallow water for PoolFisher bot
* - Dismounts when navigation is stuck
Installation:
1. Download StuckHelper.cs to your Plugins folder.
2. Modify parameters (optional - see Configuration)
3. Click "Recompile All" under Plugins tab in Honorbuddy.
4. Select "StuckHelper" and check the "Enabled" checkbox.
Configuration:
1. Open StuckHelper.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 "StucktHelper" and make sure it is enabled.
Known Issues:
- Restart may cause some bots to crash. Recommend using it only when stuck.
Please post any bugs, suggestions or feedback.
StuckHelper detects when the bot is stuck in various conditions and tries to unstick the bot by either dismounting or jumping. If all else fails, the bot base is re-started. These features were separated from CombatHelper so that they can be used independently.
Features: (Designed for Honorbuddy 2.0.0.4129)
* - Detects when stuck and performs unstuck routine
* - Restarts bot when stuck or at intervals (stability fix)
* - Fixes stuck in air being attacked for ArchaeologyBuddy
* - Fixes stuck in shallow water for PoolFisher bot
* - Dismounts when navigation is stuck
Installation:
1. Download StuckHelper.cs to your Plugins folder.
2. Modify parameters (optional - see Configuration)
3. Click "Recompile All" under Plugins tab in Honorbuddy.
4. Select "StuckHelper" and check the "Enabled" checkbox.
Configuration:
1. Open StuckHelper.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 "StucktHelper" and make sure it is enabled.
Code:
// User configurations
RestartInterval = 0; // Restart bot ever x mins, 0 to disable
StopStartTime = 10; // Seconds to wait between stop and start during re-start
StuckDistance = 10; // Reset standing still timer after moving this distance
RestartStuckMinutes = 3.5; // Restart bot after standing still this long, 0 to disable
UnstuckRoutineMinutes = 2.0; // Perform unstuck after standing still this long, 0 to disable
ArchBuddyFixMinutes = 0.3; // Dismounts after flying still and being attacked, 0 to disable
PoolFisherFixMinutes = 0.3; // Perform unstuck after swimming still this long, 0 to disable
MountFixMinutes = 0.3; // Perform dismount after mounted still this long, 0 to disable
Known Issues:
- Restart may cause some bots to crash. Recommend using it only when stuck.
Please post any bugs, suggestions or feedback.
Attachments
Last edited: