Page 1 of 1

pet macros(UOSteam)

Posted: Thu Apr 06, 2023 9:04 pm
by nocturne7saint
So I was wondering if there was a way to make a macro to unshrink all my pets one after another.
also one to use my shrinking leash on them one after another.

and are there any macros i could use to bring up their health bars without having to drag them manualy?

also looking for any usefull pet macros with uosteam, I don't know where to look.

Re: pet macros(UOSteam)

Posted: Fri Apr 07, 2023 11:37 am
by Durocius
I use the auto healer in UOSteam for mine. It does a decent job. If using that script, you probably need the pets’ ID numbers.

Re: pet macros(UOSteam)

Posted: Fri Apr 07, 2023 11:39 am
by Durocius
Durocius wrote: Fri Apr 07, 2023 11:37 am I use the auto healer in UOSteam for mine. It does a decent job. If using that script, you probably need the pets’ ID numbers.
Get an enhanced leash and it shrinks them all at once.

Re: pet macros(UOSteam)

Posted: Fri Apr 07, 2023 12:33 pm
by nocturne7saint
Durocius wrote: Fri Apr 07, 2023 11:39 am
Durocius wrote: Fri Apr 07, 2023 11:37 am I use the auto healer in UOSteam for mine. It does a decent job. If using that script, you probably need the pets’ ID numbers.
Get an enhanced leash and it shrinks them all at once.
so how do i use auto healer in uosteam?

Re: pet macros(UOSteam)

Posted: Fri Apr 07, 2023 2:12 pm
by Durocius
Under Options/Friends Choose healing/others only I think. Not at computer, so it’s from memory.
You click Insert and target each pet to add to list. Also be sure to click prevent attacking friends in Warmode.
You may need to adjust the healing delay. If you notice that you start a new bandage before one finishes, increase the delay. It will attempt to rez them if one dies also.

Re: pet macros(UOSteam)

Posted: Fri Apr 07, 2023 2:41 pm
by sarmatian
about UOSteam and pet healing.
I noticed that it is working exclusively either for Friends or for Myself.
I set to "Friends" and I use 'bandageself' in fighting script.

Minimizing, maximizing pets
I have 5 imprisoned dogs. Jake is a mule which I do not deploy due to 5 pet limit.

The problem is , that full size pet serial is changing from time to time.
You have to add new serial to Friends list and modify the script.

It might be replace by finding by type and some unique color ...

Question: is it possible to getPetByName() in uosteam ?

Script is a bit ugly, if pets[0] is not 'found' the I assume I need deploy shrunken pets .. it might just wander away.
It might happen that some pets but not first will be shrunken (because I died) and then I shrink remaining "manually"

Code: Select all

@removelist 'pets'
@removelist 'shrunkenPets'
@setalias petBag 0x41ecfd31
createlist 'shrunkenPets'
//pushlist 'shrunkenPets' 0x2d97  //ferrets type
pushlist 'shrunkenPets' 0x2588  // Imp dogs type
createlist 'pets'
pushlist 'pets' 0x4c9ad1 // Air
pushlist 'pets' 0x4c9ad2 // Earth
pushlist 'pets' 0x4c9acd // Fire
pushlist 'pets' 0x4c9acc // Water
pushlist 'pets' 0x4c9ab4 // Woody
//pushlist 'pets' 0x1241b01 //Jake
//
if not findobject pets[0]
  for 0 to 'shrunkenPets'
    while findtype shrunkenPets[]
      useobject 'found'
      pause 1000
    endwhile
  endfor
else
  for 0 to 'pets'
    usetype 0x1374
    waitfortarget 1000
    target! pets[]
    pause 500
  endfor
  for 0 to 'shrunkenPets'
    while findtype shrunkenPets[] 'any' 'backpack' 1 0
      moveitem 'found' petBag
      pause 1000
    endwhile
  endfor
endif
@removelist 'pets'
@removelist 'shrunkenPets'
@unsetalias petBag


Re: pet macros(UOSteam)

Posted: Fri Apr 07, 2023 4:46 pm
by nocturne7saint
Durocius wrote: Fri Apr 07, 2023 2:12 pm Under Options/Friends Choose healing/others only I think. Not at computer, so it’s from memory.
You click Insert and target each pet to add to list. Also be sure to click prevent attacking friends in Warmode.
You may need to adjust the healing delay. If you notice that you start a new bandage before one finishes, increase the delay. It will attempt to rez them if one dies also.
i have 173 dex, what should i set the delay to?

Re: pet macros(UOSteam)

Posted: Fri Apr 07, 2023 6:43 pm
by Durocius
You will need to play with it and see. The default setting is probably close. Think it’s 2500(not sure).