client
command_text = "> "
show_verb_panel = 0
mob/verb
connect(text as text|null)
set name = "> connect"
set hidden = 1
cd(text as text|null)
set name = "> cd"
set hidden = 1
usr << text
I've got this as an code, however...
When I type in "> cd hi", it returns "cd hi".
How do I make it so that it returns "hi" (without "cd")?