OnPlayerNameChange

From Vice City Multiplayer
Revision as of 20:19, 1 July 2015 by ProsuWANTED (talk | contribs) (Created the page.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing

Called when a player changes his name.

Syntax

function OnPlayerNameChange( player, oldName, newName )

Arguments

  • Player player - The player that changed his name
  • string oldName - Old name (before the player changed his name)
  • string newName - new name (after the player changed his name)

Example

function onPlayerNameChange( player, oldName, newName )
{
	Message(oldName + " is now known as " + newName);
}

Related Functions