Recent Topics

Ads

[Official] Addon Repository

Here you can post addons, or anything related to addons.
Forum rules
Before posting on this forum, be sure to read the Terms of Use
User avatar
mamabunny3
Posts: 103

Re: Addons

Post#271 » Wed Jan 04, 2017 5:31 pm

Idrinth wrote:
mamabunny3 wrote:does anyone know where i can find Asshat?
I don't recall that, what was it meant to do?
its for healers to let us remember jerks who complain about heals.. you put their name into asshat and it sends us a reminder that no matter how hard we heal they still complain and if we choose not to, we dont heal them until they change their attitudes

Ads
User avatar
mamabunny3
Posts: 103

Re: Addons

Post#272 » Wed Jan 04, 2017 5:33 pm

Asshat is a simple addon that will allow you to make a custom 12 character note that attaches to the Friendly or Hostile target frame. The basic idea is that if someone is being an Asshat, you can create a permanent or temporary note about that player.

cheatandgo
Posts: 2

Re: Addons

Post#273 » Mon Feb 13, 2017 6:30 pm

hi all, long time ago, when i played on official servers i had an addon which changing Witch Elf icon from dagger to tits :)
anyone know what it was?

User avatar
saupreusse
Developer
Posts: 2386

Re: Addons

Post#274 » Mon Feb 13, 2017 6:42 pm

cheatandgo wrote:hi all, long time ago, when i played on official servers i had an addon which changing Witch Elf icon from dagger to tits :)
anyone know what it was?
I do not - but legend says if you eqip face eaters mask while nekkid you'll get what you are looking for ...
Image

User avatar
sullemunk
Addon Developer
Posts: 1208

Re: Addons

Post#275 » Mon Feb 13, 2017 6:51 pm

It's called Bigg'uns and should be on the essential addon list :P
Image
Image Ethreal   Image Corque   Image Urgiz   Image Loxley   Image Chilli   Image Maduza

cheatandgo
Posts: 2

Re: Addons

Post#276 » Mon Feb 13, 2017 7:00 pm

sullemunk wrote:It's called Bigg'uns and should be on the essential addon list :P
yep, TY :D

User avatar
Idrinth
Addon Developer
Posts: 665
Contact:

Re: Addons

Post#277 » Sat Apr 01, 2017 12:41 pm

The site and any related service is currently suffering an outtage because of the certificate authority not being trusted anymore. I am working on getting the certificate replaced.
Addons&more Addon News&Creation&Testing Addon News Blog
  • Idrinth - Swordmaster
  • Alitsa - Knight of the Blazing Sun
  • Alitza - Warrior Priestess
  • Idrynth - Disciple of Khaine

User avatar
Idrinth
Addon Developer
Posts: 665
Contact:

Re: Addons

Post#278 » Tue Apr 04, 2017 12:00 pm

Just wondering, does my addon-client still work after the certificate has been replaced? I'm currently on vacation and can't properly test that.
Addons&more Addon News&Creation&Testing Addon News Blog
  • Idrinth - Swordmaster
  • Alitsa - Knight of the Blazing Sun
  • Alitza - Warrior Priestess
  • Idrynth - Disciple of Khaine

Ads
User avatar
Idrinth
Addon Developer
Posts: 665
Contact:

Re: Addons

Post#279 » Sun Jun 25, 2017 6:47 pm

(I believe I )Fixed the client, hope it now works for everyone again: https://github.com/Idrinth/WARAddonClie ... /tag/1.3.1
Addons&more Addon News&Creation&Testing Addon News Blog
  • Idrinth - Swordmaster
  • Alitsa - Knight of the Blazing Sun
  • Alitza - Warrior Priestess
  • Idrynth - Disciple of Khaine

User avatar
Idrinth
Addon Developer
Posts: 665
Contact:

Re: Addons

Post#280 » Fri Jun 30, 2017 4:52 pm

Just wondering if UI-Authors would be fine with a schema like that?
Spoiler:

Code: Select all

{
  "$schema": "http://json-schema.org/draft-03/schema#",
  "id": "idrinth-war-addon-settings",
  "properties": {
    "name": {
      "type": "string",
      "required": true,
      "description": "The name of the UI, used for storage purposes as well"
    },
    "version": {
      "type": "string",
      "required": true,
      "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$",
      "desription": "May be used for automatic updates in the future"
    },
    "description": {
      "type": "string",
      "required": false,
      "description": "Will be displayed when loaded by the client"
    },
    "authors": {
      "type": "array",
      "required": false,
      "description": "Will be shown as authors",
      "items": {
        "type": "object",
        "properties": {
          "website": {
            "type": "string",
            "description": "An author's website url",
            "format": "uri"
          },
          "name": {
            "type": "string",
            "description": "An author's (nick-)name",
            "required": true
          },
          "contact": {
            "type": "string",
            "description": "An author's email",
            "format": "email"
          }
        }
      }
    },
    "website": {
      "type": "string",
      "required": false,
      "description": "The UI's website or forum thread",
      "format": "uri"
    },
    "download": {
      "type": "string",
      "required": false,
      "description": "A download link for automatic updating",
      "format": "uri"
    },
    "config": {
      "type": "object",
      "required": true,
      "properties": {
        "local": {
          "type": "string",
          "description": "base 64 encoded, zipped character-specific configuration",
          "required": true
        },
        "global": {
          "type": "string",
          "description": "base 64 encoded, zipped global configuration",
          "required": true
        }
      }
    },
    "addons": {
      "type": "array",
      "description": "A list of addons to download",
      "required": true,
      "items": {
        "type": "string",
        "description": "the url-part of an addon from tools.idrinth.de"
      }
    }
  }
}
Result looks similar to:
Spoiler:

Code: Select all

{
  "name": "My UI",
  "authors": [
    {
      "name": "Idrinth",
      "website": "http://idrinth.de",
      "contact": "[email protected]"
    }
  ],
  "website": "https://idrinth.de/ui/",
  "download": "https://idrinth.de/ui.json",
  "version": "1.0.0",
  "description": "abc...",
  "config": {
    "local": "base64 encoded zipped data blob here",
    "global": "base64 encoded zipped data blob here"
  },
  "addons": [
    "a1",
    "b2"
  ]
}
Addons&more Addon News&Creation&Testing Addon News Blog
  • Idrinth - Swordmaster
  • Alitsa - Knight of the Blazing Sun
  • Alitza - Warrior Priestess
  • Idrynth - Disciple of Khaine

Who is online

Users browsing this forum: cinfupan7329 and 7 guests