/* version.c
Copyright (C) 1994-2000 Annihilator
This program is a part of ES2 mudlib. Permission is granted to use,
modify, copy or distribute this program provided this copyright notice
remains intact and subject to the restriction that this program MAY
NOT be used in any way for monetary gain.
Details of terms and conditions is available in the Copyright.ES2 file.
If you don't receive this file along with this program, write to the
primary author of ES2 mudlib: Annihilator
*/
#include
inherit F_CLEAN_UP;
int main(object me, string arg)
{
string name;
printf("遊戲伺服器:%s %s\n", capitalize(__DRIVER__), __VERSION__ );
printf("Mudlib 版本:%s\n", MUDLIB_VERSION );
return 1;
}
int help(object me)
{
write(@HELP
指令格式 : version
這個指令會顯示遊戲目前所用的 LP driver 版本以及 mudlib 版本。
HELP
);
return 1;
}