aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/talkproc.c
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-10 14:01:23 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-10 14:01:23 +0100
commit8c175bccf057aa2e8aca33405970621244fc7c46 (patch)
tree34dc01815cc3924f5d842944b4de4bb093cf9af0 /FICS/talkproc.c
parenta882d2128f3d90759945fdebc6235a6f39b17c0e (diff)
Deleted com_query()
Diffstat (limited to 'FICS/talkproc.c')
-rw-r--r--FICS/talkproc.c50
1 files changed, 0 insertions, 50 deletions
diff --git a/FICS/talkproc.c b/FICS/talkproc.c
index fd5529e..d9cc244 100644
--- a/FICS/talkproc.c
+++ b/FICS/talkproc.c
@@ -55,56 +55,6 @@
int quota_time;
-#if 0
-PUBLIC int com_query(int p, param_list param)
-{
- int p1;
- int count = 0;
-
- if (!parray[p].registered) {
- pprintf(p, "Only registered players can use the query command.\n");
- return COM_OK;
- }
- if (in_list(p, L_MUZZLE, parray[p].login)) {
- pprintf(p, "You are muzzled.\n");
- return COM_OK;
- }
- if (!printablestring(param[0].val.string)) {
- pprintf(p, "Your message contains some unprintable character(s).\n");
- return COM_OK;
- }
- if (!parray[p].query_log) {
- parray[p].query_log = tl_new(5);
- } else {
- if (tl_numinlast(parray[p].query_log, 60 * 60) >= 2) {
- pprintf(p, "Your can only query twice per hour.\n");
- return COM_OK;
- }
- }
- in_push(IN_SHOUT);
- for (p1 = 0; p1 < p_num; p1++) {
- if (p1 == p)
- continue;
- if (parray[p1].status != PLAYER_PROMPT)
- continue;
- if (player_censored(p1, p))
- continue;
- count++;
- if (parray[p1].highlight) {
- pprintf_prompt(p1, "\n\033[7m%s queries:\033[0m %s\n", parray[p].name,
- param[0].val.string);
- } else {
- pprintf_prompt(p1, "\n%s queries: %s\n", parray[p].name,
- param[0].val.string);
- }
- }
- pprintf(p, "Query heard by %d player(s).\n", count);
- tl_logevent(parray[p].query_log, 1);
- in_pop();
- return COM_OK;
-}
-#endif
-
/* hawk: hacked it to fit ALL persons - quota list is not needed anymore */
int CheckShoutQuota(int p)
{