Multiple word aliases, help files in zMUD

by Unknown

Back to Mechanic's Corner.

Unknown2005-06-14 02:04:30
Ok, now I'm trying to make help files for this thing smile.gif

Any way I can create multi-word aliases? Currenlty you type in 'shelp' and it's an alias that echoes the help file listing. But I can't make a multi word alias 'shelp gettingstarted' for example. Any ideas how I could set up a good help file system?
Unknown2005-06-14 02:54:17
#alias shelp {#IF {%1="gettingstarted"} {#SAY "Getting started..."} {#IF {%1="nyah"} {#say "Nya"} {#say "LIST"}}}
Sylphas2005-06-14 03:27:02
#ONIN {shelp gettingstarted} {blah, blah, blah}

Or just do #AL {shelp} {#IF (%ismember(%1, @helpfiles)) {showhelp} {#SA Sorry, there is no help file by this name.}}
Unknown2005-06-14 06:21:38
First version of this system I'm making should be available in a one or two more days smile.gif