Mount or Dismount based on Hidden status by Jaseowns
# Mount or Dismount based on Hidden status by Jaseowns
# UO Outlands
# >info on your mount in your bag
@setvar! myMountToken 0x5D67443B
@setvar! jaseMountTimerCD 10000
if not timerexists jaseMountTimer
settimer jaseMountTimer jaseMountTimerCD
endif
if hidden
if mounted
hotkey "Dismount"
endif
else
if not mounted and find myMountToken self
if timer jaseMountTimer >= jaseMountTimerCD
while insysmsg "Your mount refuses to let you ride it while in this area."
endwhile
dclick myMountToken
getlabel backpack jaseowns_PingCheck
if insysmsg "Your mount refuses to let you ride it while in this area."
overhead "Dude cant ride here"
settimer jaseMountTimer 0
endif
endif
endif
endif