You are viewing an older version of the site. Click here to view the latest version of this page. (This may be a dead link, if so, try the root page of the docs here.)

pfacing

Gets or sets the direction the player is facing.

Vital Info

Name pfacing
Returns mixed
Usages F
yaw, pitch
player, F
player, yaw, pitch
player
<none>
Throws com.commandhelper.PlayerOfflineException
ms.lang.RangeException
ms.lang.CastException
ms.lang.NotFoundException
Since 3.1.3
Restricted
Yes
Optimizations None
When using the first variation, expects an integer 0-3, which will set the direction the player faces using their existing pitch (up and down) but sets their yaw (left and right) to one of the cardinal directions, as follows: 0 - South, 1 - West, 2 - North, 3 - East, which corresponds to the directions given by F when viewed with F3. In the second variation, specific yaw and pitches can be provided. If the player is not specified, the current player is used. If just the player is specified, that player's yaw and pitch are returned as an array, or if no arguments are given, the current player's yaw and pitch are returned as an array. The function returns void when setting the values. (Note that while this function looks like it has ambiguous arguments, players cannot be named numbers.) A note on numbers: The values returned by the getter will always be as such: pitch will always be a number between 90 and -90, with -90 being the player looking up, and 90 being the player looking down. Yaw will always be a number between 0 and 359.9~. When setting the facing, pitch must be a number between -90 and 90, and yaw may be any number. If the number given is not between 0 and 359.9~, it will be normalized first. 0 is due south, 90 is west, etc.

Usages

pfacing(F)
pfacing(yaw, pitch)
pfacing(player, F)
pfacing(player, yaw, pitch)
pfacing(player)
pfacing(<none>)

Examples

Sorry, there are no examples for this function! :(

Find a bug in this page? Edit this page yourself, then submit a pull request. (Note this page is automatically generated from the documentation in the source code.)

··