About

This plugin reads and parses invmon data from Aardwolf

Commands

eq

eq


usage: #bp.eq.eq [-n] [-c] [-s] [-h]

show equipment worn

optional arguments:
  -n, --noflags  don't show flags, default False (default: False)
  -c, --score    show score, default False (default: False)
  -s, --serial   show serial, default False (default: False)
  -h, --help     show help (default: False)

get


usage: #bp.eq.get [-h] [item] [otherargs [otherargs ...]]

get an item and put it in inventory

positional arguments:
  item        the item to get
  otherargs   the rest of the args (default: [])

optional arguments:
  -h, --help  show help (default: False)

icache


usage: #bp.eq.icache [-h] [item]

show an item from the cache

positional arguments:
  item        the item to show

optional arguments:
  -h, --help  show help (default: False)

inv


usage: #bp.eq.inv [-n] [-c] [-s] [-g] [-h] [container]

show inventory of a container

positional arguments:
  container      the container to see (default: Inventory)

optional arguments:
  -n, --noflags  don't show flags, default False (default: False)
  -c, --score    show score, default False (default: False)
  -s, --serial   show serial, default False (default: False)
  -g, --nogroup  don't group items, default False (default: False)
  -h, --help     show help (default: False)

put


usage: #bp.eq.put [-h] [item] [otherargs [otherargs ...]]

put an item into a container

positional arguments:
  item        the item to get
  otherargs   the rest of the args (default: [])

optional arguments:
  -h, --help  show help (default: False)

refresh


usage: #bp.eq.refresh [-h]

refresh eq

optional arguments:
  -h, --help  show help (default: False)

Base

api


usage: #bp.eq.api [-h] [api]

list functions in the api

positional arguments:
  api         api to get details of

optional arguments:
  -h, --help  show help (default: False)

help


usage: #bp.eq.help [-a] [-c] [-h]

show help info for this plugin

optional arguments:
  -a, --api       show functions this plugin has in the api (default: False)
  -c, --commands  show commands in this plugin (default: False)
  -h, --help      show help (default: False)

inspect


usage: #bp.eq.inspect [-m METHOD] [-o OBJECT] [-s] [-h]

inspect a plugin

optional arguments:
  -m METHOD, --method METHOD
                        get code for a method
  -o OBJECT, --object OBJECT
                        show an object of the plugin, can be method or
                        variable
  -s, --simple          show a simple output (default: False)
  -h, --help            show help (default: False)

reset


usage: #bp.eq.reset [-h]

reset the plugin

optional arguments:
  -h, --help  show help (default: False)

save


usage: #bp.eq.save [-h]

save the plugin state

optional arguments:
  -h, --help  show help (default: False)

set


usage: #bp.eq.set [-h] [name] [value]

change a setting in the plugin

if there are no arguments or 'list' is the first argument then
it will list the settings for the plugin

positional arguments:
  name        the setting name (default: list)
  value       the new value of the setting

optional arguments:
  -h, --help  show help (default: False)

stats


usage: #bp.eq.stats [-h]

show plugin stats

optional arguments:
  -h, --help  show help (default: False)

API

addidentify


eq.addidentify(serial, attributes)

    add identify information to an item


original defined in plugins/aardwolf/eq.py

get


eq.get(serial)

    put an item into inventory


original defined in plugins/aardwolf/eq.py

put


eq.put(serial, container=None, location=None)

    put an item into a container


original defined in plugins/aardwolf/eq.py

getcontainer


eq.getcontainer(container)

    get a container


original defined in plugins/aardwolf/eq.py

unequip


eq.unequip(serial)

    remove an item


original defined in plugins/aardwolf/eq.py

getworn


eq.getworn(location)

    get the item that is worn at a location


original defined in plugins/aardwolf/eq.py

getitem


eq.getitem(item)

    get an item from the cache


original defined in plugins/aardwolf/eq.py

findname


eq.findname(name, exact=False)

    find an item with name in it


original defined in plugins/aardwolf/eq.py

equip


eq.equip(serial, location=None)

    wear an item


original defined in plugins/aardwolf/eq.py