Advertisement
Clotic

Remove keybinding "wow"

Nov 18th, 2018
459
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.41 KB | None | 0 0
  1. Run this to unbind absolutely everything
  2.  
  3. /run local function u(c,...)for i=1,select("#",...)do SetBinding(select(i,...),nil)end end for i=1,GetNumBindings()do u(GetBinding(i))end
  4.  
  5. Then use this to save the changes
  6. /run SaveBindings(GetCurrentBindingSet())
  7.  
  8. Remove spells
  9. /run for i = 1,120 do PickupAction(i) ClearCursor() end
  10.  
  11. /run for i = 1,120 do PickupAction(i) PutItemInBackpack() ClearCursor() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement