UOSteam Miner - Aira

If you make a Client-side script you can publish it here for other players to use
Post Reply
Aira
Novice Scribe
Posts: 9
Joined: Sun Jan 03, 2016 7:19 am

UOSteam Miner - Aira

Post by Aira »

All you need to do is on the 3rd to last line, change that value to that of your own mobile forge, this will mine and smelt once your specified pack weight is reached, 400 in the case of this script and works with both shovel and pickaxe(garg as well)



if @findtype '0xf39' 'any' 'backpack' 'any' '2'
@usetype '0xf39' '0' 'backpack' '1' 1
elseif @findtype '0xe86' 'any' 'backpack' 'any' '2'
@usetype '0xe86' 'any' 'backpack' 'any' '2'
endif
waitfortarget 5000
if direction == 0
targettileoffset 0 -1 0
elseif direction == 1
targettileoffset 1 -1 0
elseif direction == 2
targettileoffset 1 0 0
elseif direction == 3
targettileoffset 1 1 0
elseif direction == 4
targettileoffset 0 1 0
elseif direction == 5
targettileoffset -1 1 0
elseif direction == 6
targettileoffset -1 0 0
elseif direction == 7
targettileoffset -1 -1 0
else
headmsg 'No Tools Found!'
endif
pause 600
if @injournal 'no metal' 'system'
headmsg 'Time to Move'
pause 2000
@clearjournal
endif
if weight > 400
findtype 0x19b9
usetype 0x19b9
waitfortarget 15000
target! 0x4007708d
endif
pause 500
Drinyan
Novice Scribe
Posts: 5
Joined: Sun May 29, 2011 6:31 pm

Re: UOSteam Miner - Aira

Post by Drinyan »

Works like a charm!!! Thank you for this!
Mythgarr
Passer by
Posts: 1
Joined: Mon Dec 09, 2019 4:17 am

Re: UOSteam Miner - Aira

Post by Mythgarr »

Still working just fine! Thanks for the script :)
kurganwins
Journeyman Scribe
Posts: 27
Joined: Sun Jun 05, 2016 4:59 pm

Re: UOSteam Miner - Aira

Post by kurganwins »

This works great for walls, but what about cave floors, cant get it to work on cave floors. Thanks
Reskal
Elder Scribe
Posts: 108
Joined: Fri Aug 29, 2008 10:54 am

Re: UOSteam Miner - Aira

Post by Reskal »

I did not get it to work, what means "to last line" ?

I changed the 3rd line "elseif @findtype '0xe86' 'any' 'backpack' 'any' '2' " to "elseif @findtype '0x43aa0843' 'any' 'backpack' 'any' '2' ", since "0x43aa0843" is the Serial of my mobile forge, and the game keeps telling me: Select the forge on which you want to smelt the ore on.
Is there another line i should change that value ?
I tried the Graphic (0xe32) too, but same result.
Aira
Novice Scribe
Posts: 9
Joined: Sun Jan 03, 2016 7:19 am

Re: UOSteam Miner - Aira

Post by Aira »

3rd to last line, not the 3rd from top.

target! 0x4007708d this portion
Post Reply