Table of Contents
Details #
All scripts have been collected over the years and if available will still contain the creators details, these scripts may run well or not.
Scripts #
tasteid.sc #
sub main()
aaa:
UO.Say(",waittargetlast")
UO.Exec("useskill 'Taste Identification'")
wait(10000)
goto aaa
end sub
Taste ID.sc #
sub main()
var foodType = 0x09B7
Repeat
UO.WaitTargetType(foodType)
UO.UseSkill('Taste Identification')
Wait(10000)
Until False
end sub
tasteid 2.sc #
sub main()
aaa:
UO.Exec("waittargettype cookedfish")
wait(50)
UO.Exec("useskill 'Taste Identification'")
wait(10000)
goto aaa
end sub