| Package | Description |
|---|---|
| simple.hooks.filters | |
| simple.hooks.queries |
| Modifier and Type | Class and Description |
|---|---|
class |
SimpleBank |
class |
SimpleEquipment |
class |
SimpleInventory |
class |
SimpleShop |
| Modifier and Type | Method and Description |
|---|---|
boolean |
SimpleInventory.dropItems(SimpleItemQuery<SimpleItem> itemQuery)
Will attempt to either shift-click drop or right click drop all items in the specified query
|
| Modifier and Type | Method and Description |
|---|---|
SimpleItemQuery<K> |
SimpleItemQuery.filter(int... ids)
Will filter out all items whose id isn't one of the elements inside of the {ids} array
|
SimpleItemQuery<K> |
SimpleItemQuery.filter(java.util.regex.Pattern... patterns)
Will filter out all items whose name doesn't' match any of the patterns
|
SimpleItemQuery<K> |
SimpleItemQuery.filter(java.lang.String... names)
Will filter out all items whose name isn't one of the elements inside of the {names} array
|
SimpleItemQuery<K> |
SimpleItemQuery.filterHasAction(java.util.regex.Pattern... patterns)
Will filter out all items who don't have any actions that match any of the patterns
|
SimpleItemQuery<K> |
SimpleItemQuery.filterHasAction(java.lang.String... actions)
Will filter out all items who don't have any actions that are inside of the {actions} array
|