Discussion in   Coding Corner   started     8 years ago   August 26, 2015, 01:23:28 PM   by   Riversilk

[UOSteam] Quick recall macro

Riversilk
Offline
31 Posts
Topic :   [UOSteam] Quick recall macro
8 years ago  August 26, 2015, 01:23:28 PM


Macro for quick recall/escape
Just set this to an easy to reach hotkey...

all info in script, please ask questions here


Code: [Select]
// Quick Recall
// Quickly recalls to a pre-set runebook
// *REMEMBER TO SET ONE RUNE AS DEFAULT IN RUNEBOOK*
// Author: Kyramir (UO Evolution)
//
// If runebook not found, ask for one
if not @findalias '_DefaultRunebook'
  promptalias '_DefaultRunebook'
endif
// If overweight cast Bless on self
if weight > maxweight and skill 'Magery' >= 50
  cancelautotarget
  autotargetself
  cast "bless"
  pause 2500
endif
// If at least one follower is present, say them to follow
if followers > 1
  msg 'all follow me'
endif
// Cast Sacred Journey (if enough Chivalry for 100%) or Recall
autotargetobject '_DefaultRunebook'
if skill 'Chivalry' >= 65
  cast "Sacred Journey"
else
  cast "Recall"
endif
pause 1000
if followers > 1
  msg 'all follow me'
endif
pause 1000
// Uncomment next line to Open Bank after recalling
msg 'bank'

WafflesNCyanide
Offline
116 Posts
#1 Re :   [UOSteam] Quick recall macro
8 years ago  August 26, 2015, 04:57:00 PM

Nicely done :)

Leighton
Offline
118 Posts
#2 Re :   [UOSteam] Quick recall macro
8 years ago  August 27, 2015, 05:16:40 PM

very usefull