Implements

From Botnix

implements

This function is called immediately after the init function listed above. It is used to query your module to determine what events it wants to intercept. It must return one or more function names in an array from the list shown below:

  • after_configure
  • before_configure
  • on_configure
  • on_raw
  • on_privmsg
  • on_notice
  • on_kick
  • on_join
  • on_quit
  • on_nick
  • on_part
  • on_mode
  • on_single_mode
  • on_command
  • on_log
  • on_log_directed

For each function you report as being implemented, you must have a function in your module of identical name which intercepts that event, please see the relevent section for a description of each of these event functions.