You are not logged in.

Applications: [GameMaster: OPEN] | [Volunteer Testers: OPEN]


This forum will be permanently shut down on Friday 13.07.2018
Please copy or save all important information from old forum before they will be deactivated
We have moved to new board. https://forum.runesofmagic.gameforge.com/Come join us.

1

Tuesday, April 10th 2012, 4:40pm

Can we see an addon to do this...

Remove the damn space between skill icons or disable the space all together? I like to use click to move but I sometimes miss the skill and my character moves while attacking. Move the skills closer please or create an addon that puts the skills on an unclickable skill bar

Peryl

Intermediate

Posts: 313

Location: Elsewhere

  • Send private message

2

Tuesday, April 10th 2012, 11:06pm

Try this. You will need to put this in a custom Lua file to run automatically at startup (see my Creating Custom Functions guide for details on doing this).

I don't guarantee that this will work though.

Source code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
-- Re-anchor the action bar buttons (assumes the left and right 
-- action bars are vertical while the main and upper bar are 
-- horizontal)
for i = 2, ACTIONBAR_NUM_BUTTONS do
    local but = _G['MainActionBarFrameButton'..i]
    local prevbut = _G['MainActionBarFrameButton'..(i-1)]
    but:ClearAllAnchors()
    but:SetAnchor("TOPLEFT", "TOPRIGHT", prevbut, 0, 0)

    but = _G['BottomActionBarFrameButton'..i]
    prevbut = _G['BottomActionBarFrameButton'..(i-1)]
    but:ClearAllAnchors()
    but:SetAnchor("TOPLEFT", "TOPRIGHT", prevbut, 0, 0)

    but = _G['LeftActionBarFrameButton'..i]
    prevbut = _G['LeftActionBarFrameButton'..(i-1)]
    but:ClearAllAnchors()
    but:SetAnchor("TOPLEFT", "BOTTOMLEFT", prevbut, 0, 0)

    but = _G['RightActionBarFrameButton'..i]
    prevbut = _G['RightActionBarFrameButton'..(i-1)]
    but:ClearAllAnchors()
    but:SetAnchor("TOPLEFT", "BOTTOMLEFT", prevbut, 0, 0)
end

-- Re-anchor the pet action bar buttons
for i = 2, PETACTIONBAR_NUM_BUTTONS do
    local but = _G['PetActionBarButton'..i]
    local prevbut = _G['PetActionBarButton'..(i-1)]
    but:ClearAllAnchors()
    but:SetAnchor("TOPLEFT", "TOPRIGHT", prevbut, 0, 0)
end
2013... The year from hell....

3

Friday, May 4th 2012, 2:18pm

Thank you for all the time spent developing this but it does not work. I still have the same problem with constantly clicking between skill icons. Am I the only one having this problem? The space between these skills is far too large why wouldn't they be moved closer together? i don't see the points of such a huge gap.
Someone told me that older versions of Xbar could move individual icons, is this true? If so which version should I download.
Also Ive heard that BarF can move icons but I cannot find a download lik to it, any help would be immensely appreciated.
Thanks

4

Monday, May 7th 2012, 2:16pm

I uploaded BarF2 for guildmates a long time ago back when I played, due to the fact that it was no longer on Curse or CurseForge. It really works wonders for re-arranging action bars. I hated the spaces too, and it lets you compact them together as much as you want, change their shape, move them around individually, shrink them, etc.

Though, I haven't logged in for about a year. Here's hoping it still works; BarF2

Formerly Catorii, D/S/M of Faction.


5

Wednesday, May 9th 2012, 12:54am

I appreciate you posting this link but its very difficult to trust people nowadays. Does anyone have an official like to this addon? Or an addon that can do what it does in regards to the spacing.