Created: 3 months ago on 03/27/2025, 01:38:05 AM
FileType: Razor Script (Community Edition)
Size: 1936
Description: This script will use your sewing kit and then select the "Make Last" option. It will keep using that until it doesn't see you gain anymore skill. You can use this to hone in what you want to make and walk away.
Replace "sewing kit" with whatever crafting skill you want to do and "Tailoring" in the skill check.
# Training Tailoring using Make Last by Jaseowns
# UO Unchained
clearsysmsg
settimer skillGainCheckTimer 0
while skill "Tailoring" < 120
if findtype "sewing kit" backpack as jaseowns_Tools
dclick jaseowns_Tools
wait 500
gumpresponse 21
wait 2000
if insysmsg "Gain chance"
settimer skillGainCheckTimer 0
endif
endif
if timer skillGainCheckTimer >= 10000
overhead "we are not gaining" 34
stop
endif
if findtype "studded gorget" backpack as item
if findtype "scissors" backpack as siz
dclick siz
wft 500
target item
endif
endif
if findtype 5981 backpack 2001 as item
if findtype "scissors" backpack as siz
dclick siz
wft 500
target item
endif
endif
if findtype "robe" backpack as item
if findtype "scissors" backpack as siz
dclick siz
wft 500
target item
endif
endif
if findtype "cloak" backpack as item
if findtype "scissors" backpack as siz
dclick siz
wft 500
target item
endif
endif
if findtype "fancy shirt" backpack as item
if findtype "scissors" backpack as siz
dclick siz
wft 500
target item
endif
endif
endwhile