What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Kill Between Hotspots Auto-Enable?

y2krazy

Community Developer
Joined
Jun 21, 2011
Messages
2,803
Every time I go to run ANY profiles, my Settings & Tools checkbox for Kill Between Hotspots resets to Enabled (Checked). Why is this happening when I uncheck it EVERY TIME I run the bot and click Save & Close? It's is VERY annoying to have to uncheck this every time.

Thanks for your help in advance!

PS - It will reset DURING a running profile, causing the character to randomly go from NOT killing between hotspots to killing between hotspots, even though I uncheck the box. I cannot tell you how very annoying this is.
 
Find:
Code:
<CustomBehavior File="UserSettings" LootMobs="True" TrainNewSkills="True" LearnFlightPaths="False" UseFlightPaths="False" PullDistance="25" GroundMountFarmingMode="False" KillBetweenHotspots="True" />
Change:
Code:
KillBetweenHotspots="True"
To:
Code:
KillBetweenHotspots="False"

EDIT: In the quest profile**
 
Thank you, Cicrocoft. Such a pain to change ALL of Kick's questing profiles to False, though. Even the Cata ones need to be changed for me... Ugh.

Each time I update them via SVN I'll have to modify them again... >_>
 
Use the replace function in notepad or notepad++:

Replace:
<CustomBehavior File="UserSettings" LootMobs="True" TrainNewSkills="True" LearnFlightPaths="True" UseFlightPaths="True" PullDistance="25" GroundMountFarmingMode="False" KillBetweenHotspots="True" />
With:
<CustomBehavior File="UserSettings" LootMobs="True" TrainNewSkills="True" LearnFlightPaths="True" UseFlightPaths="True" PullDistance="25" GroundMountFarmingMode="False" KillBetweenHotspots="False" />

5sec action :D
 
Back
Top