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

Monday, June 13th 2016, 1:30am

amulet frame?

Maybe a silly question: is there a way to turn amulet frame in ui on and off?

I used to have the amulets visible simply in ui, but since recently not anymore. I haven't noticed when it has changed, so I cannot say what triggered it (addon update? or something else?). I can't find any settings to turn this frame on or off.

If there is no option to turn this frame on and off, is it possible that the position of this frame was updated in such a way that the frame is not visible (covered by something else or off-screen)? Is it possible to update this frame's position from a macro?

PS: I use qUnitFrames but it's settings don't mention this frame so probably that is not it.
>>>> >>>> >>>>
>>>>
>>>> Please, bring back (bound if there is no other option) dias to AH! :thumbsup:
>>>> If you do this we will all love you forever. ;)
>>>>
>>>> >>>> >>>>

2

Monday, June 13th 2016, 6:34pm

To move frame:

Source code

1
/run local name = g_UIPanelAnchorFrameOptions["IMBF_Talisman0Slot"] name["x"] = 400 name["y"] = 400 name["relativePoint"] = "TOPLEFT"


press macro, wait up to 20s for interface to refresh (doesn't move instantly). Talisman0slot = top amulet, 1Slot = middle amulet, 2Slot bottom amulet

To show frame:

Source code

1
/run IMBF_Talisman0Slot:Show()

This post has been edited 1 times, last edit by "BlankMinded" (Jun 13th 2016, 6:43pm)


3

Wednesday, June 15th 2016, 1:53am

Thanks!

But unfortunately - it did not help. I can check values of ["x"] and ["y"] of name, and I can see that it is updated, but nothing changes in ui... I have tried several values of x and y, from 100 to 1400 - no effect.

I also grepped the addons folder and the only addon that uses "Talisman0Slot" is ExtendedActionBar but it uses it only to store the using the amulet as one of possibilities, it does not hide or show the frame...

Oh, well, I can live without it. But it is intriguing - any more hints about how to investigate it further would be very much welcome! :)

PS: Just to make sure we are talking about the same: I meant a frame like the one visible in the attachment (old screenshot when the frame was visible).
Uure has attached the following image:
  • amulet_frame.jpg
>>>> >>>> >>>>
>>>>
>>>> Please, bring back (bound if there is no other option) dias to AH! :thumbsup:
>>>> If you do this we will all love you forever. ;)
>>>>
>>>> >>>> >>>>

This post has been edited 1 times, last edit by "Uure" (Jun 15th 2016, 2:04am)


4

Wednesday, June 15th 2016, 9:50am

As mentioned, it takes some time before the UI updates with the new frame position when using the macro (10-20s, idk why). For reference, i press the macro a few times then move an action bar around a little and wait. Eventually it appears in new location.

You can try different x and y values, and make sure to use the show macro in case it is somehow hidden.

Also as mentioned, make sure to adjust the number (0Slot, 1Slot etc.) according to the slot the amulet is equipped in.