Keep using item id until success by Jaseowns
1# Keep using item id until success by Jaseowns
2# UO Outlands
3# Description:
4# This just keeps trying to id
5# the item you selected
6@setvar! plz_id_this 0
7@setvar! plz_id_this
8
9if plz_id_this = 0
10 overhead "Target cancelled" 77
11 stop
12endif
13
14while not dead
15 getlabel plz_id_this desc
16 if "unidentified" in desc
17 useskill "itemId"
18 wft 500
19 target plz_id_this
20 wait 200
21 else
22 overhead desc 88
23 stop
24 endif
25endwhile