Original party frames

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)

You generally ClearAllPoints() before you SetPoint() a frame

PartyMemberFrame1:ClearAllPoints()
PartyMemberFrame1:SetPoint("CENTER")
1 Like

PartyMemberFrame1:SetPoint(“CENTER”) this one is a good start

is there a way to put x-y to position it where i want ?

edit:

/run PartyMemberFrame1:ClearAllPoints()
/run PartyMemberFrame1:SetPoint(“CENTER”,50,50)
/script PartyMemberFrame1:SetScale(1.6)

i made a start :stuck_out_tongue:

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.