|
Post by Dark Territory on Jan 10, 2022 23:18:08 GMT -8
Since you can not buy any bolts of cloth in the game I've made a script for UOSteam that turns the flax into bolths of cloth
The script does not gather the flax for you since that would be afk resource gathering
The script does target the spinning wheel The sxcript does target the loom The script does bank items when your overloaded (set to 555 weight)
You should be able to use both spinning wheels and looms in Arete starting area
if not listexists 'Spin'
createlist 'Spin'
endif
if list 'Spin' == '0'
@pushlist 'Spin' '0x1015'
@pushlist 'Spin' '0x101c'
@pushlist 'Spin' '0x1019'
//@pushlist 'Spin' 'graphic'
endif
if not @findobject 'wheel' or @distance 'wheel' > 3
for 0 to 'Spin'
if @findtype 'Spin[]' 'any' 'ground' '1' '2'
sysmsg 'Wheel found' '54'
setalias 'Wheel' 'found'
break
endif
endfor
endif
if weight >= 555
elseif @usetype 0x1a9c any backpack
waitfortarget 2000
target! found
pause 3500
endif
usetype 0xfa0
pause 500
target 0x4013e20d
pause 5000
while weight >= 555
headmsg 'I am no beast of burden'
if findtype '0xf95' 'any' 'backpack' 'any' '3'
msg 'bank'
pause 700
moveitem 'found' 'bank'
endif
endwhile
This script allowes you when you have 500 weight of flax to work trough your afk time to make bolts of cloth for several hours
|
|