pet macros(UOSteam)

Don't know how something works? Here you will find some useful links. And if you have a question, feel free to ask.
Post Reply
User avatar
nocturne7saint
Elder Scribe
Posts: 180
Joined: Thu May 30, 2019 9:32 pm

pet macros(UOSteam)

Post 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.
blackstone from the ILV guild
Durocius
Grandmaster Scribe
Posts: 81
Joined: Fri Sep 03, 2021 7:02 pm

Re: pet macros(UOSteam)

Post 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.
Durocius
Grandmaster Scribe
Posts: 81
Joined: Fri Sep 03, 2021 7:02 pm

Re: pet macros(UOSteam)

Post 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.
User avatar
nocturne7saint
Elder Scribe
Posts: 180
Joined: Thu May 30, 2019 9:32 pm

Re: pet macros(UOSteam)

Post 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?
blackstone from the ILV guild
Durocius
Grandmaster Scribe
Posts: 81
Joined: Fri Sep 03, 2021 7:02 pm

Re: pet macros(UOSteam)

Post 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.
sarmatian
Grandmaster Scribe
Posts: 88
Joined: Fri May 29, 2020 10:55 am

Re: pet macros(UOSteam)

Post 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

User avatar
nocturne7saint
Elder Scribe
Posts: 180
Joined: Thu May 30, 2019 9:32 pm

Re: pet macros(UOSteam)

Post 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?
blackstone from the ILV guild
Durocius
Grandmaster Scribe
Posts: 81
Joined: Fri Sep 03, 2021 7:02 pm

Re: pet macros(UOSteam)

Post by Durocius »

You will need to play with it and see. The default setting is probably close. Think it’s 2500(not sure).
Post Reply