Check the "MSSP Plaintext section of
http://tintin.sourceforge.net/mssp/
If you're using a LambdaMOO based DB:
@verb $login:MSSP-REQUEST this none this "rxd"
@program $login:MSSP-REQUEST
if (caller != #0)
return E_PERM;
endif
NAME = $network.MOO_name;
PLAYERS = length(connected_players());
UPTIME = $last_restart_time;
tab = $string_utils.tab;
notify(player, "");
notify(player, "MSSP-REPLY-START");
"Required";
notify(player, tostr("NAME", tab, NAME));
notify(player, tostr("PLAYERS", tab, PLAYERS));
notify(player, tostr("UPTIME", tab, UPTIME));
notify(player, "MSSP-REPLY-END");
.
These are just the required field. There are plenty of them you can add.
Paulo