What is the command to place the item at cursor in a specific bag?
So pick up something from inventory with
Now I need to place it inside the bag at Slot 2 (without /autoinv becauce some slots might be empty)
So the game command is Ctrl down and leftmouseup click in Slot 2.
(Without Ctrl you replace the item in slot 2 which is not what I want.
)
So something like this:
Anyone know the correct syntax for this?
EDIT:
Found an old post on MQ2 forums: https://www.macroquest2.com/phpBB3/viewtopic.php?f=41&t=19725&p=169655&hilit=place+item#p169655
This will place an item in specific slot in a specific bag slot
This works except you need to know the empty slot number in the particular bag.
It would be much better to be able to simply control left click the item on the bag and not worry about specific bag slot.
So pick up something from inventory with
Rich (BB code):
/shift /itemnotify ${FindItem[=MyFooItem].InvSlot} leftmouseup
Now I need to place it inside the bag at Slot 2 (without /autoinv becauce some slots might be empty)
So the game command is Ctrl down and leftmouseup click in Slot 2.
(Without Ctrl you replace the item in slot 2 which is not what I want.
)So something like this:
Rich (BB code):
/ctrl /notify pack2 leftmouseup
Anyone know the correct syntax for this?
EDIT:
Found an old post on MQ2 forums: https://www.macroquest2.com/phpBB3/viewtopic.php?f=41&t=19725&p=169655&hilit=place+item#p169655
This will place an item in specific slot in a specific bag slot
Rich (BB code):
/itemnotify in pack2 slotnumber leftmouseup
This works except you need to know the empty slot number in the particular bag.
It would be much better to be able to simply control left click the item on the bag and not worry about specific bag slot.
Last edited:

