Togle mount macros

^_^

Grandmaster
Help my ingame friend today, so no reason to not share with all community if somebody may also need it.

Code:
@setalias 'pet' 0xFFFF // Put your pet serial here
if @findobject 'pet'
  if @distance 'pet' <= 1
    useobject 'pet'
  endif
elseif  useobject 'self'
endif
 
Last edited by a moderator:

halygon

Grandmaster
I use something like this:

Code:
//Mount Toggle
if mounted
useobject 'self'
else
useobject 'mount'
endif

Then i just have a rarely used hotkey that does:
Code:
promptalias 'mount'
 

Hexoplex

Grandmaster
For mine, I have it check to see if the mount is there, if not, it uses me (dismount), if it is, then it uses the mount (mount).
This is my macro:

if not findobject 0x682ae
useobject 0xd825
pause 500
waitforcontext 0x682ae 10 600
else
useobject 0x682ae
endif



Does both the mounting and dismounting depending on whether or not you are mounted.
 
Last edited by a moderator:
Top