How to Remove Verbs?

Is there a way to completely remove a verb, preferably without changing library files?

A lot of my game ideas don’t interact with certain base library systems at all, so the default functionality of certain verbs can cause problems, and it’s difficult to figure out how to replace default functionality sometimes.

Or is removing verbs not a recommended practice?

Yep… modify the VerbRule in question to only match an empty string…

1 Like

Or fail those verbs in verify with a msg that says they’re not used

1 Like

Yeah, I think I might do this as a main strategy…

…and then do this for anything that might be more buried.

1 Like

My game is kind of pseudo-medieval so I eliminated things like TypeOn, PlugInto etc.; I used the empty string just to not acknowledge the verbs at all…

1 Like