View Single Post
09-28-18, 07:53 PM   #3
joeyo
An Aku'mai Servant
Join Date: Jan 2012
Posts: 31
Originally Posted by Kanegasi View Post
Go to https://addon.bool.no and create an addon with this code:

Lua Code:
  1. local f = CreateFrame("frame")
  2. f:SetScript("OnEvent", function()
  3.     local shift = IsShiftKeyDown()
  4.     PlayerFrame:EnableMouse(shift)
  5.     TargetFrame:EnableMouse(shift)
  6.     MinimapCluster:EnableMouse(shift)
  7.     Minimap:EnableMouse(shift)
  8. end)
  9. f:RegisterEvent("MODIFIER_STATE_CHANGED")
works perfect thankyou so much for the quick response

Last edited by joeyo : 09-28-18 at 08:08 PM.
  Reply With Quote