Sign in to follow this  
Followers 0
Gable

Placed spells on your action bar issue

1 post in this topic

Does your spell book shows that you have placed a spell but you have removed all your spells from all of your action bar?

spellbook-command.thumb.png.a665e77644e8717cad1ebe0affdebba5.png

In Dragon Flight you have 8+1 action bars. (The first action bar is (scrollable) has 2 pages.)

Slot orders

  • Action Bar 1 Page 1 1 - 12
  • Action Bar 1 Page 2 (or Bonus Action Bar) 13 - 24
  • Action Bar 2 61 - 72
  • Action Bar 3 49- 60
  • Action Bar 4 25 - 36
  • Action Bar 5 37 - 48
  • Action Bar 6 145 - 156
  • Action Bar 7 157 - 168
  • Action Bar 8 169 - 180

There are other bars: (You can not enable these in Edit mode)

  • Class Bar 1 73 - 84
  • Class Bar 2 85 - 96
  • Class Bar 3 97 - 108
  • Class Bar 4 109 - 120

Something happened when changing to DF so some of your abilities are on (probably Class Bar 1)

To check write this code to the chat

/run for i=1, 180 do local type, id = GetActionInfo(i) if type == "spell" then local name = GetSpellInfo(id) print("Slot " .. i .. ": " .. name) end end

This give you a similar output: (Slot number and Spell name)

Chat.png.9346c8f310566954ec1a149fac5934ee.png

To remove the spells you can install an AddOn called Bartender and enable the Class Bars

Bartender-ActionBars.png.2de840e27bb9b09ff4729a2eb14fbe5d.png

OR you can write the following command to remove an spell.
Remember to change the slot number to the previous output of the chat. (In my case this will remove Cold Snap from slot 73)

/run PickupAction(73) ClearCursor()

To remove all spells use this Macro (USE IT WITH CAUTION!)

/run for i = 1,180 do PickupAction(i) PutItemInBackpack() ClearCursor() end

Hope this helps! :)

 

Edited by Gable

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!


Register a new account

Sign in

Already have an account? Sign in here.


Sign In Now
Sign in to follow this  
Followers 0