About

This plugin reads and parses id and invdetails from Aardwolf

Commands

itemid

id


usage: #bp.itemid.id [-h] [serial]

id an item

positional arguments:
  serial      the item to id

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

Base

api


usage: #bp.itemid.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.itemid.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.itemid.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.itemid.reset [-h]

reset the plugin

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

save


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

save the plugin state

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

set


usage: #bp.itemid.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.itemid.stats [-h]

show plugin stats

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

Settings

idcmd


identify

API

format


itemid.format(serial)
  format an item
    serial    = the serial # if the item to identify

    this function returns a list of strings that are the formatted item

original defined in plugins/aardwolf/itemid.py

identify


itemid.identify(serial)
  identify an item
    serial    = the serial # if the item to identify

    this function returns None if the identify data has to gathered,
    or the item if is in the cache

original defined in plugins/aardwolf/itemid.py

show


itemid.show(serial)
  show an item to the client
    serial    = the serial # of the item to show

    if the serial isn't in the cache, then it is identified through the id
    command

    this function returns nothing

original defined in plugins/aardwolf/itemid.py