Category: News

0

Best BG3 Lockadin Build – Warlock Paladin Mutliclass Build

Welcome to the Best Lockadin Build Guide for BG3 (Warlock Paladin Multiclass Build). This build takes the melee prowess of the Paladin and further enhances it with the Warlock class, giving you access to a wider range of spells and allowing you to attack three times per Action, rather than the usual two. The combination […]
The post Best BG3 Lockadin Build – Warlock Paladin Mutliclass Build appeared first on AlcastHQ.

0

Healer Performance Panel (0.1.3)

HealerPerformancePanel is a compact healer panel that helps you quickly notice critical moments in the group: when an allys HP drops low or they need attention. The addon is designed to stay readable in combat, without unnecessary on-screen clutter.FeaturesA convenient group/ally status panel (minimalist interface).Visual alerts for low HP (to react quickly).Runs stably with low overhead, with a short update interval.Suitable for dungeons / trials / PvP groups (when instant reaction matters).RequirementsLibAddonMenu-2.0LibImplexInstallationInstall the addon via Minion or manually to: DocumentsElderScrollsOnlineliveAddOnsHealerPerformancePanelMake sure the libraries listed above are installed.In-game: Esc → Settings → Addons → HealerPerformancePanel (if there is a settings menu).NotesIf the addon doesnt activate, check that the dependencies are installed and that Allow out of date addons is enabled.

0

ESO Dev Updates—February 2026

ESO’s developers share some of the things they’ve been working on over the last month in a new livestream series.

0

LibLeadDrop (1.0.0)

LibLeadDrop is a data library providing drop information for antiquity leads.All lead drop hints were obtained from https://en.uesp.net/, many thanks to authors, contributors, admins, and all people responsible for the wiki.Proper credit for specific pages is bundled with data and also exposed via LibLeadDrop.getLeadDropHintLink function.How to use:Use the library as DependsOn or OptionalDependsOn in your addon file:## OptionalDependsOn: LibLeadDrop>=010000Try to use the most recent library version, you can find this version in LibLeadDrop.addon file after download.Library offers these functions: (defined in LibLeadDropAPI.lua):function LibLeadDrop.getLeadDropHint(integer antiquityId) –> String: This returns the hint for where the lead dropsfunction LibLeadDrop.getLeadDropHintLink(integer antiquityId) –> String: This returns the https://en.uesp.net/ link to a page from which the Drop Hint was taken.function LibLeadDrop.getAntiquityIdsForSet(integer setId) –> Array: This is a helper function for mythics and set antiquities, it returns all antiquityIds for given setId.Example:local malacathPieces = LibLeadDrop.getAntiquityIdsForSet(11)for _, antiquityId in ipairs(malacathPieces) do d(LibLeadDrop.getLeadDropHint(antiquityId))endWould outputOverland mobsPublic Dungeon bosses in Old OrsiniumPublic Dungeon bosses in Bonesnap RuinsPatrolling Horrors in the Imperial CityWorld BossesNote: you can obtain antiquity zone by vanilla API: GetAntiquityZoneId(integer antiquityId) and that is the reason why zones aren’t bundled in LibLeadDrop. Tho, one of the future goals of this library is to also provide zoneIds explicitly for drop zones.LibLeadDrop.data variable is considered internal, and is not recommended for using in addons. Please prefer obtaining data by exposed API functions.Please do not bundle this library with your addon, as it is not recommended by esoui, and also be cautious when copying any data directly into your addon files. You may still do so, but be aware that redistribution of the data means you must comply with the Creative Commons Attribution-ShareAlike 2.5 Generic (CC BY-SA 2.5) license. You can find more information in license.txt after download or by checking the link: https://creativecommons.org/licenses/by-sa/2.5/