Modules/IRCEcho/ircChangeNick
From Multi Theft Auto: Wiki
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 )