Modules/IRCEcho/ircChangeNick

From Multi Theft Auto: Wiki
Revision as of 18:57, 13 January 2008 by Mountnl (talk | contribs)
(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
  • 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