-
Member
Arcane affix laser timer
If I remember correct, at older versions of THUD (probably @ Stormreaver's Theme), Arcane laser on the ground had reversable timer until they go off. Is it possible to apply that in current version ?
-
Savvy ? 🐒
PHP Code:
Hud.RunOnPlugin<EliteMonsterSkillPlugin>(plugin =>
{
plugin.ArcaneDecorator.Add(new GroundLabelDecorator(Hud)
{
CountDownFrom = 10,
TextFont = Hud.Render.CreateFont("tahoma", 9, 255, 255, 255, 255, true, false, 128, 0, 0, 0, true),
});
plugin.ArcaneDecorator.Add(new GroundTimerDecorator(Hud)
{
CountDownFrom = 10,
BackgroundBrushEmpty = Hud.Render.CreateBrush(128, 0, 0, 0, 0),
BackgroundBrushFill = Hud.Render.CreateBrush(200, 255, 32, 255, 0),
Radius = 30,
});
});
Default theme customization 101
I'll post it in the collection thread too
-
Post Thanks / Like - 1 Thanks
cherouvim13 (1 members gave Thanks to JackCeparou for this useful post)
-
Member