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

Ignore All Mobs in a zone.

ohabotforpoe

New Member
Joined
Mar 10, 2014
Messages
15
Reaction score
0
Is there a way to set the bot to ignore mobs in a zone, and only farm corrupted areas ?
 
You want to get banned? Because that's how you get banned.
 
not wanting to get banned, just wondering if there was a way to do this, as in like when i manually do it. I whirling blades through maps looking for corrupted zones... I dont kill mobs.
 
im not sure but in targeting:
Code:
 if (!AreaStateCache.Current.WorldArea.IsCorruptedArea)
                return;
you can also change it to kill only rare/unique mobs.
 
In your CR you can make some changes to do this, but I don't recommend it.

What FasterThanLight said is close, inside CombatTargetingOnInclusionCalcuation you'd return false if you weren't in a corrupted area and you'd ignore all monsters via the CR, but the TrackMoreMobs task will still cache them so you'd have to blacklist then as well.
 
In your CR you can make some changes to do this, but I don't recommend it.

What FasterThanLight said is close, inside CombatTargetingOnInclusionCalcuation you'd return false if you weren't in a corrupted area and you'd ignore all monsters via the CR, but the TrackMoreMobs task will still cache them so you'd have to blacklist then as well.
Or set the CR's combat range to 0, then everything be ignored. Why in god's name are you still farming sac frags?
 
Back
Top