Hi guys...
First of all, congratulations on an AWESOME script JaF, I've started using it and I love it.
Thank you for sharing it with us.
Secondly, I wanted to add a Tinker option to the script, so that I could just fill the secure with iron ingots and go to sleep.

Well, I wrote down a sub that does this, and decided to post it here, to help out anyone who wanted this option in the script.
It seems to be working fine for me, but I haven't tested it a lot, so I don't know if there are any bugs in it.
It may be a little sloppy, I wrote it pretty quickly, so sorry about that.
So, to get it to work, you need to have at list 1 tinker tools in your backpack. And you should add this to the script somewhere:
;+++++++++++++++++++++++++++++++++++++++++++++++++++++++
sub luizimpen
set %luizimingots ENK
set %luizimtinker JTL
set %luizimpen PBG
finditem %luizimingots C_ , %resource
if #findcnt <> -1
{
if #findstack > 30
{
exevent drag #findid 30
wait 20
exevent dropc #backpackid
wait 20
}
finditem %luizimtinker C_ , #backpackid
if #findcnt < 0
{
return
}
if #findcnt = 1
{
finditem %luizimtinker C_ , #backpackid
set #lobjectid #findid
event macro 17
wait 25
gosub gumpwait generic_gump
luizimtinker:
finditem %luizimtinker C_ , #backpackid
if #findcnt < 2
{
set %luizimx #contposx + 30
set %luizimy #contposy + 130
click %luizimx %luizimy f
gosub gumpwait generic_gump
set %luizimx #contposx + 235
set %luizimy #contposy + 130
click %luizimx %luizimy f
gosub gumpwait generic_gump
goto luizimtinker
}
}
finditem %luizimtinker C_ , #backpackid
set #lobjectid #findid
event macro 17
wait 25
gosub gumpwait generic_gump
luizimpen:
finditem %luizimpen C_ , #backpackid
if #findcnt < 4
{
set %luizimx #contposx + 30
set %luizimy #contposy + 130
click %luizimx %luizimy f
gosub gumpwait generic_gump
set %luizimx #contposx + 385
set %luizimy #contposy + 270
click %luizimx %luizimy f
gosub gumpwait generic_gump
set %luizimx #contposx + 385
set %luizimy #contposy + 270
click %luizimx %luizimy f
gosub gumpwait generic_gump
set %luizimx #contposx + 235
set %luizimy #contposy + 110
click %luizimx %luizimy f
gosub gumpwait generic_gump
goto luizimpen
}
finditem %luizimpen C_ , #backpackid
exevent drag #findid #findstack
wait 20
exevent dropc %resource
wait 20
finditem %luizimingots C_ , #backpackid
exevent drag #findid #findstack
wait 20
exevent dropc %resource
wait 20
set #menubutton button6
return
;+++++++++++++++++++++++++++++++++++++++++++++++++++++++
sub gumpwait
wait 10
set %timeout #SCNT
waitforgump:
if #contname = %1
{
return
}
if #SCNT > %timeout + 5
{
return
}
goto waitforgump
return
;+++++++++++++++++++++++++++++++++++++++++++++++++++++++
And also change this:
sub button2
set #menubutton n/a
menu delete status
menu window color white
menu text status 40 245 PAUSED
while #menubutton = n/a
wait 10
gosub #menubutton
return
to this:
sub button2
set #menubutton n/a
menu delete status
menu window color white
menu text status 40 245 PAUSED
if #menubutton = n/a
{
gosub luizimpen
gosub #menubutton
return
}
gosub #menubutton
return
Hope this can be useful...
I posted this only with the intention of helping others out, as I've been helped a lot here before.
If this post shouldn't exist or if it displeases anyone, please let me know, I will remove it ASAP. Thank you.