Squirrel/Server/Functions/Players/Name

From Liberty Unleashed Wiki
(Difference between revisions)
Jump to: navigation, search
m (Redirect issue fix)
Line 19: Line 19:
 
=== Notes ===
 
=== Notes ===
  
The function [[Squirrel/Functions/Misc/Message|Message]] and call [[Squirrel/Events/Player/OnPlayerJoin|OnPlayerJoin]] were used in in this example. More info about them in corresponding pages.
+
The function [[Squirrel/Functions/Misc/Message|Message]] and call [[Squirrel/Server/Events/Player/onPlayerJoin|OnPlayerJoin]] were used in in this example. More info about them in corresponding pages.
  
 
== Related Functions ==
 
== Related Functions ==
  
 
{{Squirrel/Functions/Players}}
 
{{Squirrel/Functions/Players}}

Revision as of 18:16, 15 January 2012

Home   |   Squirrel Scripting   |   Server Functions   |   Server Events   |   Client Functions   |   Client Events

This function returns player's name.

Syntax

  1. string player.Name

Example

This example will send a join message when a player joins the server.

  1.  
  2. function OnPlayerJoin( player )
  3. {
  4. Message( "*** " + player.Name + " has joined the server." );
  5. }
  6.  

Notes

The function Message and call OnPlayerJoin were used in in this example. More info about them in corresponding pages.

Related Functions

Template:Squirrel/Functions/Players

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox