ID:1675632
 
(See the best response by DarkCampainger.)
Is it possible to make a verb hidden in menus but available in pop-up menus?
This?

mob/verb/Test()
set hidden = TRUE
That hides it from both the menu and the pop-up menu. I want to hide it from just the menu. The player can drop an item in their inventory by left clicking on it and clicking drop. It creates a verb in the regular menues though and the verb originates from the item itself. Don't want it to clutter the regular menu with another verb.
Best response
You can do set category = null on the verb to hide it from the verb panels but not the right-click menu.