Beispiel #1
0
def journal_entry(cmdr, is_beta, system, station, entry, state):
    """
    Make sure the service is up and running
    :param cmdr:
    :param system:
    :param station:
    :param entry:
    :param state:
    :return:
    """
    ensure_service()
Beispiel #2
0
def plugin_start():
    """
    Start our plugin, add this dir to the search path so others can use our module
    :return:
    """
    ensure_service()
    try:
        client.send_message("edmcintro", trace("EDMC Ready"), "yellow", 30, 165, ttl=6)
    except Exception as err:
        print("Error sending message in plugin_start() : {}".format(err))
    return "EDMCOverlay"
Beispiel #3
0
def plugin_start():
    """
    Start our plugin, add this dir to the search path so others can use our module
    :return:
    """
    ensure_service()
    try:
        client.send_message("edmcintro",
                            trace("EDMC Ready"),
                            "yellow",
                            30,
                            165,
                            ttl=6)
        notify_old_hits()
    except Exception:
        pass
    return "EDMCOverlay"