Use Any Mount Token by alistormccoy
1// Use Any Mount Token
2
3// Set to a hotkey and it will have you mount or dismount accordingly :)
4// The client will sometimes not remember what is inside your adventurers satchel
5// so this will attempt to open your satchel if the mount isnt immediately found
6// Thank you "Nevor" for the item id compendium!
7// https://outlands.uorazorscripts.com/script/9044c9a5-6e5e-4972-9c52-3bd16842f23c
8
9if findtype 8417|8438|8478|8479|8480|8481|8484|8488|8501|8502|8503|9052|43320 as "mount"
10 dclick "mount"
11elseif findtype 24246 as "satchel"
12 dclick "satchel"
13 wait 500
14 if findtype 8417|8438|8478|8479|8480|8481|8484|8488|8501|8502|8503|9052|43320 as "mount"
15 dclick "mount"
16 endif
17endif