18 lines
451 B
C
18 lines
451 B
C
/* /cmds/player/status.c
|
|
* from the Dead Souls LPC Library
|
|
* gives a player status information
|
|
* created by Descartes of Borg 950409
|
|
*/
|
|
|
|
#include <lib.h>
|
|
|
|
inherit LIB_DAEMON;
|
|
|
|
mixed cmd(string args) { return this_player()->eventDisplayStatus(); }
|
|
|
|
string GetHelp() {
|
|
return ("Syntax: status\n\n"
|
|
"Gives you information about your current physical status.\n"
|
|
"See also: money, skills, stats, score, env");
|
|
}
|