Extended the .help command a little.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2734 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Molgrum 2007-10-10 21:09:05 +00:00
parent 9b80f13f2e
commit 6ad7f1d0ae
1 changed files with 35 additions and 9 deletions

View File

@ -2369,15 +2369,41 @@ void QTV_SayCommand(cluster_t *cluster, sv_t *qtv, viewer_t *v, char *fullcomman
if (!strcmp(command, "help"))
{
QW_PrintfToViewer(v, "Website: http://www.fteqw.com/\n"
"Commands:\n"
".observe qwserver:port\n"
".qtv tcpserver:port\n"
".demo gamedir/demoname.mvd\n"
".disconnect\n"
".admin\n"
".bind\n"
".qtvinfo\n"
);
"Commands:\n"
".bind\n"
" Bind your keys to match Qizmo.\n"
".clients\n"
" Lists the users connected to this\n"
" proxy.\n"
".qtvinfo\n"
" Print info about the current QTV\n"
" you're on.\n"
".demo gamedir/demoname.mvd \n"
" Start a new stream on the specified\n"
" demo.\n"
".disconnect\n"
" Disconnect from any server or\n"
" stream you're on.\n"
".join qwserver:port\n"
" Play on the specified server.\n"
".observe qwserver:port\n"
" Spectate on the specified server.\n"
".qtv tcpserver:port\n"
" Start a new stream on the specified\n"
" server.\n"
".guimenu\n"
" Bring up the GUI-based menu\n"
" interface.\n"
".tuimenu\n"
" Bring up the text-based menu\n"
" interface.\n"
".menu\n"
" Automatically chooses an interface\n"
" that your client supports.\n"
".admin\n"
" Log in to administrate this QTV\n"
" proxy.\n"
);
}
else if (!strcmp(command, "qtvinfo"))
{