Does anybody know how i can move the original party unit frames?
move anything addon is full of bugs so i have to remove it but the original blizzard ui had no unlock option for party frames unless i make them to look like raidframes.
i found a script like this but it bugs the party frames.
/run local f=GetMouseFocus() print(f:GetName() or “unnamed”) f:SetMovable(true) f:EnableMouse(true) f:SetUserPlaced(true) f:SetScript(‘OnMouseDown’,f.StartMoving) f:SetScript(‘OnMouseUp’,f.StopMovingOrSizing)
this one bugs the frame too
/run local p=PartyMemberFrame1; p:SetMovable(true) p:SetUserPlaced(true) p:HookScript(“OnMouseDown”,function() p:StartMoving()end) p:HookScript(“OnMouseUp”,function() p:StopMovingOrSizing ()end)