Recall multi-character/account escape macro

RAVE GL

Master
Code:
if not listexists 'home'
  createlist 'home'
  pushlist 'home' 0x401fb957 //serial for runebook for char 1
  pushlist 'home' 0x4048cd67 //serial for runebook for char 2
  pushlist 'home' 0x40725d1b //serial for runebook for char 3
  pushlist 'home' 0x41b25eac //serial for runebook for char 4
  pushlist 'home' 0x4048603a //serial for etc
endif
while @findtype 0x22c5 'any' 'backpack'
  ignoreobject 'found'
  for 0 to 'home'
    if @serial 'found' == serial 'home[]'
      if @serial 'found' == serial 0x41b25eac //for tamers, remove if statement if your not a tamer
        msg 'all come'
        msg 'all come'
      endif
      cast "Recall"
      waitfortarget 2000
      target! 'found'
      break
    endif
  endfor
endwhile
clearignorelist
 

Alucard

Grandmaster
also can paint in the special color - runebooks,
in script use only type and color, and don't create list with serials
 

Alucard

Grandmaster
Is there a way to have this use a runebook charge instead of regs?
Put recalls in the runebook )
go to UOSteam Macros tab, click on Object Inspector, target on your Runebook, to see the information
3UjlN4RoxlI.jpg


Example code for 1 rune in RuneBook

Code:
usetype 0x22c5 '2128' 'backpack'
waitforgump 0x554b87f3 15000
replygump 0x554b87f3 2

I painted Runebooks on all characters in green color ,1 Home Rune
you need only change 2128 color parameter
usetype 0x22c5 '2128' 'backpack'



replygump 0x554b87f3 2 - 1 Rune in RuneBook
replygump 0x554b87f3 8 - 2 Rune in RuneBook
replygump 0x554b87f3 14 - 3 Rune in RuneBook
replygump 0x554b87f3 20 - 4 Rune in RuneBook
replygump 0x554b87f3 26 - 5 Rune in RuneBook
etc ....increases by + 6


push 1 hotkey for recall and spam 2 hotkey for all come :D
Code:
msg 'all come'
 
Last edited by a moderator:

Trojandrew

Grandmaster
sry to necro this thread. but after doing this i cant get it to work.
i've changed all 'home' to read 'My House' as its marked on my rune. would this make the macro fail? or should i remake my runes?
 

Lopsang

Master
sry to necro this thread. but after doing this i cant get it to work.
i've changed all 'home' to read 'My House' as its marked on my rune. would this make the macro fail? or should i remake my runes?
You need to set the default of the runebook to be your home in the runebook. Then you need to use the object inspector in steam on the runebook. A new window will pop up and you need to copy and paste the serial ID into one of the slots in the list. Each slot is for a different character. You may need to clear out your list too if you tried to use the macro already.
 

Trojandrew

Grandmaster
im guessing that means the first rune as default. thats the only thing i didnt try so i'll have to do that. and redo the macro. (didnt know running it unaltered could mess it up)
until then i just recorded a recall so i could still be safe until i got the other one working
 

God.RG

Grandmaster
im guessing that means the first rune as default. thats the only thing i didnt try so i'll have to do that. and redo the macro. (didnt know running it unaltered could mess it up)
until then i just recorded a recall so i could still be safe until i got the other one working
No, there's a button on each rune page that says "default" or something that you click to make it the default rune I'm pretty sure.
 

Grizard

Adept
I Like to put in these type scripts a check to where if magery > say 70 then use magic spell else use runebook gumps for dexers.
 

Trojandrew

Grandmaster
I Like to put in these type scripts a check to where if magery > say 70 then use magic spell else use runebook gumps for dexers.
do you have the exact code for this? i can only use this on my mage toons b/c it does magery. kind of annoying atm
 
Top