GetPlayerTargetEnd: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
 
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client function}}
{{Client function}}
{{Deprecated|getPedTargetEnd|}}
{{Deprecated|getPedTargetEnd}}
{{Needs_Example}}


This function allows retrieval of the position where a players target range ends, when he is aiming with a weapon.
This function allows retrieval of the position where a players target range ends, when he is aiming with a weapon.
Line 8: Line 7:
==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
float float float getPlayerTargetEnd ( player targetingPlayer )
float, float, float getPlayerTargetEnd ( player targetingPlayer )
</syntaxhighlight>  
</syntaxhighlight>  


Line 19: Line 18:
==Example==  
==Example==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
addEventHandler("onClientPlayerTarget", getRootElement(),
addEventHandler("onClientPlayerTarget", localPlayer,
     function()
     function()
         if source == localPlayer then
         local endPosition = Vector3(getPlayerTargetEnd(source))
            local endPosition = { getPlayerTargetEnd(source) }
        outputChatBox("your target ends at point (" .. endPosition.x .. ", " .. endPosition.y .. ", " .. endPosition.z .. ")")
            outputChatBox("your target ends at point ( "..endPosition[1]..", "..endPosition[2]..", "..endPosition[3].." )", 255, 255, 255)
        end
     end
     end
)
)

Latest revision as of 17:45, 23 July 2018

Emblem-important.png This function is deprecated. This means that its use is discouraged and that it might not exist in future versions.

Please use getPedTargetEnd instead.


This function allows retrieval of the position where a players target range ends, when he is aiming with a weapon.

Syntax

float, float, float getPlayerTargetEnd ( player targetingPlayer )

Required Arguments

  • targetingPlayer: The player who is targeting whose target end you wish to retrieve

Returns

Returns three floats, x,y,z, representing the position where the player's target ends according to his range, or false if it was unsuccessful.

Example

addEventHandler("onClientPlayerTarget", localPlayer,
    function()
        local endPosition = Vector3(getPlayerTargetEnd(source))
        outputChatBox("your target ends at point (" .. endPosition.x .. ", " .. endPosition.y .. ", " .. endPosition.z .. ")")
    end
)

See Also