[UOSteam] Make a Pot Keg

If you make a Client-side script you can publish it here for other players to use
Post Reply
User avatar
Pie
Expert Scribe
Posts: 31
Joined: Mon Oct 03, 2011 7:53 pm

[UOSteam] Make a Pot Keg

Post by Pie »

I just came back after a long break and now I'm about to switch it up to Orion woot .....but yah I just made this because I'm lazy and was fun to make. So before I go down this new rabbit hole hear it is ...... very simple to make so I'm sure some one might have done it and it can be optimized with the pauses I'm sure.....let me know :) ...........always wanted to post some code

Code: Select all

//Make Potion Kegs Woot
//By Pie :)
//Ver 2
//Items needed::
//spell keys: with bottles
//wood keys: with plain wood
//metal keys: with iron
//tool house: with saw and tinker tools
//Skill needed: prob want 100 chance to make all parts or it will mess up
//might be slow but it works......each spot is labeled for if you want to switch it up
//
//
//pull tools tinker and saw
//
usetype '0x22c4' '69'     'backpack'
pause 1000
replygump 0x5a356683 60004
pause 1000
replygump 0x5a356683 60006
pause 1000
replygump 0x5a356683 0
canceltarget
pause 1000
//
//pull bottles 100
//
usetype '0x176b' '33' 'backpack'
pause 1000
replygump 0xebcd833 60020
pause 1000
replygump 0xebcd833 0
canceltarget
pause 1000
//
//pull metal iron 100
//
usetype '0x176b' '20' 'backpack'
pause 1000
replygump 0xfb1e68cb 60000
pause 1000
replygump 0xfb1e68cb 0
canceltarget
pause 1000
//
//pull boards 100
//
usetype '0x176b' '88' 'backpack'
pause 1000
replygump 0xa57934d 60000
pause 1000
replygump 0xa57934d 0
canceltarget
pause 1000
//
//
//make first tink stuffs
//
usetype '0x1eb8' '0' 'backpack'
pause 1000
replygump 0x38920abd 7
pause 1000
replygump 0x38920abd 6
pause 1000
replygump 0x38920abd 15
pause 1000
replygump 0x38920abd 16
pause 3000
replygump 0x38920abd 37
pause 3000
replygump 0x38920abd 0
pause 1000
//
//the keg
//
usetype '0x1034' '0' 'backpack'
pause 1000
replygump 0x38920abd 7
pause 1000
replygump 0x38920abd 6
pause 1000
replygump 0x38920abd 1
pause 1000
replygump 0x38920abd 23
pause 3000
replygump 0x38920abd 23
pause 3000
replygump 0x38920abd 16
pause 3000
replygump 0x38920abd 16
pause 3000
replygump 0x38920abd 16
pause 3000
replygump 0x38920abd 15
pause 1000
replygump 0x38920abd 135
pause 3000
replygump 0x38920abd 0
pause 1000
//
//the pot keg
//
usetype '0x1eb8' '0' 'backpack'
pause 1000
replygump 0x38920abd 43
pause 1000
replygump 0x38920abd 58
pause 3000
replygump 0x38920abd 0
pause 1000
//
//
//put keg in spell and bottles
//
usetype '0x176b' '33' 'backpack'
pause 1000
replygump 0xebcd833 60030
pause 1000
targettype! '0x1940' '0' 'backpack'
pause 1000
targettype! '0xf0e' '0' 'backpack'
pause 1000
replygump 0xebcd833 0
canceltarget
pause 1000
//
//put away tools
//
usetype '0x22c4' '69'     'backpack'
pause 1000
replygump 0x5a356683 60030
pause 1000
targettype! '0x1034' '0' 'backpack'
pause 1000
targettype '0x1eb8' '0' 'backpack'
pause 1000
replygump 0x5a356683 0
canceltarget
pause 1000
//
//metal back in key
//
usetype '0x176b' '20' 'backpack
pause 1000
replygump 0xfb1e68cb 60015
pause 1000
targettype '0x1bf2' '0' 'backpack'
pause 1000
replygump 0xfb1e68cb 0
canceltarget
pause 1000
//
//wood back in keys
//
usetype '0x176b' '88' 'backpack'
pause 1000
replygump 0xa57934d 60023
pause 1000
targettype '0x1bd7' '0' 'backpack'
pause 1000
replygump 0xa57934d 0
canceltarget
pause 1000
Last edited by Pie on Thu Dec 10, 2020 11:43 am, edited 3 times in total.
Banethorn
Apprentice Scribe
Posts: 12
Joined: Mon Dec 07, 2020 7:01 pm

Re: [UOSteam] Make a Pot Keg

Post by Banethorn »

Love this macro, I can just hit it and make some kegs while I am working.

I really love the way it cleans up all the tools etc afterwards.

Any way to put the bottles back into the keys? I suck at coding.

Thanks for sharing this!
User avatar
Pie
Expert Scribe
Posts: 31
Joined: Mon Oct 03, 2011 7:53 pm

Re: [UOSteam] Make a Potion Keg

Post by Pie »

I just updated for the bottle part....should have done it before lol
Banethorn
Apprentice Scribe
Posts: 12
Joined: Mon Dec 07, 2020 7:01 pm

Re: [UOSteam] Make a Pot Keg

Post by Banethorn »

Woo thanks!!
Post Reply