Modules/IRCEcho/ircChangeNick

From Multi Theft Auto: Wiki
Revision as of 18:53, 13 January 2008 by Mountnl (talk | contribs) (New page: __NOTOC__ {{ModuleFunction|IRCEcho}} Changes the name of the IRCConnection ==Syntax== <syntaxhighlight lang="lua"> function ircChangeNick ( IRCConnection irc, string newnick ) </syntaxhighlight> ===Required argume...)
(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.

Changes the name of the IRCConnection

Syntax

function ircChangeNick ( IRCConnection irc, string newnick )

Required arguments

  • irc: The IRCConnection you wish to disconnect
  • newnick: The new nickname

Example

Example 1: This example adds the command "ircname". That command can change the IRCConnection's name


function changeIrcName( thePlayer, command, newname )
	ircChangeNick( pIRC, newname )
end

addCommandHandler( "ircname", changeIrcName )

See also