Again...Taking requests/suggestions

I have another req. for u exp.

There is a vendor pricing script that is nice, but can you add the ability to take X from a stack to it?
So say i am stocking recall scrolls, can you make it so it takes 10, 20, whatever i edit the script for, and then prices them at what it set at?
 

Experience

Grandmaster
I have another req. for u exp.

There is a vendor pricing script that is nice, but can you add the ability to take X from a stack to it?
So say i am stocking recall scrolls, can you make it so it takes 10, 20, whatever i edit the script for, and then prices them at what it set at?
I have not had much luck with getting it to move the proper amount of some things without a organizer call but I'll see what i can do
 

Fuego

Grandmaster
Can you do a quick 1 pet vet macro? As i take meta out solo to level it, and steam has made me lazy.
 

Experience

Grandmaster
Can you do a quick 1 pet vet macro? As i take meta out solo to level it, and steam has made me lazy.
if not @findalias 'Pet1'
promptalias 'Pet1'
endif
if not timerexists 'Bandage'
createtimer 'Bandage'
settimer 'Bandage' 5000
endif
if @inrange 'Pet1' 1
if hits 'Pet1' < maxhits 'Pet1' and timer 'Bandage' > 6000
bandage 'Pet1'
settimer 'Bandage' 0
endif
endif
 

Fuego

Grandmaster
if not @findalias 'Pet1'
promptalias 'Pet1'
endif
if not timerexists 'Bandage'
createtimer 'Bandage'
settimer 'Bandage' 5000
endif
if @inrange 'Pet1' 1
if hits 'Pet1' < maxhits 'Pet1' and timer 'Bandage' > 6000
bandage 'Pet1'
settimer 'Bandage' 0
endif
endif
ty sir
 

Jager

Grandmaster
Good day sir, i hear your the man to make UOSteam macroes if someone cant find one. im trying to find a macro for fishing up MIB's, not really sure how these new boats and stuff work but if i were able to fish, pull up a MiB, put it in the hold (unless that can be looted) or maybe bank it and continue fishing, also with being able to turn around and get outa dodge if something surfaces, that would be amazing. now i apologize if you already have something like this, if you do just steer me in the right direction and id be just as happy, thanks.
 

Experience

Grandmaster
Good day sir, i hear your the man to make UOSteam macroes if someone cant find one. im trying to find a macro for fishing up MIB's, not really sure how these new boats and stuff work but if i were able to fish, pull up a MiB, put it in the hold (unless that can be looted) or maybe bank it and continue fishing, also with being able to turn around and get outa dodge if something surfaces, that would be amazing. now i apologize if you already have something like this, if you do just steer me in the right direction and id be just as happy, thanks.
When you pull up a MIB, mobs spawn regardless. The chest weights too much to fit into a boat hold I do beleive. IF you are wanting to have it auto navigate to MIB's that's def. not gonna happen. BUT what i can do is make a macro that will fish until the MIB is pulled up and move you away from spawn
 

ministerM

Novice
Hi sir! Is there a macro to automatically decode all the tmaps in a certain bag? It's quite tedious double clicking each one till I am succcesful especially for the level 5 and 6 maps can take like 50 double clicks .
 

Experience

Grandmaster
Hi sir! Is there a macro to automatically decode all the tmaps in a certain bag? It's quite tedious double clicking each one till I am succcesful especially for the level 5 and 6 maps can take like 50 double clicks .
I dont think there is, but there can be!!! I'll work on one tonight
 

Experience

Grandmaster
looking forward to tonight !
if not @findobject 'T-mapBook'

promptalias 'T-mapBook'

endif

if @findtype '0x14ec' '0' 'backpack' 'any' '3' and not @injournal 'The treasure is marked by the red pin.' 'system'

useobject 'found'

pause 1200

else

headmsg 'Decoded...'

moveitem 'found' 'T-mapBook'

pause 1200

@clearjournal

@unsetalias 'found'

endif

if not @findtype '0x14ec' '0' 'backpack' 'any' '3'

headmsg 'No more maps'

stop

endif
 
Top