Category: News

0

Wizard Build | Greenmage | Solasta 2

Welcome to our Greenmage Wizard Build for Solasta 2. The Greenmage is a Wizard subclass in Solasta II. This guide will explain how to create a powerful Greenmage Wizard build, including the best weapons, armour, spells, ability distribution, skills, and more. For more Wizard builds and information, check our Wizard overview page. You can find […]
The post Wizard Build | Greenmage | Solasta 2 appeared first on AlcastHQ.

0

Wizard Build | Shock Arcanist | Solasta 2

Welcome to our Shock Arcanist Wizard Build for Solasta 2. The Shock Arcanist is a Wizard subclass in Solasta II. This guide will explain how to create a powerful Shock Arcanist Wizard build, including the best weapons, armour, spells, ability distribution, skills, and more. For more Wizard builds and information, check our Wizard overview page. […]
The post Wizard Build | Shock Arcanist | Solasta 2 appeared first on AlcastHQ.

0

Warlock Build | The Fiend | Solasta 2

Welcome to our Fiend Warlock Build for Solasta II. The Fiend is a Warlock subclass in Solasta II. This guide will explain how to create a powerful Fiend Warlock build, including the best weapons, armour, spells, ability distribution, skills, and more. For more Warlock builds and information, check our Warlock overview page. You can find […]
The post Warlock Build | The Fiend | Solasta 2 appeared first on AlcastHQ.

0

Sorcerer Build | Draconic Bloodline | Solasta 2

Welcome to our Draconic Bloodline Sorcerer Build for Solasta II. Draconic Bloodline is a Sorcerer subclass in Solasta II. This guide will explain how to create a powerful Draconic Bloodline build, including the best weapons, armour, spells, ability distribution, skills, and more. For more Sorcerer builds and information, check our Sorcerer overview page. You can […]
The post Sorcerer Build | Draconic Bloodline | Solasta 2 appeared first on AlcastHQ.

0

Monk Build | Way of Light | Solasta 2

Welcome to our Way of Light Monk Build for Solasta II. The Way of Light is a Monk subclass in Solasta II. This guide will explain how to create a powerful Light Monk build, including the best weapons, armour, spells, ability distribution, skills, and more. For more Monk builds and information, check our Monk Overview […]
The post Monk Build | Way of Light | Solasta 2 appeared first on AlcastHQ.

0

Ranger Build | Hunter | Solasta 2

Welcome to our Hunter Ranger Build for Solasta II. The Hunter is a Ranger subclass in Solasta II. This guide will explain how to create a powerful Hunter Ranger build, including the best weapons, armour, spells, ability distribution, skills, and more. For more Ranger builds and information, check our Ranger Overview Page. You can find […]
The post Ranger Build | Hunter | Solasta 2 appeared first on AlcastHQ.

0

Monk Build | Open Hand | Solasta 2

Welcome to our Way of the Open Hand Monk Build for Solasta II. The Way of the Open Hand is a Monk subclass in Solasta II. This guide will explain how to create a powerful Open Hand Monk build, including the best weapons, armour, spells, ability distribution, skills, and more. For more Monk builds and […]
The post Monk Build | Open Hand | Solasta 2 appeared first on AlcastHQ.

0

ESO lua API intellisense for Visual Studio Code (update-45)

