ES2 MUD LIB :: 東方故事二(ES2) 天朝帝國 mudlib 瀏覽展示

/cmds/adm/profile.c

HOME :: cmds :: adm :: profile.c
// profile.c

int main(object me, string arg)
{
        seteuid(geteuid(this_player(1)));

PROFILE_D->make_profile(arg);
write("Result written to /PROFILE\n");

return 1;
}
int help (object me)
{
        write(@HELP
指令格式: profile
 
turns on command profiling, the result will be saved to /PROFILE
 
HELP
);
        return 1;
}
 
HOME :: cmds :: adm :: profile.c