Gable

Members
  • Content count

    4
  • Joined

  • Last visited

1 Follower

About Gable

Recent Profile Visitors

244 profile views
  1. Does your spell book shows that you have placed a spell but you have removed all your spells from all of your action bar? 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) To remove the spells you can install an AddOn called Bartender and enable the Class Bars 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!
  2. Press Escape -> Key Bindings -> Targeting -> Interact With Target key -> Bind to F6 Write in the chat or create a macro (You can change the name to any other NPC's just make sure its the same, and don't forget to include the spaces too!) /target Jeanne And Press F6