GetPlayerPos

From NPC for VCMP 0.4 Servers
Revision as of 14:21, 22 March 2022 by Habi (talk | contribs) (Created page with "{{Welcome|desc=Gets the position of a player as Vector.|params=<syntaxhighlight lang="lua">playerid</syntaxhighlight> <poem>::playerid : The ID of the player whose position is...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

{{Welcome|desc=Gets the position of a player as Vector.|params=

playerid

playerid : The ID of the player whose position is needed.

|

retvals= The position of the player as Vector|

example=

if( IsPlayerStreamedIn(playerid))
{
     local pos=GetPlayerPos(playerid);
     local msg=format( " Player %d is at %f x units, %f y units and %f z units", playerid, pos.x, pos.y, pos.z);
}
else 
     print( "Player " + playerid + " is not streamed in" );

|

relfuncs=*GetPlayerFacingAngle