[SOLVED] Can't move an object to another object if it has the feature Wearable.

S4MOG
12 Nov 2020, 22:32I have an object called gloves that has the feature Wearable. I can wear them and remove them no problem even add them to my inventory but they can't be added to another object I have called toolkit.
All other objects I have created can be added and removed from the toolkit just fine, the gloves are the only ones thats giving me trouble and I would have to guess its because of the feature Wearable since it's the only one with this feature and the only one not working. And removing the wearable feature allows me to move the gloves into the toolkit.
Forgot to add I am moving the objects through a verb called add to toolkit the code for that verb would be:
if (Contains (Toolkit,Gloves)) {
msg ("The gloves are already in the toolkit.")
}
else {
MoveObject (Gloves, Toolkit)
msg ("Gloves have been added to the toolkit.")
}
mrangel
12 Nov 2020, 22:53Does it give an error if you attempt to put them in the toolkit? Or just nothing happens?

S4MOG
12 Nov 2020, 23:04Nothing happens it doesn't even give me my verb option. The only things that are available are Look at, take, use, Drop, Wear, Remove.
mrangel
12 Nov 2020, 23:39it doesn't even give me my verb option
Wearable items handle their verb lists in a different way.
If you want something to appear on the garment's verbs list when it is worn, you need to create a wornverbs
attribute.
If you want it to appear when the garment is carried by not worn, you need an invverbs
attribute.
These should be strings, containing a list of verbs with ;
in between.

S4MOG
12 Nov 2020, 23:52Thanks man that fixed the issue. New to quest and using it for a class project so thanks for the quick reply.