--- deliantra/server/server/c_party.C 2006/09/14 22:34:03 1.6 +++ deliantra/server/server/c_party.C 2006/11/17 21:26:42 1.7 @@ -275,6 +275,7 @@ } return 1; } + if (strcmp (params, "help") == 0) { new_draw_info (NDI_UNIQUE, 0, op, "To form a party type: party form "); @@ -291,6 +292,7 @@ #endif return 1; } + #ifdef PARTY_KILL_LOG if (!strncmp (params, "kills", 5)) { @@ -350,6 +352,7 @@ return 1; } #endif /* PARTY_KILL_LOG */ + if (strncmp (params, "say ", 4) == 0) { if (op->contr->party == NULL) @@ -361,7 +364,7 @@ currentparty = op->contr->party->partyname; snprintf (buf, MAX_BUF - 1, "[%s] %s says: %s", currentparty, &op->name, params); send_party_message (op, buf); - new_draw_info_format (NDI_WHITE, 0, op, "[%s] You say: %s", currentparty, params); + new_draw_info_format (NDI_LT_GREEN | NDI_UNIQUE, 0, op, "[%s] You say: %s", currentparty, params); return 1; } @@ -426,6 +429,7 @@ op->contr->party = NULL; return 1; } + if (strcmp (params, "who") == 0) { player *pl;