Things have changes since this first released.. check out the newest one here: clearsysmsg if weight > 290 organizer 1 endif overhead 'Mining' 0 if rhandempty ?? 0 dclicktype 'pickaxe' backpack endif hotkey 'Use item in hand' wait 1100 if insysmsg 'do not see any' overhead 'Move to next spot' 37 endif loop
seems like that's only part of it, did you have a link. I was wondering about how to add movement and smelting and deposit ingots in the bank, as well.
Never played Outlands, and not playing any shard anymore but I love how you made this guide precise, simple and easy for anyone. You got my sub hoping to see more of this ! Who knows maybe I'll be back to UO somehow ;-)
Alright you got a sub! Really loved how you started it as a minimum script to full potential script. I started this past December, it’s been 20 years, so any helpful script is great... I think a lot of other players are probably spread across the board with characters like myself.. so all scripts are helpful if they’re well explained like this one!
Awesome, thank you so much! I have another video in the works now that piggy backs off this one and the recent mining change. I'll be going into more detail about Razor and Script options. Hoping to get it edited and posted up by Monday
When writing my scripts I was unable to find out how to end the dang loops. Finding it this simple is a funny thing. Overall though great quality video , hope you continue your success.
Thanks 🙏 I need to re visit some of these and do more regular videos but be sure to check out the live stream tab for wayyyy more videos. We are up to 256 streams
Love your channel. I'm a new player to UO and was almost put off from playing with the idea of scripts and macros. It felt like the game wasn't particularly user friendly with the lack of a decent UI/interface. With that being said, i am starting to grasp the idea of scripts in particular and your videos have been incredibly helpful. Not sure if you have a tamer script in works? That would be great to see. Thank you and subscribed!
Thanks for the comment! My goal with these videos is to help shed some light on scripts and not just copy and paste - glad they are helping people! I do want to go over taming but haven’t tackled that yet - Zell over at tameoutlands.com does have a script through if you didn’t want to wait haha
this is awesome man, thanks. Been playing about a month and am half decent with macros, but after seeing this I'm going all script. So many possibilities.
Thanks Jase, great tutorial, so I looked at the rest of the docs for Outlands Razor scripting, is it limited? We can't do anything beyond that right? unlike python in razor enhanced because Outlands won't allow it?
Thanks for watching! Loads have changed since this video and I’ve learned a lot. But you are right, Outlands runs a custom version of razor community edition. I have a website now with links to both wikis on the landing page: outlands.uorazorscripts.com You can find examples and updated scripts there
On IPY I use to do triangle mining set a script to move after the resources run out and move in a triangle or square motion by the time I got back to point A the ore would have respawned
@@Jaseowns I can send you some screenshots. Do you have Discord? Mabe it's because I have it connected to the Hybird shard? I know Hybird doesnt have most of the new content the official shard has.
The patch yesterday simplified mining... the double click of a pickaxe now automatically targets self. New video here (plus packhorse): th-cam.com/video/MNPzVw_QFsc/w-d-xo.html However: This video is still helpful explaining the concepts but you no longer need the target self portion.
Hmmm dunno I think it's better to record a macro for mining rather than scripts. The one I made pauses when the captcha pops up and doesn't start again till the captcha is finished
Thanks for checking out the video! Even though you already have a mining macro hopefully this helps explain a bit on how scripts work. Definitely more we can add to this mining script in the future
Can you share that one? I got locked out for 6 hours because I couldn't turn my macro off fast enough. It would be nice to have it pause when the Captcha comes up.
Yeah I've learned a lot since this one.. check out a newer version of the mining script at my repo: outlands.uorazorscripts.com/script/69b83c73-6b39-4afd-9be0-539b037967cb I'll make a new video on it soon-ish-maybe-ish-one-day :D
I'm a UO Outlands noob. Haven't played actual UO in 20 years. Tried to do the Hotkey thing on Razor (which I've never used before) but it doesn't work. Help please.
Mining changed since this video - you just double click the pickaxes and it will smart harvest around you. Check out outlands.uorazorscripts.com/skills/mining for scripts
Shamix on Discord mentioned the following: discord.com/channels/290936867199909888/439567628881887232/816399552328105995 Mining delay is only 1000 / need a clear sys message and clear journal on the escape to prevent the next ore spot from reading prior no ore found sys msg
1:44 straight off the bat is so wrong.. You should never forget that there are game saves up to 6 seconds.. Instead of wait 500 and hotkey you should use 'waitfortarget' (or wft) and 'target self' okay looked further.. like mate sorry but this is one of worst scripts ive encountered.. this is how it should look like (minus the overheads ofc): // loops until you die while not dead // clears system messages so we are sure nothing interferes with our script clearsysmsg // if right hand empty equips a pickaxe if rhandempty dclicktype 0x0E86 endif // uses pickaxe hotkey 'Use Item in Right Hand' wait 2000 // if mining is over script will break through while loop and stop. if insysmsg 'You do not see' break endif endwhile Now the next thing. EscapeScript.... There is a hotkey to stop current script already.. Just set it to button..
my hotkeys to stop a macro or script dont seem work when the captcha comes up :/ is this something they implemented recently to counter scripted gathering?
You gotta lose focus on the captcha window before hitting your hotkey - i have some captcha handling scripts on the website: uorazorscripts.com - will be posting a new mining video soon
Things have changes since this first released.. check out the newest one here:
clearsysmsg
if weight > 290
organizer 1
endif
overhead 'Mining' 0
if rhandempty ?? 0
dclicktype 'pickaxe' backpack
endif
hotkey 'Use item in hand'
wait 1100
if insysmsg 'do not see any'
overhead 'Move to next spot' 37
endif
loop
seems like that's only part of it, did you have a link. I was wondering about how to add movement and smelting and deposit ingots in the bank, as well.
Uorazorscripts.com is my new repo site - be sure to check that out
Never played Outlands, and not playing any shard anymore but I love how you made this guide precise, simple and easy for anyone.
You got my sub hoping to see more of this ! Who knows maybe I'll be back to UO somehow ;-)
Thanks for checking it out! Hope to see you in Outlands one day haha
Alright you got a sub! Really loved how you started it as a minimum script to full potential script. I started this past December, it’s been 20 years, so any helpful script is great... I think a lot of other players are probably spread across the board with characters like myself.. so all scripts are helpful if they’re well explained like this one!
Awesome, thank you so much! I have another video in the works now that piggy backs off this one and the recent mining change. I'll be going into more detail about Razor and Script options. Hoping to get it edited and posted up by Monday
When writing my scripts I was unable to find out how to end the dang loops. Finding it this simple is a funny thing. Overall though great quality video , hope you continue your success.
Nice :) The loop won’t end until you add a break statement or exit by calling another script. Thanks for watching!
nice to see someone teaching others this complex game
Thanks for the comment!
Thank you for this. New to outlands, UO vet. Loving outlands, but razor gives me headaches to learn! This worked brilliantly!
Great to hear - welcome to outlands!
Super straight to the point with enough explanation on how to do it. Amazing content and dedication! Keep going man!
Thanks!
You are like the Bob Ross of UO mining with Razor
“There are no mistakes, just happy accidents.” haha
Nice man keep up the vids :)
Thanks PWNSTARR GAMING! Love your videos!
Nice. Kinda fun to get a taste of the scripts and learn how to type it all in instead of copying.
Thanks 🙏 I need to re visit some of these and do more regular videos but be sure to check out the live stream tab for wayyyy more videos. We are up to 256 streams
Love your channel. I'm a new player to UO and was almost put off from playing with the idea of scripts and macros. It felt like the game wasn't particularly user friendly with the lack of a decent UI/interface. With that being said, i am starting to grasp the idea of scripts in particular and your videos have been incredibly helpful. Not sure if you have a tamer script in works? That would be great to see. Thank you and subscribed!
Thanks for the comment! My goal with these videos is to help shed some light on scripts and not just copy and paste - glad they are helping people! I do want to go over taming but haven’t tackled that yet - Zell over at tameoutlands.com does have a script through if you didn’t want to wait haha
this is awesome man, thanks. Been playing about a month and am half decent with macros, but after seeing this I'm going all script. So many possibilities.
Thanks! I’ll be posting more examples - but you can find the docs here: www.razorce.com
@@Jaseowns first painful lesson...save before changing tabs ha! woops
Ouch. Yeah I try to save all the time haha
Thanks Jase, great tutorial, so I looked at the rest of the docs for Outlands Razor scripting, is it limited? We can't do anything beyond that right? unlike python in razor enhanced because Outlands won't allow it?
Thanks for watching! Loads have changed since this video and I’ve learned a lot. But you are right, Outlands runs a custom version of razor community edition. I have a website now with links to both wikis on the landing page: outlands.uorazorscripts.com
You can find examples and updated scripts there
@@Jaseowns Awesome! Thank you, I bookmarked it, that's what I need.
On IPY I use to do triangle mining set a script to move after the resources run out and move in a triangle or square motion by the time I got back to point A the ore would have respawned
oh man, In Por Ylem!
@@Jaseowns yes the good old days IPY 1
I'd love to see a tutorial on creating a script for veterinary supplies to show an overhead timer. Is that possible?
Yes definitely possible, will put something together for this!
New video about Veterinary Supplies timer via script th-cam.com/video/idfCkK1SZcY/w-d-xo.html
You have one to recall home, put it in a commodity deed box, come back and do it all over again?
Not on hand, but doable
Mabe I have an Outdated Razor? I dont see the tab that says scripts?
I’m using the UO Classic client that loads Razor - which is all from UO Outlands. What options or tabs do you see?
@@Jaseowns I can send you some screenshots. Do you have Discord? Mabe it's because I have it connected to the Hybird shard? I know Hybird doesnt have most of the new content the official shard has.
Yeah this is for UO Outlands specifically - if you’re playing a different shard this might not apply. Sorry!
Check out:
UoOutlands.com
@@Jaseowns No problem. I would like to check out other shards but now I feel like I invested to much time into this shard lol
The patch yesterday simplified mining... the double click of a pickaxe now automatically targets self. New video here (plus packhorse): th-cam.com/video/MNPzVw_QFsc/w-d-xo.html However: This video is still helpful explaining the concepts but you no longer need the target self portion.
Hmmm dunno I think it's better to record a macro for mining rather than scripts. The one I made pauses when the captcha pops up and doesn't start again till the captcha is finished
Thanks for checking out the video! Even though you already have a mining macro hopefully this helps explain a bit on how scripts work. Definitely more we can add to this mining script in the future
@@Jaseowns you could probably add the same ability to the script, but I dunno how you'd do it 👌 if your in discord I can send you a picture of it
Can you share that one? I got locked out for 6 hours because I couldn't turn my macro off fast enough. It would be nice to have it pause when the Captcha comes up.
Is there any way to make it so it fills up multiple pack horses?
yeah, need to loop organizer agents.. will add this to my video list once i get some more of these new player guides published! thx
Escape script doesn't work when the captcha comes up
Yeah I've learned a lot since this one.. check out a newer version of the mining script at my repo:
outlands.uorazorscripts.com/script/69b83c73-6b39-4afd-9be0-539b037967cb
I'll make a new video on it soon-ish-maybe-ish-one-day :D
I'm a UO Outlands noob. Haven't played actual UO in 20 years. Tried to do the Hotkey thing on Razor (which I've never used before) but it doesn't work. Help please.
Mining changed since this video - you just double click the pickaxes and it will smart harvest around you. Check out outlands.uorazorscripts.com/skills/mining for scripts
Nevermind. I got it to work. I neglected to save the script "MiningTest" before proceeding. Ergo, the Hotkey had to entity to apply the command to.
Super Nice vid tnx
Thanks for watching!
great video thanks!
Glad you liked it! thanks!
sick man thanks
You bet! Be sure to check out the other videos too - dclick of a pickaxe no longer needs to target self.
th-cam.com/video/w0HA5ez3wqs/w-d-xo.html
@@Jaseowns I'm having issues with the dclick script, it seems to be picking up my pickaxes and equipping them. I copied it word for word.
Great stuff
Thanks!
very nice!
Thanks! Any requests? Haha
Awesome
Thanks!
Shamix on Discord mentioned the following:
discord.com/channels/290936867199909888/439567628881887232/816399552328105995
Mining delay is only 1000 / need a clear sys message and clear journal on the escape to prevent the next ore spot from reading prior no ore found sys msg
Thanks
Thanks for watching!
1:44 straight off the bat is so wrong.. You should never forget that there are game saves up to 6 seconds.. Instead of wait 500 and hotkey you should use 'waitfortarget' (or wft) and 'target self'
okay looked further.. like mate sorry but this is one of worst scripts ive encountered.. this is how it should look like (minus the overheads ofc):
// loops until you die
while not dead
// clears system messages so we are sure nothing interferes with our script
clearsysmsg
// if right hand empty equips a pickaxe
if rhandempty
dclicktype 0x0E86
endif
// uses pickaxe
hotkey 'Use Item in Right Hand'
wait 2000
// if mining is over script will break through while loop and stop.
if insysmsg 'You do not see'
break
endif
endwhile
Now the next thing. EscapeScript.... There is a hotkey to stop current script already.. Just set it to button..
Thanks for the suggestion - in other videos I always try and use waitfortarget :)
.... 2.5s for mining? Mine perfectly cycles at .95s >.>
Great video though
Thanks! Cleaned up the script in a couple more videos and reduced the time to 1 second. Thx for watching!
@@Jaseowns my bad brother, I'll have to keep watching then!
No worries - appreciate the tips! Helps make the next ones better ;)
More scripts please!!!!!!
Whatcha looking for?
Hey if you aren’t in a guild yet for uo outlands then hit me up and join BB
Thanks but I’m in Path right now
not even showing the autoheal loop pvp script. what a chump
Be sure to check out the website if you are looking for something specific ;) uorazorscripts.com
more like jasesux hahahaha
.com
my hotkeys to stop a macro or script dont seem work when the captcha comes up :/
is this something they implemented recently to counter scripted gathering?
You gotta lose focus on the captcha window before hitting your hotkey - i have some captcha handling scripts on the website: uorazorscripts.com - will be posting a new mining video soon