GetLocalPlayer: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
 
(10 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Client function}}
__NOTOC__
__NOTOC__
This function gets the player element of the client running the current script.
This function gets the player element of the client running the current script.  
 
{{New feature/item|3.0110|1.1||
You should use predefined variable '''localPlayer''' instead of typing getLocalPlayer() for better readability.
}}


==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
player getLocalPlayer ()
player getLocalPlayer ( )
</syntaxhighlight>
</syntaxhighlight>


===Returns===
===Returns===
Returns a [[player]] element.
Returns the local [[player]] element.


==Example==  
==Example==  
This clientside function outputs the player's current location to the console.
'''Example 1:''' This client side function outputs the player's current location to the console.
<syntaxhighlight lang="lua">
function outputLocalPlayerPosition()
-- get the local player's position
local px, py, pz = getElementPosition(localPlayer)
-- output it to the console
outputConsole("Your location: "..px.." "..py .." "..pz)
end
</syntaxhighlight>
 
'''Example 2:''' This client side script makes the local player's camera flash red after being hit.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function outputPOS ()
function flashRed()
--we get the player element
-- fade out the local player's camera to red during a second
local player = getLocalPlayer ()
fadeCamera(false, 1.0, 255, 0, 0)
--we get the player's position
-- set a 500 ms (0.5 sec) timer to fade it back in before it has completely faded out
local px, py, pz = getPlayerPosition ( player )
setTimer(fadeCamera, 500, 1, true, 1.0)
--we output it to the console
outputConsole ( "Your location: "..px.." "..py.." "..pz )
end
end
end
-- we attach our 'flashRed' function to be a handler of "onClientPlayerDamage" when its source (that is, the hit player) is the local player
addEventHandler("onClientPlayerDamage", localPlayer, flashRed)
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{Client_player_functions}}
{{Client_player_functions}}
[[ru:getLocalPlayer]]

Latest revision as of 16:19, 8 April 2024

This function gets the player element of the client running the current script.

You should use predefined variable localPlayer instead of typing getLocalPlayer() for better readability.

Syntax

player getLocalPlayer ( )

Returns

Returns the local player element.

Example

Example 1: This client side function outputs the player's current location to the console.

function outputLocalPlayerPosition()
	-- get the local player's position
	local px, py, pz = getElementPosition(localPlayer)
	-- output it to the console
	outputConsole("Your location: "..px.." "..py .." "..pz)
end

Example 2: This client side script makes the local player's camera flash red after being hit.

function flashRed()
	-- fade out the local player's camera to red during a second
	fadeCamera(false, 1.0, 255, 0, 0)
	-- set a 500 ms (0.5 sec) timer to fade it back in before it has completely faded out
	setTimer(fadeCamera, 500, 1, true, 1.0)
end
-- we attach our 'flashRed' function to be a handler of "onClientPlayerDamage" when its source (that is, the hit player) is the local player
addEventHandler("onClientPlayerDamage", localPlayer, flashRed)

See Also

Shared