GetPlayerRotation: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:
{{Needs_Checking|Why is this deprecated? [[User:Erorr404|Erorr404]]}}  
{{Needs_Checking|Why is this deprecated? [[User:Erorr404|Erorr404]]}}  
{{Needs_Checking|I believe it is getElementRotation or something.. [[User:Talidan2|Talidan]]}}
{{Needs_Checking|I believe it is getElementRotation or something.. [[User:Talidan2|Talidan]]}}
{{Needs_Checking|There is no getElementRotation, since rotation is different for different elements. [[User:Erorr404|Erorr404]]}}
__NOTOC__
__NOTOC__
==Description==
==Description==

Revision as of 18:18, 17 September 2006

Emblem-important.png This function is deprecated. This means that its use is discouraged and that it might not exist in future versions, but there should be a more generic way to perform what it does.


Dialog-information.png This article needs checking.

Reason(s): Why is this deprecated? Erorr404
Dialog-information.png This article needs checking.

Reason(s): I believe it is getElementRotation or something.. Talidan
Dialog-information.png This article needs checking.

Reason(s): There is no getElementRotation, since rotation is different for different elements. Erorr404

Description

This function returns a float containing the current rotation (in degrees) of the player. Its values lie between 0 and 359. This function can fail if the player is in a car. Use the getVehicleRotation function in this case. If this function does fail, the first argument will be set to 'false'.

Syntax

float getPlayerRotation ( player player )

Required Arguments

  • player: The player whose rotation you want to retrieve.

Example

fRot = getPlayerRotation ( findPlayer ( "someguy" ) )
if ( fRot )
  serverChat ( "Someguy's current rotation: ", fRot, "." )
end

See Also