diff options
author | Haru <haru@dotalux.com> | 2013-08-06 21:34:31 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2013-08-12 17:14:51 +0200 |
commit | de6602f25485d0ba4c02426ab982fa8ff8a224ae (patch) | |
tree | 6b085227221b551215a15bee287bdcffba8610f5 /src/map/irc-bot.c | |
parent | ca1f74fcd9974a8c06dee91b78a49fcb8d2b5095 (diff) | |
download | hercules-de6602f25485d0ba4c02426ab982fa8ff8a224ae.tar.gz hercules-de6602f25485d0ba4c02426ab982fa8ff8a224ae.tar.bz2 hercules-de6602f25485d0ba4c02426ab982fa8ff8a224ae.tar.xz hercules-de6602f25485d0ba4c02426ab982fa8ff8a224ae.zip |
Added support for Nick Server GHOST command
Credits to Yommy for the idea
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/irc-bot.c')
-rw-r--r-- | src/map/irc-bot.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/irc-bot.c b/src/map/irc-bot.c index fe7bf4bd4..b17015b66 100644 --- a/src/map/irc-bot.c +++ b/src/map/irc-bot.c @@ -77,6 +77,9 @@ int irc_join_timer(int tid, unsigned int tick, int id, intptr_t data) { if( hChSys.irc_nick_pw[0] != '\0' ) { sprintf(send_string, "PRIVMSG NICKSERV : IDENTIFY %s", hChSys.irc_nick_pw); ircbot->send(send_string); + if( hChSys.irc_use_ghost ) { + sprintf(send_string, "PRIVMSG NICKSERV : GHOST %s %s", hChSys.irc_nick, hChSys.irc_nick_pw); + } } sprintf(send_string, "JOIN %s", hChSys.irc_channel); |