2025-08-13 07:44:58 +02:00
2025-08-13 07:44:58 +02:00
2023-11-20 13:01:25 +01:00
2024-11-23 07:59:41 +00:00
2022-11-04 17:57:03 +01:00

Pilz.Dalamud

This library is a set of usefull functions you can use within your Dalamud plugin.
At the moment it's far away from being complete or even good. Right now it as some basic functions and tools to work with Nameplates and TextPayloads.

How to install

Install the latest version of Pilz.Dalamud via NuGet Package Manager or NuGet Console:
https://www.nuget.org/packages/Pilz.Dalamud

Or add the alternative package source for slightly quicker updates:
<add key="Pilz.Dalamud" value="https://git.pilzinsel64.de/api/v4/projects/8/packages/nuget/index.json" />\

Get started

Initialize Plugin Services

To be able to use most features of that lib you must initialize the Plugin Services. The best time to do this is when you initialize your own Plugin Services at your IDalamudPlugin class constructor.

public Plugin(DalamudPluginInterface pluginInterface)
{
    // Initialize our own Plugin Services if we use them
    PluginServices.Initialize(pluginInterface);
    
    // Initialize Plugin Services for `Pilz.Dalamud` because the lib uses them
    Pilz.Dalamud.PluginServices.Initialize(pluginInterface);
}

Hook into NamePlates

DEPRICATED! Use the INameplate service wich is now implemented within Dalamud. The old Nameplate Addon and the new temporary Nameplate service has been removed since v0.7.0 of this library.

Contribute

  • Freel free to PR changes or new features/libraries.
  • If you want to address bigger changes or want a discussion about something, feel free to open an issue.
Description
A set of usefull functions you can use within your Dalamud plugin.
Readme MIT 162 KiB
v0.4 Latest
2023-05-24 09:49:54 +00:00
Languages
C# 98.8%
Batchfile 1.2%