Skip to content
Arkii edited this page Feb 10, 2015 · 4 revisions

Creating a Meldii compatible addon:

This page will help you package up you addon for use with Meldii.

Packaging the addon:

Basically a Meldii addon is just a zip file contains your addons files and a melder_info.ini file.

The recommended structure inside the zip is this:

|-AddonName
  |--Addon.lua
  |--Addon.xml
  |--melder_info.ini

That is that the top level entry in the zip is a folder with your addons name, then in this folder you have all the files and content for your addon as well as the melder_info.ini (the ini can really go any where but this is preferred).

Now for the normal content of the melder_info.ini:

title=MeldiiExample
author=Bill Murray
version=1.0
patch=1.2.1740 
url=http://www.firefall.com/community/threads/GhostBuster.1
description=Who are you gonna call
GHOST BUSTERS!!

Most of the above should be self explanatory, but to be clear.

  • Patch refers to the most recent version of Firefall that this addon is compatible with.
  • Description can be multi lined.

Here are more options that you can use but aren't commonly needed

destination=gui/components/MainUI/
remove=gui/components/MainUI/HUD/Abilities/
ignore=filename
  • destination is used in mods to set where the contents of the addon will be extracted to, any file in the zip will cause the original file to be backup-ed and overwritten with the file in the zip.
  • remove You can have multiple remove commands, this will cause Meldii to back these up and remove them when the addon is installed
  • ignore You can have multiple ignore commands, these files will not be extracted from the addons zip.

Now that you have your addon packaged up its time to host it!

Hosting the addon:

At the moment you have two choices when it comes to hosting a Meldii addon.

Hosted on the Firefall forums:

.. say stuff

Direct download:

.. say stuff

Clone this wiki locally