GetElementRadius

From Multi Theft Auto: Wiki
Revision as of 12:14, 25 May 2010 by EAi (talk | contribs)
Jump to navigation Jump to search

This function gets the radius from a element.

Syntax

float getElementRadius ( element theElement )

Required Arguments

  • theElement: The element.

Returns

Returns float as radius, false otherwise.

Example

This example shows how to get the radius of a player

function myCommandHandler(source, command)
	local myradius = getElementRadius ( source )
	if (myradius) then
		outputChatBox("Radius of my player is: " .. myradius)
	else
		outputChatBox("Error")
	end	
end

addCommandHandler("getmyradius", myCommandHandler)

See Also