Connoisseur and Illusionist Achievement Helper by helvinr
Description from the author:
// Create a cooldown called "Food".
// Set the trigger text to an OVERHEAD message cooldown
// for the term "(delectable)" with a 60 second cooldown.
// Create another cooldown called "Disguise".
// Set the trigger text to a SYSTEM message cooldown
// for the phrase "You apply a new disguise." with a 300 second cooldown.
if findtype 'tray' backpack as feast and cooldown food = 0
getlabel feast feastlabel
if '(delectable)' in feastlabel
dclick feast
pause 500
else
ignore 'feast'
endif
endif
if skill stealing >= 80.0
if findtype 'hat stand' backpack as 'disguisekit' and cooldown 'Disguise' = 0
dclick disguisekit
for 4
waitforgump 3292512722
gumpresponse 7 3292512722
endfor
pause 500
if findtype 'hat stand' backpack as 'disguisekit'
dclick disguisekit
waitforgump 3292512722
gumpresponse 7 3292512722
pause 500
endif
endif
endif
pause 500
loop
A script to eat delectable food (Connoisseur) and use disguise kits (Illusionist) for achievement progression.