1. #1

    Mount-macro-addon question

    /run if (not IsMounted()) then local t={2,4,8,9,12,20,21,22,23,25,27,34,39,40,41,46,49,50,52,65,67,69,71,72,75,77,79,82,83,86,8 8,90,92,93,96,97,140,144,145,147,155} CallCompanion("MOUNT", t[random(#t)]) else DismissCompanion("MOUNT") end


    In this macro, mounts are assigned a number. My question is... Is there any addon or way to see those numbers, instead of counting through your book manually for every mount? Or is this the only method?

  2. #2
    Deleted
    Blindly guessing here, but you could try:
    Code:
    /dump GetMouseFocus():GetID()
    while mousing over a mount's button in the mount list.

  3. #3
    That works great. thank you

    ---------- Post added 2012-03-18 at 09:22 PM ----------

    scratch that, seems to only do 1-12 on each page.

  4. #4
    Quote Originally Posted by PhantomAgony View Post
    That works great. thank you

    ---------- Post added 2012-03-18 at 09:22 PM ----------

    scratch that, seems to only do 1-12 on each page.
    You could do the math yourself and add 12*(pagenumber-1) to the number you got on that page.

    Example:
    3rd mount on page 4 is 3+12*3 = 39
    5th mount on page 2 is 5+12*1 = 17

Posting Permissions

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