Organize Special Fishing Nets by dabiri
Description: Drops off special fishing nets and keeps material fishing nets
1//This script should dump special fishing nets into a pre-defined box while leaving non special fishing nets in your bag. I use it as part of a much more significant control-shift-owyn style script
2
3clearignore
4// Set this to the serial of the box you want to dump the nets into
5@setvar! gold_box '0x42B2CD0B'
6
7while findtype "fishing net" backpack as net
8 getlabel net netname
9 if "special" in netname
10 overhead 'Found a special net'
11 lift net 60000
12 drop gold_box -1 -1 0
13 wait 650
14 else
15 ignore net
16 endif
17endwhile