Scripting/Squirrel/Functions/FindPlayer

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

Retrieve a player object from player's name or ID.

Syntax

FindPlayer( identity )

Arguments

  • string/integer identity - The player's name or ID.

Example

     if ( cmd == "goto" )
    {
          local plr = FindPlayer( text );
          
          if ( !plr ) MessagePlayer( "[#ffffff]Player" + text + "' no server .", player );
          else player.Pos = plr.Pos;
          MessagePlayer( "[#ffffff] Teleport to [" + plr.Name + "].", player );
         MessagePlayer( "[#ffffff] Player " + player.Name + " teleport to you.", plr );
    }

Notes

Call onPlayerCommand were used in this example. More info about them in the corresponding pages.

Related Functions

Player Game Functions

These functions exist for compatibility with the R2 Squirrel server.