1. #1

    Random Mount Macro

    Hey again,

    I remember once you could replace your mount names with numbers in macro's but it doesnt seem to be working anymore. Am I doing something wrong?

    Code:
    /castrandom [mod:shift, flyable] 4, 33; [mod:shift, noflyable] 5, 16, 19, 35
    Thanks in advance

  2. #2
    It's a little more complicated than that to have a working random mount macro. You can try something like this, you enter the ground mount numbers in as {G,G} numbers and the flying mount numbers as {F,F} numbers.

    Code:
    /run g,f,c,t={G,G},{F,F}; if IsMounted() and not IsFlying() then Dismount(); return end; c=GetCurrentMapContinent(); if (c==3) or (c==4) and IsFlyableArea() then t=f else t=g end; CallCompanion("MOUNT",t[random(#t)]);

    Gershuun @ Borean Tundra US - Interface & Macros Moderator

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •