From f14c4c6e1c603640792e09164cb0ed7be9dae32f Mon Sep 17 00:00:00 2001 From: Zido Date: Mon, 17 Apr 2006 23:03:58 +0000 Subject: - Added @users command to the IRC Bot. Checks no. online users. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6143 54d463be-8e91-2dee-dedb-b68131a5f0ec --- Changelog-Trunk.txt | 1 + src/map/irc.c | 29 +++++++++++++++++++++-------- 2 files changed, 22 insertions(+), 8 deletions(-) diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index fc8d9e464..56d3eb575 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. 2006/04/17 + * Added @users to the IRC Bot, outputs the # of users online. [Zido] * The baby check when wearing a tuxedo/dress now works [Zido] * Fixed pet being incorrectly removed when it had intimacy 0. [Skotlex] * Some cleanup in the TK_RUN related code. [Skotlex] diff --git a/src/map/irc.c b/src/map/irc.c index 72b9dc8a4..4712acf3f 100644 --- a/src/map/irc.c +++ b/src/map/irc.c @@ -210,6 +210,10 @@ void irc_parse_sub(int fd, char *incoming_string) char cmd1[256]; char cmd2[256]; + char cmdname[256]; + char cmdargs[256]; + + int users=0; memset(source,'\0',256); memset(command,'\0',256); @@ -219,6 +223,8 @@ void irc_parse_sub(int fd, char *incoming_string) memset(cmd1,'\0',256); memset(cmd2,'\0',256); + memset(cmdname,'\0',256); + memset(cmdargs,'\0',256); sscanf(incoming_string, ":%255s %255s %255s :%4095[^\r\n]", source, command, target, message); if (source != NULL) { @@ -263,15 +269,22 @@ void irc_parse_sub(int fd, char *incoming_string) else if((strcmpi(target,irc_channel)==0)||(strcmpi(target,irc_channel+1)==0)) { // Broadcast [Zido] (Work in Progress) - if((strcmpi(command,"privmsg")==0)&&(sscanf(message,"@kami %255[^\r\n]",cmd1)>0)&&(target[0]=='#')) { - if(get_access(source_nick)0)&&(target[0]=='#')) { + if(strcmpi(cmdname,"kami")==0) { + if(get_access(source_nick)