OnClientPlayerChangeNick: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (See Also for client player events)
Line 15: Line 15:


==Example==  
==Example==  
This disallows changing a nick
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
 
addEventHandler ("onClientPlayerChangeNick", getRootElement(),
function()
  cancelEvent()
  ouputChatbox ("You can't change your nick!", source, 255, 0, 0, false)
end)
</syntaxhighlight>
</syntaxhighlight>



Revision as of 12:46, 10 January 2010

This event is triggered when a player changes his nickname.

Parameters

string oldNick, string newNick
  • oldNick: the nickname the player had before.
  • newNick: the new nickname of the player.

Source

The source of this event is the player that changed his nick

Example

This disallows changing a nick

addEventHandler ("onClientPlayerChangeNick", getRootElement(),
function()
  cancelEvent()
  ouputChatbox ("You can't change your nick!", source, 255, 0, 0, false)
end)

See Also

Client player events


Client event functions