ID:2051495
 
(See the best response by FKI.)
I have a verb editor verb that shows a window list of players verbs but it shows in list as /mob/verb/Say,, how can I make a verb have a name so it does not show its path?

Best response
You could do something like this.

mob
verb/test_verb()
set name = "Test"

var atom/some_verb = /mob/verb/test_verb
world << some_verb.name // outputs "Test"
thank you, worked great