Category: News

0

Best BG3 Druid Build – Owlbear Maximum Power!

Welcome to the Best BG3 Druid Build Guide. The Druid class is highly effective. It can heal and transform into different creatures via the Wild Shape action in Baldur’s Gate 3. Druids have access to three subclasses: the Circle of the Moon, Circle of the Land, and Circle of Spores. We are using the Circle of […]
The post Best BG3 Druid Build – Owlbear Maximum Power! appeared first on AlcastHQ.

0

ElderScrollsOfAlts 1.00.53.beta (1.00.53.beta)

Test build to try a fix to the gui:-Updated padding of lines to help with overlapping issues for hover over–Need anyone to look at and see if the new spacing breaks anything or is hated.

0

GeldisBarsRestyle (1.0)

Restyle for base game elementsResourse barshttps://cdn-eso.mmoui.com/preview/pvw13456.pngBoss bars and target barhttps://cdn-eso.mmoui.com/preview/pvw13453.pngCompasshttps://cdn-eso.mmoui.com/preview/pvw13454.pngSkills frameshttps://cdn-eso.mmoui.com/preview/pvw13455.png! ! ! This addond also hides minimazed chat window and group frame ! ! !If you want to play with group frame you can use AltGroupFrame or JoGroup

0

Lykeion’s Group Banisher (1.0)

What does this addon do?It helps to solve the long-standing Ghost Group problem in Group Finder. You’ll never again run into a group that’s stuck in a list and can’t be joined. They won’t be shown at all.How does it work?Recruitments posted in Group Finder are not timestamped, so the first time you find a group its info and the timestamp will be cached by addon manually. Recruitments are considered valid within 6 hours of the first encounter; recruitments beyond that are treated as a ghost group by the addon and prevented from showing up in the Group Finder. Simple.Cached groups are purged after 21 days, which should be longer than the interval between routine maintenance.How to use it?Install it and it will do the job. No extra UI, no settings menu.

0

Meet the Character—Zerith-var

Meet Zerith-var, Companion, necromancer, and member of the ancient Order of the Hidden Moon, in our latest Meet the Character!

0

CanThisBeCraftedAtHome (2024.10.06)

CanThisBeCraftedAtHome is a helper for other addons to figure if a set can be crafted on the Grand Master Crafting Stations at home or any home the user had access to its Grand Master Crafting Stations.The info is gathered and updated/saved for each Grand Master Crafting station each time the user opens it’s interface.Code to use in your addon:if CanThisBeCraftedAtHome then — checks if the addon is running local canBeCaftedAtHome, answerTable = CanThisBeCraftedAtHome.askForSetId(itemSetId) — gets the data from itemSetId if canBeCaftedAtHome then — iterate through the answer table (possibly multiple houses) only if the boolean is positive for k,v in pairs(answerTable) do local theZoneIdTheHouseIsLocatedIn = v.globalZoneId local theZoneNameTheHouseIsLocatedIn = v.zoneName local theZoneIdOfTheHouse = v.houseZoneId local theHouseIdOfTheHouse = v.houseId local theHouseName = v.houseName local theHouseNickname = v.houseNickname local theHouseOwner = v.owner end endend