Hi, I would like to change the routine setting so that my bot curse every mobs.
I found in the exampleroutine this:
// Handle curse logic - curse magic+ and packs of 4+, but only cast within MaxRangeRange.
var checkCurses = myPos.Distance(cachedPosition) < ExampleRoutineSettings.Instance.MaxRangeRange &&
(cachedRarity >= Rarity.Magic || Utility.NumberOfMobsNear(bestTarget, 20) >= 3);
I believe what I need to change is there but I tried many change and northing worked. If someone can enlight me that would be nice !
I found in the exampleroutine this:
// Handle curse logic - curse magic+ and packs of 4+, but only cast within MaxRangeRange.
var checkCurses = myPos.Distance(cachedPosition) < ExampleRoutineSettings.Instance.MaxRangeRange &&
(cachedRarity >= Rarity.Magic || Utility.NumberOfMobsNear(bestTarget, 20) >= 3);
I believe what I need to change is there but I tried many change and northing worked. If someone can enlight me that would be nice !