Modules/IRCEcho/irc onConnecting: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: __NOTOC__ {{ModuleFunction|IRCEcho}} This is called when the IRC Module is attempting to connect to a server ==Syntax== <syntaxhighlight lang="lua"> function irc_onConnecting ( string IP, int Port ) </c...)
 
No edit summary
Line 18: Line 18:
end
end
</syntaxhighlight>
</syntaxhighlight>
==See also==
{{Modules/IRCEcho/Functions}}

Revision as of 22:36, 9 February 2008


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

This is called when the IRC Module is attempting to connect to a server

Syntax

function irc_onConnecting ( string IP, int Port )

Required arguments

  • IP: The IP/Hostname of the server you are trying to connect to
  • Port: The Port of the IRC Server you are trying to connect to

Example

Example 1: This script can be used from irc, so people can check their rights

function irc_onConnecting( IP, Port )
  	outputServerLog( "Connecting to IRC (" .. IP .. ":" .. tostring( Port ) .. ")" )
end

See also