cdanis / unchaind

EVE Online wormhole kill notifier.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

https://travis-ci.org/supakeen/unchaind.svg?branch=master https://readthedocs.org/projects/unchaind/badge/?version=latest

unchaind

https://unchaind.readthedocs.io/en/latest/_static/logo.png

unchaind is a tool for EVE Online groups that use wormhole space. It offers several tools on your Discord to make your life easier. These include automatic notifications for kills happening in your chain, systems being found in your chain and/or specific notifications for new systems in jump range. It can also be used as a generic killbot which can filter kills in many ways.

Examples

An example is probably the easiest way to get started. The most important bit is to get your configuration right, so let's start with a sample configuration that takes all lowsec and nullsec kills for a certain alliance and posts them to a Discord webhook.:

home_system = 31002238

[[mapper]]
    type = "siggy"
    username = "bla"
    password = "bla"

[[notifier]]
    type = "discord"
    webhook = "hook_url"
    subscribes_to = "kill"

    [notifier.filter]
        require_all_of = [
            {alliance_kill: 88888888},
        ]
        require_any_of = [
            {security: "low"},
            {security: "null"},
        ]

After saving this in config.toml you can then run unchaind -c config.toml to get going.

You can read more about available filters in our documentation but you can filter on alliance, corporation, location (regions, your siggy chain, systems), characters, items, value, and more.

Community

This project is still very much in development, we do however have a Discord server that you can join to ask questions and/or help out.

About

EVE Online wormhole kill notifier.

License:MIT License


Languages

Language:Python 99.6%Language:Shell 0.4%