EVENT_CHAN_KICK
Someone has just been kicked from a channel.
av[0] The nick of the user that has been kicked.
av[1] The channel the user has been kicked from.
could you add following parameters please?
av[2] Kickmessage
av[3] the name of the user who used the /kick command
botserv.c:651:
change
send_event(EVENT_CHAN_KICK, 2, user->nick, av[0]);to:
send_event(EVENT_CHAN_KICK, 4, user->nick, av[0], av[1] ? av[1] : " " , source);(or something like this)
thanks :-)