Category: News

0

LibDataStructures (2024.11.27)

Change Log:——————–## 2024.11.27- add basic library structure- add Stack- add basic documentationDescription:——————–https://github.com/m00nyONE/LibDataStructures# LibDataStructures**LibDataStructures** is a lightweight library for The Elder Scrolls Online (ESO) that provides developers with essential data structures to enhance their addon development.More datastructures will follow very soon—## Features- **Stack**: – Push values onto the stack. – Pop values from the stack. – Peek at the top value without removing it. – Clear all values from the stack. – Clone the stack for independent manipulation. – Iterate over stack elements from top to bottom. – Check if the stack is empty. – Get the current size of the stack.—## Installation1. Download the latest release of the library from (#).2. Place the `LibDataStructures` folder into your `AddOns` directory: “` Documents/Elder Scrolls Online/live/AddOns/ “`3. Add the library dependency to your addons manifest file (`.txt`): “` DependsOn: LibDataStructures>=20241127 “`—## UsageHere is an example of how to use LibDataStructures to work with a stack:### Initialization“`lualocal LDS = LibDataStructureslocal stack = LDS.Stack:New()“`### Basic Operations“`lua– Push values onto the stackstack:Push(10)stack:Push(20)– Peek at the top valued(stack:Peek()) — Output: 20– Pop values from the stackd(stack:Pop()) — Output: 20d(stack:Pop()) — Output: 10“`### Utility Functions“`lua– Check if the stack is emptyd(stack:IsEmpty()) — Output: true– Clear the stackstack:Push(1)stack:Push(2)stack:Clear()d(stack:Len()) — Output: 0– Clone the stackstack:Push(100)local clonedStack = stack:Clone()d(clonedStack:Pop()) — Output: 100“`### Iteration“`lua– Push multiple valuesstack:Push(1)stack:Push(2)stack:Push(3)– Iterate through the stackfor value in stack:Iterate()…

0

Throne and Liberty Paladin Tank Build – Sword Shield Wand Tome

Welcome to our Throne & Liberty Paladin Tank build. This is a supportive build that uses a combination of the Sword & Shield and Wand & Tome weapons to taunt and debuff enemies while helping out allies. While this build can be adjusted to push some decent AoE damage, it is not a DPS build […]
The post Throne and Liberty Paladin Tank Build – Sword Shield Wand Tome appeared first on AlcastHQ.

0

Best Staff Wand/Tome Mage Build for Throne and Liberty

Welcome to our Throne & Liberty Staff and Wand & Tome build. This is a DPS build that excels at farming, thanks to its high AoE damage and self-healing. It is one of the best builds in the game for playing solo, and it’s also very useful in groups thanks to its high AoE damage. […]
The post Best Staff Wand/Tome Mage Build for Throne and Liberty appeared first on AlcastHQ.

0

Best Crossbow and Dagger DPS Build for Throne and Liberty

Welcome to our Throne & Liberty Crossbow and Dagger build. This DPS build has excellent single-target burst damage, making it ideal for PvP. It also does good DPS in PvE content, and is effective at either close or long range. For a full overview of all builds please visit the Throne and Liberty Builds Database. […]
The post Best Crossbow and Dagger DPS Build for Throne and Liberty appeared first on AlcastHQ.

0

Breadcrumbs (1.1)

Change Log:——————–v1.1- Fixed bug related to importing lines into unvisited zonev1.0- Released addonDescription:——————–Elm’s Markers but for lines instead of icons.Allows for the creation, use and sharing of custom lines anywhere in any colour. Useful for raid groups in both dungeons and trials.Requires LibAddonMenu2How to draw lines?Create lines using /breadcrumbs or using the shapes section in the addon settings.Specific instructions can be found under the draw lines heading in the settings menu. If you encounter issues with the addon please let me know. I would love to fix them!Thank you to Kyzeragon, Baertram, Lamierina7 and bitrock.

0

AutoGuildWelcome Revised (1.0)

Updated Version of AutoGuildWelcome by Phobus11* Removed LibStub dependency* Removed embedded libraries