Noxm wrote:How to change the raidframe default position (x,y) ?
assuming the position of the raid frames in that screenshot is where you want them by default, you need to change line 15
here to something like:
- Code: Select all
f:SetPoint('TOPLEFT', 200, -UIParent:GetHeight()/3)
the raid frames are getting an overhaul with their spawning method soon that'l make it easier to position raid frames wherever you want, and in a way that allows you to set in which direction (left or right, up or down) they grow as your groups fill up — i'm aware that those who prefer their raid on the left hand side of the screen probably don't want their frames growing from right to left.
Noxm wrote:How to change the Arathi bg node pick position (x,y) ?
lines 19-23
here are what you need. not knowing exactly where you want to reposition it, it might be easiest just to change the number values:
- Code: Select all
node:SetPoint('TOPLEFT',
i == 1 and UIParent or _G['modnode'..(j - 1)],
i == 1 and 'TOP' or 'BOTTOMLEFT',
i == 1 and [CHANGE THIS TO A NUMBER #1] or 0,
i == 1 and [CHANGE THIS TO A NUMBER #2] or -5)
replacing [CHANGE THIS TO A NUMBER ##] with a numerical value, obviously.
#1 controls horizontal positioning, and a positive number will offset it to the right of the score frame, whilst a negative one will offset it to the left.
#2 controls vertical positioning, and a positive number will offset it upwards from the score frame, whilst a negative one will offset it downwards.
you can position it anywhere on the screen with these two offsets, though if you want it right down in the bottom right hand corner it might take quite a large value; 1000+
on my to-do list with this particular mod is AV timers & a way to announce times or flag carrier names via battleground chat.