Created: 07/18/2022, 02:29:06 PM Updated: 07/18/2022, 02:29:06 PM View Change History
1
2
3
4
5
6
7
8removelist loot_items
9createlist loot_items
10pushlist loot_items 3740
11pushlist loot_items 3834
12pushlist loot_items 5146
13pushlist loot_items 5143
14
15if not varexist my_loot_to_id_bag
16 setvar my_loot_to_id_bag
17endif
18
19foreach loot in loot_items
20 sysmsg loot
21 while findtype loot backpack as item
22 overhead item
23 getlabel item description
24 overhead description 88
25 if unidentified in description
26 lift item
27 wait 250
28 drop my_loot_to_id_bag -1 -1 -1
29 else
30 ignore item
31 wait 250
32 endif
33 endwhile
34endfor