.. _plugin:irc: === IRC === | about ----- | :author: FeedBackLoop :contact: FREENODE/#fbf :distribution: core :license: | description ----------- | irc related commands. | commands -------- | :commands in this plugin: jump .. action .. broadcast .. say .. voice .. nicks .. server .. nick .. sendraw | 1) *action .. [handle_action]* :description: arguments: - make the bot send an action string. :permissions: ACTION .. OPER :code: :ref:`fbf.plugs.core.irc_action_command`. :examples: :: ;action #test yoo dudes done - action 2) *broadcast .. [handle_broadcast]* :description: arguments: - broadcast txt to all joined channels. :permissions: OPER :code: :ref:`fbf.plugs.core.irc_broadcast_command`. :examples: :: ;broadcast good morning broadcasting done 3) *jump .. [handle_jump]* :description: arguments: - change server. :permissions: OPER :code: :ref:`fbf.plugs.core.irc_jump_command`. :examples: :: ;jump localhost 6667 changing to server localhost done - jump 4) *nick .. [handle_nick]* :description: arguments: - change bot's nick. :permissions: OPER :code: :ref:`fbf.plugs.core.irc_nick_command`. :examples: :: ;nick mekker changing nick to mekker done - nick 5) *nicks .. [handle_nicks]* :description: no arguments - return nicks on channel. :permissions: OPER .. USER :code: :ref:`fbf.plugs.core.irc_nicks_command`. :examples: :: ;nicks nicks only works on irc bots 6) *say .. [handle_say]* :description: aguments: - make the bot say something. :permissions: SAY .. OPER :code: :ref:`fbf.plugs.core.irc_say_command`. :examples: :: ;say #test good morning done - say 7) *sendraw .. [handle_sendraw]* :description: arguments: - send raw text to the server. :permissions: OPER .. SENDRAW :code: :ref:`fbf.plugs.core.irc_sendraw_command`. :examples: :: ;sendraw PRIVMSG #test :yo! sending raw txt done - sendraw 8) *server .. [handle_server]* :description: no arguments - show the server to which the bot is connected. :permissions: OPER :code: :ref:`fbf.plugs.core.irc_server_command`. :examples: :: ;server localhost 9) *voice .. [handle_voice]* :description: arguments: - give voice. :permissions: OPER :code: :ref:`fbf.plugs.core.irc_voice_command`. :examples: :: ;voice test voice only works on irc bots