Page 1 of 1

UOSTEAM - I need help

Posted: Sun Oct 05, 2014 10:49 pm
by MrJones
Hey!
If anyone uses UOsteam and has a Auto attack with healing and also maybe using primary/secondary abilities, Please post them and reply to this, or just PM Mr.Jones. I'm not looking for something for Afk, just a script that will make my hunting easier and more productive!! I would greatly appreciate any help, and Yes I've searched far and near and I have only found one online, and it doesn't even heal me.. just auto attacks. plz and thank you!!!

Yours Truly,
Mr.Jones

Re: UOSTEAM - I need help

Posted: Sun Oct 05, 2014 11:21 pm
by Alex
Check "Devlin's Rearmer". It can be found here on the forums. That's a good one for primary and secondary ability.

There are several healers, Blazin' Auto Healer is probably the most common one. It can be found either here on the forums or on the easyuo.com webpage.

Re: UOSTEAM - I need help

Posted: Mon Oct 06, 2014 12:11 am
by Whiplash
I only tested this for a bit since I don't use UOS to heal myself as I prefer using Blaze's EUO script for that one. But this should work, though it does spam you a fair bit since that's the problem with having both attack and heal routines in one macro. Just change the part where it decides when to heal you and the setability can be changed to 'secondary' if you want. Also may have to play around with the pause timers.

Code: Select all

if hits < 400
  msg [bandself
  pause 500
else
  @getenemy 'murderer' 'enemy' 'criminal' 'gray'  'closest'
  @setability 'primary' 'on'
  @attack 'enemy'
  pause 500
endif

Re: UOSTEAM - I need help

Posted: Mon Oct 06, 2014 1:07 pm
by MrJones
Thank you both!! When I get time Later I will try them both! thanks bunches!

Re: UOSTEAM - I need help

Posted: Mon Oct 06, 2014 5:52 pm
by MrJones
Okay, thanks Whiplash!!!
It does work, it auto attacks and then heals..
I had to bring the 400 health mark to under 160 to heal, cause I have way less health.
then it bandies, but it USES bandies like crazy, can you re write the script to use a bandie or two, then pause and wait 2 seconds for it to heal??? I used 45 bandies in a 45 seconds lol If you know what or how to fix this script not to do that, I would appreciate it, either way THANKS alot bro.

-Mrjones

Re: UOSTEAM - I need help

Posted: Mon Oct 06, 2014 6:06 pm
by +Nyx
Set the hits number to the level you want it to start healing at. If you have 220+ dex, you can easily heal back up from 60-70% of your max hits in 1-2 seconds. So, you could set the hits (400 in the original script) to whatever number equates to 60-70% of your hits, and it won't bother to heal you until you get that low. If you're still really squishy, you'll wanna set it higher, but it'll still cut down on excessive bandage use.

Re: UOSTEAM - I need help

Posted: Mon Oct 06, 2014 6:08 pm
by MrJones
Okay, well..
Since my HP is only 205 right now, and it was burning through bandies..
I changed a pause time, and Bandie if under HP part...
So here is the revised one im using Whiplash,


if hits < 175
msg [bandself
pause 3000
else
@getenemy 'murderer' 'enemy' 'criminal' 'gray' 'closest'
@setability 'primary' 'on'
@attack 'enemy'
pause 500
endif


Now, can you help me add it to where I walk east, west, north and south a few steps? like so when i get to a heavy area, and some spawn run off on me, I can walk a few feet in one direction to pick them off with the bow?
And how could I add Divine fury in there? just wondering, but none the less!! im super stoked bro! thanks :)

Re: UOSTEAM - I need help

Posted: Mon Oct 06, 2014 6:09 pm
by MrJones
Thanks +Nyx,
do you know how i could add in the script to cast Divine fury? :) like every 3 min or so.

Re: UOSTEAM - I need help

Posted: Mon Oct 06, 2014 6:11 pm
by MrJones
LMAO IM IN LOVE!!!!!! Ba hahahhahaha!!!!! sooo happy!! :dance

Re: UOSTEAM - I need help

Posted: Mon Oct 06, 2014 6:13 pm
by MrJones
+Nyx and one other thing,
I know AFK macroing is illegal, but lets just say...
Could I walk to get a drink or use the bathroom as long as its not longer than 3 min? just wondering. Is there a small window as far as when it becomes illegal... per say?

Re: UOSTEAM - I need help

Posted: Mon Oct 06, 2014 6:15 pm
by +Nyx
Well, first, please don't spam the forums. Compose your thoughts into one cohesive reply rather than 5 rambling ones.

If you fail an afk check, you're considered AFK regardless of whether you were tabbed out browsing the web, in the john, grabbing a snack, or your house was on fire. If you're not going to be paying attention to the screen, stop what you're doing and hide or go to a safe location. Otherwise, the risk of failing an AFK check is on you.

Re: UOSTEAM - I need help

Posted: Mon Oct 06, 2014 6:36 pm
by heyyo
I just use razor's target nearest closest non friendly (hotkey it to ctrl-q for me) and attack last target (hotkey to ctrl-w) combined using blaze's healing script in easyuo works pretty good.

Re: UOSTEAM - I need help

Posted: Mon Oct 06, 2014 10:25 pm
by Whiplash
You can make the script cast divine fury every 3 minutes by using a timer.

Code: Select all

if not timerexists 'divinefury'
settimer 'divinefury' 0
endif
if timer 'divinefury' >= 180000
cast "Divine Fury"
settimer 'divinefury' 0
endif
Though maybe you would prefer to just cast it when your stam is at a certain value? So maybe something like this would work better.

Code: Select all

if stam < 140
cast 'divine fury'
endif
Though again I haven't tested this as I don't use UOSteam for this sort of stuff but should be enough for you to play around with it.