Modules/IRCEcho/ircMessage

From Multi Theft Auto: Wiki
Revision as of 18:42, 13 January 2008 by Mountnl (talk | contribs) (New page: __NOTOC__ {{ModuleFunction|IRCEcho}} Displays an message to an IRC Channel ==Syntax== <syntaxhighlight lang="lua"> function ircDisconnect ( IRCConnection irc, string channel, string message ) </syntaxhighlight> ==...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


Package-x-generic.png This function is provided by the external module IRCEcho. You must install this module to use this function.

Displays an message to an IRC Channel

Syntax

function ircDisconnect ( IRCConnection irc, string channel, string message )

Required arguments

  • irc: The IRCConnection you wish to disconnect

Example

Example 1: This echo is displaying all the ingame chat to #mta with the IRCConnection stored in pIRC


function ChatToIRC( message, type )
	if (type == 0) then -- Its an normal chatmessage
		ircMessage( pIRC, "#mta", "CHAT:�� " .. getClientName( source ) .. ": " .. message )
	elseif (type == 1) then -- Its an action
		ircMessage( pIRC, "#mta", "ACTION: " .. getClientName( source ) .. ": " .. message )
	elseif (type == 2) then -- Teamchat message
		ircMessage( pIRC, "#mta", "TEAMCHAT: " .. getClientName( source ) .. ": " .. message )
	end
end

addEventHandler( "onPlayerChat", getRootElement(), ChatToIRC )

See also