OnPlayerNameChange: Difference between revisions

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing
m (Added notes.)
No edit summary
 
Line 25: Line 25:


== Related Functions ==
== Related Functions ==
{{Scripting/Squirrel/Events/Player_Events}}
{{Scripting/Squirrel/Events/Player_Events}}
[[Category:Scripting/Squirrel/Events/Player_Events]]

Latest revision as of 22:16, 30 January 2017

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);
}

Notes

The functions Message and Player.Name were used in in this example. More info about them in corresponding pages.

Related Functions