Showing results 1 to 25 of 50
Search took 0.00 seconds.
Search: Posts Made By: Sylen
Forum: Lua/XML Help 02-01-21, 08:48 AM
Replies: 4
Views: 5,129
Posted By Sylen
I use this. It hides all debuffs and just shows...

I use this. It hides all debuffs and just shows the debuffs you add into the whitelist.

--Filter Buffs and Debuffs on Nameplates (including Personal Resource Display)

local whitelist = {
--Priest...
Forum: AddOn Search/Requests 10-16-20, 06:13 AM
Replies: 3
Views: 5,390
Posted By Sylen
I remember this beeing not possible as it is not...

I remember this beeing not possible as it is not supported by the Blizzard API since they switched from the Legion design to the BfA / SL design.
Forum: Lua/XML Help 05-26-20, 03:32 PM
Replies: 6
Views: 5,599
Posted By Sylen
This works fine for me. Looks like this:...

This works fine for me. Looks like this: https://imgur.com/a/BW0cTJu

-- Scale the bars
for i = 1, 12...
Forum: Class Discussions 03-28-20, 04:53 PM
Replies: 1
Views: 46,476
Posted By Sylen
If you turn down your graphics make sure you...

If you turn down your graphics make sure you still have "Projected Textures" set to "Enabled". This will make sure you can still see area of effect zones on the ground.
To reduce the visual spam all...
Forum: Macro Help 03-22-20, 03:27 PM
Replies: 5
Views: 7,806
Posted By Sylen
Those are the old scripts from arenajunkies...

Those are the old scripts from arenajunkies (Short version for macro usage)
Source 1 (https://www.twitch.tv/ratapai) Check stream description
Source 2 (https://www.twitch.tv/friedkitteh) Chat...
Forum: AddOn Search/Requests 11-28-19, 04:42 PM
Replies: 6
Views: 6,406
Posted By Sylen
for _, frame in pairs({PlayerFrame, TargetFrame,...

for _, frame in pairs({PlayerFrame, TargetFrame, FocusFrame}) do
frame.name:SetVertexColor(1,1,1) --Colours names white
end
Forum: Macro Help 11-25-19, 09:08 PM
Replies: 2
Views: 7,237
Posted By Sylen
ExtraActionButton1:ClearAllPoints() ExtraActionBut...

ExtraActionButton1:ClearAllPoints()
ExtraActionButton1:SetPoint("CENTER", UIParent, "CENTER", 0, -150) -- Set new position
ExtraActionButton1:SetScale(1) --Scale the...
Forum: General Authoring Discussion 05-22-19, 11:23 AM
Replies: 2
Views: 3,179
Posted By Sylen
Check if the box is ticked or not, then do what...

Check if the box is ticked or not, then do what you want to do in either case

if InterfaceOptionsNamesPanelUnitNameplatesMakeLarger:GetValue() == "1" then
--Do stuff here
elseif...
Forum: AddOn Search/Requests 01-12-19, 09:33 AM
Replies: 5
Views: 8,879
Posted By Sylen
idTip...

idTip (https://wowinterface.com/downloads/info17033-idTip.html) does this stuff.
Forum: Lua/XML Help 01-10-19, 06:58 PM
Replies: 12
Views: 10,020
Posted By Sylen
Ok I got a working version that uses spellIds...

Ok I got a working version that uses spellIds instead of spellNames. It works for debuffs and buffs BUT still shows both debuffs if they have an identical name (tested with druids Rake...
Forum: AddOn Help/Support 01-09-19, 02:50 PM
Replies: 4
Views: 1,659
Posted By Sylen
It's available now.

It's available now.
Forum: Lua/XML Help 01-08-19, 01:55 PM
Replies: 12
Views: 10,020
Posted By Sylen
I fiddled around with it but i can't get it to...

I fiddled around with it but i can't get it to work as my Lua knowledge isn't the best either.
Forum: AddOn Help/Support 01-07-19, 01:20 PM
Replies: 4
Views: 1,659
Posted By Sylen
If you are talking about BamModRevived...

If you are talking about BamModRevived (https://www.wowinterface.com/downloads/info23278-BamModRevived.html), this is currently not supported but I can add this as it might be a feature more people...
Forum: Lua/XML Help 01-07-19, 06:07 AM
Replies: 12
Views: 10,020
Posted By Sylen
I'm using his fix for a longer period of time now...

I'm using his fix for a longer period of time now and it works totally fine for me.

As for your problem with the "Disable"-spell, all i can think of right now is that you could try to change the...
Forum: AddOn Help/Support 08-11-18, 02:47 AM
Replies: 3
Views: 1,953
Posted By Sylen
Check wago.io (https://wago.io/weakauras) and...

Check wago.io (https://wago.io/weakauras) and search for "xp". There are a couple of bars and strings. It's not exactly what you are looking for as in you still have to ask but it's an easy glance...
Forum: Lua/XML Help 07-26-18, 09:14 AM
Replies: 12
Views: 10,020
Posted By Sylen
I had the same idea at some point in Legion and...

I had the same idea at some point in Legion and tried what you are trying to do aswell. Turns out there isn't really a clean and simple solution to it. If you want to read a bit more check this...
Forum: Lua/XML Help 07-25-18, 11:28 AM
Replies: 8
Views: 2,751
Posted By Sylen
Thanks for pointing this out. I must have missed...

Thanks for pointing this out. I must have missed this one when re-writing my UI for BFA.
Forum: Lua/XML Help 07-25-18, 04:09 AM
Replies: 8
Views: 2,751
Posted By Sylen
I use this for highlighting debuffs --Highlight...

I use this for highlighting debuffs

--Highlight Purgable Magic Buffs on Target and Focus
hooksecurefunc("TargetFrame_UpdateAuras", function(s)
for i = 1, MAX_TARGET_BUFFS do
_, ic, _, dT =...
Forum: Lua/XML Help 06-02-18, 07:49 AM
Replies: 14
Views: 5,944
Posted By Sylen
Did you make progress on this topic? For the glow...

Did you make progress on this topic? For the glow effect people usually use this code:

--Highlight Purgable Buffs on Target and Focus
hooksecurefunc("TargetFrame_UpdateAuras", function(s)
for i =...
Forum: AddOn Help/Support 11-30-17, 02:41 PM
Replies: 9
Views: 7,974
Posted By Sylen
Looks like disableing RaidInterfaceAntidote...

Looks like disableing RaidInterfaceAntidote solved the issue.
Forum: AddOn Help/Support 11-29-17, 04:15 PM
Replies: 9
Views: 7,974
Posted By Sylen
This is the taintLog that was created during the...

This is the taintLog that was created during the Antorus raid where the problem occured. It seems that RaidInterfaceAntidote (https://www.curseforge.com/wow/addons/blizzard-raid-interface-antidote)...
Forum: AddOn Help/Support 11-28-17, 02:47 PM
Replies: 9
Views: 7,974
Posted By Sylen
I will test the tainlog CVar in my next play...

I will test the tainlog CVar in my next play session.
What I found out during my last session was that this problem only occures in a PvE environment. It never happened during PvP. It got me...
Forum: AddOn Help/Support 11-27-17, 03:47 PM
Replies: 9
Views: 7,974
Posted By Sylen
Changing CVar nameplateOccludedAlphaMult to 1...

Changing CVar nameplateOccludedAlphaMult to 1 sadly did not fix it. Any different ideas?
Forum: AddOn Help/Support 11-27-17, 07:57 AM
Replies: 9
Views: 7,974
Posted By Sylen
CVar nameplateOccludedAlphaMult is set to 0.4...

CVar nameplateOccludedAlphaMult is set to 0.4 which is the default value according to the tooltip of AdvancedInterfaceOptions.

If i understand the description of nameplateOccludedAlphaMult right,...
Forum: AddOn Help/Support 11-26-17, 07:41 PM
Replies: 9
Views: 7,974
Posted By Sylen
Nameplates changing their alpha value mid-combat

Hello, i hope someone can help me here, because i have no clue what the acutal issue is nor whats causing it.

Sometimes when I'm engaged in a fight, some nameplates start changing their alpha value...
Showing results 1 to 25 of 50