This commit is contained in:
2023-12-22 22:53:54 -05:00
commit 2821b7e9a1
45 changed files with 8425 additions and 0 deletions

13
nickserv.c Executable file
View File

@@ -0,0 +1,13 @@
#include <stdio.h>
#include <string.h>
#include "config.h"
extern char buf[],sockbuf[], *token[];
extern int sevsck,botsck;
nickserv(char *target)
{
sprintf(buf,":%s NOTICE %s :You are using a registered nick\n",
NICKSERV,target); writeln(sevsck,buf);
sprintf(buf,"433 %s :Registered Nickname Please Choose another\n",
target); writeln(sevsck,buf);
}