GetPedTargetCollision: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: __NOTOC__ {{Client function}} This function allows retrieval of where a ped's target is blocked. It will only be blocked if there is an obstacle within a ped's target range. ==Syntax== <...)
 
(Replace to predefined variables.)
 
(5 intermediate revisions by 3 users not shown)
Line 14: Line 14:
Returns three floats, ''x'',''y'',''z'', representing the position where the ped's target collides, or ''false'' if it was unsuccessful.
Returns three floats, ''x'',''y'',''z'', representing the position where the ped's target collides, or ''false'' if it was unsuccessful.


==Example==  
==Example==


This Example draws a line from where the Ped´s Target Starts to the Point where the Targets Collision is.
<syntaxhighlight lang="lua">
function drawline()
  local x, y, z = getPedTargetStart(localPlayer) -- Gets the Point to start From.
  if (x) then -- Checks if there is a Point to start From.
      local sx, sy, sz = getPedTargetCollision(localPlayer) -- Gets the Point where the Targets Collision is.
      dxDrawLine3D(x, y, z, sx, sy, sz) -- Draws the Line
  end
end
addEventHandler("onClientPreRender", root, drawline) -- Adds the Handler.
</syntaxhighlight>


==See Also==
==See Also==
{{Client_ped_functions}}
{{Client_ped_functions}}
[[Category:Needs_Example]]

Latest revision as of 11:12, 21 July 2023

This function allows retrieval of where a ped's target is blocked. It will only be blocked if there is an obstacle within a ped's target range.

Syntax

float float float getPedTargetCollision ( ped targetingPed )

Required Arguments

  • targetingPed: This is the ped whose target collision you wish to retrieve

Returns

Returns three floats, x,y,z, representing the position where the ped's target collides, or false if it was unsuccessful.

Example

This Example draws a line from where the Ped´s Target Starts to the Point where the Targets Collision is.

function drawline()
   local x, y, z = getPedTargetStart(localPlayer) -- Gets the Point to start From.
   if (x) then -- Checks if there is a Point to start From.
      local sx, sy, sz = getPedTargetCollision(localPlayer) -- Gets the Point where the Targets Collision is.
      dxDrawLine3D(x, y, z, sx, sy, sz) -- Draws the Line
   end
end
addEventHandler("onClientPreRender", root, drawline) -- Adds the Handler.

See Also

Shared