Again...Taking requests/suggestions

Young Star

Grandmaster
You could do something like:
Promptalias "corpse"
Useobject "newbiedagger ID"
Target "corpse"

You will likely have to mess around with it to get the exact syntax but those three lines are the general idea.
 
I have two requests/suggestions

The first is a gold/ss loot drop script. Asks you to target runebook and container on first run and when you run it with container set it will cast recall move gold and skillscrolls to set container

The second script Id like to see is like the heal lowest pet to full but slightly different. Id like it to use bandies on the pet with highest max hp and cast greater heal on the other pet til theyre both full
 

Experience

Grandmaster
I have two requests/suggestions

The first is a gold/ss loot drop script. Asks you to target runebook and container on first run and when you run it with container set it will cast recall move gold and skillscrolls to set container

The second script Id like to see is like the heal lowest pet to full but slightly different. Id like it to use bandies on the pet with highest max hp and cast greater heal on the other pet til theyre both full


//Author: Experience
if not @findobject 'Recall Book'

promptalias 'Recall Book'

endif

if not @findalias 'Loot Box'

promptalias 'Loot Box'

endif

cast 'recall'

autotargetobject 'Recall Book'

pause 4500

while findtype '0xeed' 'any' 'backpack' 'any' '3'

moveitem 'found' 'Loot Box' '0 0 0' 'all'

endwhile

while findtype '0x2260' 'any' 'backpack' 'any' '3'

moveitem 'found' 'Loot Box' '0 0 0' 'all'

endwhile
 

Experience

Grandmaster
I have two requests/suggestions

The first is a gold/ss loot drop script. Asks you to target runebook and container on first run and when you run it with container set it will cast recall move gold and skillscrolls to set container

The second script Id like to see is like the heal lowest pet to full but slightly different. Id like it to use bandies on the pet with highest max hp and cast greater heal on the other pet til theyre both full

the only detection for hp you can use on anyone but yourself is hits == maxhits or hits < maxhits. can't detect any certain amount of hp.
 

Fuego

Grandmaster
Trying to transition from Razor but can't figure this one thing out. I record 4 macros targeting each of my mains runebooks in razor(changing defaults as i want). Then I hotkey these macros to up, down, left, right for fast recalls to certain farm spots. How can i do this using steam?
 

Young Star

Grandmaster
Trying to transition from Razor but can't figure this one thing out. I record 4 macros targeting each of my mains runebooks in razor(changing defaults as i want). Then I hotkey these macros to up, down, left, right for fast recalls to certain farm spots. How can i do this using steam?
Record yourself opening the runebook, clicking to the correct page, and selecting recall. Do that for each spot. you want a hotkey for. If you have 4 seperate runebooks just set the default rune for each. Then just simply do
cast 'recall'
waitfortarget
useobject 'XYZ'

Fill in the object ID for each book. You will have to make 4 copies of that macro with each matching the ID of the runebook you want to use for each hotkey.
 

lummox

Master
If this is for treasure rune books I believe scripting it is illegal. Correct me if I'm wrong.


Sent from my iPhone using Tapatalk
 
//Author: Experience
if not @findobject 'Recall Book'

promptalias 'Recall Book'

endif

if not @findalias 'Loot Box'

promptalias 'Loot Box'

endif

cast 'recall'

autotargetobject 'Recall Book'

pause 4500

while findtype '0xeed' 'any' 'backpack' 'any' '3'

moveitem 'found' 'Loot Box' '0 0 0' 'all'

endwhile

while findtype '0x2260' 'any' 'backpack' 'any' '3'

moveitem 'found' 'Loot Box' '0 0 0' 'all'

endwhile

Guess I forgot to say TY but this thing is the shit. Thanks for taking a minute to throw it together
 

Fuego

Grandmaster
Can't get this steal good shit macro i found to work. Would also like to add rarer skill scrolls like taming/.prov/crafting, powerscrolls, statues, relics, motm cloth/items. Pretty much any lootable rare drop. As most invis or hide then recall after looting so not a lot of target/steal good stuff... Maybe snoop all non trapped bags.

// Author: Hawt

// Description: Snoop all pouches and bag types within the closest persons backpack automatically.

//====== Will not pop trapped pouches on Uoforever if Greed gave me the right hue.

//==========================================

// List of Bags/Pouches. No Chests or Crates.

if not listexists 'containers'

@createlist 'containers'

endif

if list 'containers' == 0

@pushlist 'containers' 0xe79

@pushlist 'containers' 0xe76

@pushlist 'containers' 0xe75

@pushlist 'containers' 0xe74

@pushlist 'containers' 0xe78

@pushlist 'containers' 0xe7d

@pushlist 'containers' 0xe77

endif

// Gets Closest Anything To SNoop.

getenemy 'friend' 'innocent' 'murderer' 'enemy' 'criminal' 'gray' 'closest' 'humanoid'

if @inrange 'enemy' 1 and @findlayer 'enemy' 21

@setalias 'bag' 'found'

useobject! 'bag'

pause 600

if @findtype 0x14f0 1153 'bag'

useskill 'Stealing'

waitfortarget 3000

target! 'found'

headmsg 'PS Acquired'

endif

if @findtype 0x2aa4 'any' 'bag'

useskill 'Stealing'

waitfortarget 3000

target! 'found'

headmsg 'RELIC Acquired'

endif

if @findtype 0x47e6 'any' 'bag'

useskill 'Stealing'

waitfortarget 3000

target! 'found'

headmsg 'DRAGON EGG Acquired'

endif

if @findtype 0x2260 'any' 'bag'

useskill 'Stealing'

waitfortarget 3000

target! 'found'

headmsg 'SS Acquired'

endif

ignoreobject 'found'

// Opens Person Main backpack and "pops" or opens all bags/POuches.

for 0 to 'containers'

while @findtype containers[] 'any' 'bag'

@setalias 'inside' 'found'

ignoreobject 'inside'

// This is going to skip any pouches that are the hue 38

if graphic 'found' == 0xe79 and color 'found' == 38

continue

endif

if graphic 'found' == 0xe79 and color 'found' == 1161

continue

endif

useobject! 'inside'

pause 600

if @findtype 0x14f0 1153 'inside'

useskill 'Stealing'

waitfortarget 3000

target! 'found'

headmsg 'PS Acquired'

endif

if @findtype 0x2260 'any' 'inside'

useskill 'Stealing'

waitfortarget 3000

target! 'found'

headmsg 'SS Acquired'

endif

if @findtype 0x2aa4 'any' 'bag'

useskill 'Stealing'

waitfortarget 3000

target! 'found'

headmsg 'RELIC Acquired'

endif

ignoreobject 'found'

while @findtype containers[] 'any' 'inside'

ignoreobject 'found'

// This is going to skip any pouches that are the hue 38

if graphic 'found' == 0xe79 and color 'found' == 38

continue

endif

useobject! 'found'

pause 600

endwhile

endwhile

endfor

// If any pouches were trapped run again and it will now open the trapped pouches to see what items were in them

endif

clearignorelist

 

lummox

Master
And also a beetle drop script. Where you unmount drop whatever you are holding and mount again.

Advanced: automatically drop gold, ss, relics, ps, dragon eggs


Sent from my iPhone using Tapatalk
 
Top