eso-apiThis is an addon for the Lua extension by Sumneko that adds intellisense features to Visual Studio Code for the Elder Scrolls Online API.This is similar to (and inspired by) Baertram’s ESOUI lua API autocompletion for JetBrains, but designed to work in VS Code.RequirementsVisual Studio CodeLua extension by SumnekoInstallationThe following only needs to be done onceStep 1Install Visual Studio Code.Step 2Install the Lua extension by Sumneko from the Visual Studio Code Marketplace.Step 3 (optional)To use the Lua extension to automatically format your code when you save a file, add the following settings in VS Code’s settings.json:””: { “editor.defaultFormatter”: “sumneko.lua”},”editor.formatOnSave”: trueStep 4Create a folder on your machine to contain the files needed for eso-api intellisense. This can be anywhere you like, even inside your existing addons folder.Step 5Download the required release from here (or clone this repository), and extract the contents into the folder you just created. Older version (from update 45 onwards) can be found here.The structure should look like this:MyESOAPIFolder└── eso-api ├── config.json └── library ├── aliases.lua ├── api.lua ├── classes.lua ├── events.lua ├── fragments.lua ├── functions.lua ├── globals.lua ├── sounds.lua ├── zoclasses.lua └── zoclasses.minYou will note above two similarly named files:zoclasses.luazoclasses.minzoclasses.lua contains definitions for objects and functions provided by ZOS in their lua code. This is a very large file and will result in a delay in the VS Code workspace being fully loaded of around 2 to 3 minutes, but does give good detail on those objects and functions.zoclasses.min is a cut-down version of the above that loads much faster. The downside is that it does not contain any function definitions and only minimal object definitions.If you want to use the min version for better initial performance, rename zoclasses.lua to zoclasses.max, then rename zoclasses.min to zoclasses.lua. After that, restart your VS Code instance if you have one running.For each ESO Addon projectFor this step, you will need to know the path to the folder you created in step 4 above. In the root of your ESO addon project (where your addon manifest file is – e.g. MyAddon.txt) add a new file named .luarc.json and add the following to it :{ “$schema”: “https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json”, “workspace.checkThirdParty”: “Apply”, “workspace.userThirdParty”: }The path to MyESOAPIFolder can be relative to your addon’s manifest file, or an absolute path if you created your folder somewhere else. If everything is setup correctly you should see additional entries being automatically added to your .luarc.json file.You may also see a large number of errors being displayed in VS Code’s Problems panel (press Ctrl+Shift+M if the panel is not currently visible), most of which are likely just formatting issues in the code. The easiest way to deal with those is to use the optional settings above and just use Ctrl+s in each file to auto-format and save it.Optional StepsGlobals that are not part of the API, such as ESO libraries or localisation constants, will not be handled by the above setup and will instead be flagged as undefined-global or undefined-field errors. To get around this you can do the following:Step 1Create a folder called esoapi in the root of your addon project folder, this can actually be any name you like, we’re just using esoapi as an example. Step 2Add a file within that folder called local.lua, this can be any filename so long as it ends in .lua, we’re using local.lua here as an example.Step 3Add the following into the local.lua file:— @meta— @diagnostics disableWe can use this file to store any definitions that are specific to this addon but not part of any ZOS provided code, like e.g. LibAddonMenu which would be added as follows:— @meta— @diagnostics disableLibAddonMenu2 = {}The annotations that this file can contain can be found in the Lua Language Server documentationStep 4Amend the .luarc.json file as follows:”workspace.userThirdParty”: UsageOpen the project in Visual Studio Code.Make sure the Lua extension by Sumneko is enabled.Modify your addon folder files as shown in For Each ESO Addon Project above.Wait for the workspace to fully load. Progress will be shown in the bottom left corner of the VS Code main window. If you opted to use the full zoclasses.lua this process will take a couple of minutes, otherwise it should be only a few seconds.Once the workspace is fully loaded you should start to see any issues present in your code being shown to you in the VS Code Problems panel. Press Ctrl+Shift+M if the panel is not currently visible. You can jump to the relevant line in your code by clicking on the issue in the Problems panel.ContributingFeel free to submit issues or pull requests if you have any improvements or bug fixes.LicenseThis project is licensed under the MIT License.DISCLAIMERThis code is not created by, affiliated with or sponsored by ZeniMax Media Inc. or its affiliates. The Elder Scrolls and related logos are registered trademarks or trademarks of ZeniMax Media Inc. in the United States and/or other countries. All rights reserved.

0

Druid Build | Circle of the Land | Solasta 2

Welcome to our Circle of the Land Druid Build for Solasta II. Circle of the Land is a Druid subclass in Solasta II. This guide will explain how to create a powerful Land Druid build, including the best weapons, armour, spells, ability distribution, skills, and more. For more Druid builds and information, check our Druid […]
The post Druid Build | Circle of the Land | Solasta 2 appeared first on AlcastHQ.