yes! i will be giving credit to the authors in my header if i do use their work in mine, even in parts not whole.

i'm working on a script to make ONE tinker tool, then use it, until it runs out of uses, to make smith hammers 1 at the time. (script makes 1 tinker tool, tinker tool makes 1 smith hammer, hammer makes X amt of shields until hammer expires, then script uses same st tinker tool to make another hammer) just trying to be clear as to how i want it to work. right now script makes a new tinker tool each time it wants a smith hammer. script is as follows.
End of "makes tinker tool" sub
click 28 130 dmc
wait 5
set #contPosX 0
set #contPosY 0
wait 5
click 231 131 dmc
gosub TR_waitfor_generic_gump
return
End of "Makes smith hammer" sub
gosub TR_waitfor_generic_gump
wait 10
finditem %smiths_hammer C_ , #backpackID
wait 5
until #findkind <> -1
return
ok, script makes the hammer, uses it up, then makes a new tinker tool & then hammer. my question is: can i put this:
wait 10
finditem %tinker_tool C_ , #backpackID
wait 5
until #findkind <> -1
return
at end of tinker tool sub and it work the way i'm asking? thank you all for any advice in advance.
***UPDATE***
i haven't been able to give it an extensive test yet but so far it's made 2 smith hammers withOUT making a new tinker's tool. i also lowered the ingot pull to guarantee character doesn't become 'to encumbered to move!' whilst running script. so far it's running ok. i'll be analyzing farther down now and trying to learn more so i can incorporate it all into my script.
By the way, TM, i AM using scriptUO to view/ analyze scripts now. it really is helpful. sub breakdown, colored fonts, etc., very nice job man!