Back to "herding" tags

ULTIMATE HERDING New Focus Agro Use Crook by slackermandan

Description: #As of the Jan 13 2024 patch, focus agro use has changed

#Now, it is turned on by double clicking the crook and it stays on and bonuses are applied

#Meaning you don't need to re-use the skill on each mob

#This script checks if focus agro is active, and if it is not active it turns it on

#This does not work if your crook is in a locked box, but it does work if it's in a trapped pouch

1#As of the Jan 13 2024 patch, focus agro use has changed
2#Now, it is turned on by double clicking the crook and it stays on and bonuses are applied to all followers against all targets
3#Meaning you don't need to re-use the skill on each mob
4#This script checks if focus agro is active, and if it is not active it turns it on
5#This does not work if your crook is in a locked box,
6#Trapped pouch doesn't work reliably, Razor forgets the crook is in it :(
7
8if findtype "shepherd's crook" backpack as crooky
9    getlabel crooky desc
10        if 'activated' in desc
11            overhead 'Herding Active'
12        else
13            dclick crooky
14        endif
15    else
16        overhead 'Need a crooky'
17endif