sruon / ffxivlib

GNU Lesser General Public License v3.0
37 stars 24 forks source link

FFXIVLIB

FFXIVLIB is an open-source C# library allowing you to create easily 3rd party tools for FINAL FANTASY XIV MMORPG

Build Features

Getting Started

Add a reference to ffxivlib.dll in your application and include this snippet

using ffxivlib;

FFXIVLIB instance = new FFXIVLIB();

Check out the demo projects and the documentation

Examples

Retrieve the current target and print its name and level

using ffxivlib;

FFXIVLIB instance = new FFXIVLIB();
Entity myTarget = instance.GetCurrentTarget();
Console.WriteLine("Name: {0} Level: {1}", e.Name, e.Level);

Requests/Questions

Please feel free to create an issue and submit pull requests to discuss changes, bugs or new additions.

Links