meteor-client icon indicating copy to clipboard operation
meteor-client copied to clipboard

Item command for managing item highlight / auto drop / anti drop

Open moxvallix opened this issue 4 months ago • 2 comments

Type of change

  • [ ] Bug fix
  • [x] New feature

Description

This adds a new command, .item, which helps to manage some item lists in certain modules, in a way more intuitive than using .setting.

The command syntax is as follows:

# Highlight
.item highlight              - Adds currently held item to ItemHighlight module's items.
.item highlight <item>       - Adds <item> to ItemHighlight module's items.
.item highlight clear        - Removes currently held item from ItemHighlight module's items.
.item highlight clear *      - Removes all from ItemHighlight module's items.
.item highlight clear <item> - Removes <item> from ItemHighlight module's items.

# Block
.item block                  - Adds currently held item to InventoryTweaks module's auto-drop items.
.item block <item>           - Adds <item> to InventoryTweaks module's auto-drop items.
.item block clear            - Removes currently held item from InventoryTweaks module's auto-drop items.
.item block clear *          - Removes all from InventoryTweaks module's auto-drop items.
.item block clear <item>     - Removes <item> from InventoryTweaks module's auto-drop items.

# Lock
.item lock                   - Adds currently held item to InventoryTweaks module's anti-drop items.
.item lock <item>            - Adds <item> to InventoryTweaks module's anti-drop items.
.item lock clear             - Removes currently held item from InventoryTweaks module's anti-drop items.
.item lock clear *           - Removes all from InventoryTweaks module's anti-drop items.
.item lock clear <item>      - Removes <item> from InventoryTweaks module's anti-drop items.

moxvallix avatar Sep 05 '25 16:09 moxvallix

i feel like .item x clear removing the held item is a bit unintuitive, i would expect it to completely wipe the list (same with .item x clear <item> i think that .item x clear should be changed to .item x remove and .item x clear * should be changed to just .item x clear

crosby-moe avatar Nov 05 '25 08:11 crosby-moe

Yeah ok that works.

moxvallix avatar Nov 08 '25 03:11 moxvallix