ID:174805
 
Can someone tell me a way of making custom verbs. So that players could make a verb while playing.
Any help would be greatly appreciated!

~GokuSS4Neo~
As you are, I once was, As I am, you will become...
A verb can't REALLY be "made" from within the game. All you can do really is make a generic type of verb, where you can then rename it, and change a few of its properties.
In response to Goku72
Sorry, I phrased my last post wrong. You said what I actually meant. How can I rename/change variables of a verb from inside the game?

~GokuSS4Neo~
<font size=-3>If ignorance is bliss, I am in heaven...
In response to Gokuss4neo
var/V=new/mob/custom/verb/Custom_Name
var/N=input("What do you wish to name this as?","[world.name]",V:name) as text|null
V:name=N

something along those lines.
You could override client.Command() (I think it's undocumented though). A number of MUD parsers do this.