isElementWithinMarker | Multi Theft Auto: Wiki Skip to content

isElementWithinMarker

Client-side
Server-side
Shared

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


This function is used to determine if an element is within a marker.

Syntax

isElementWithinMarker ( )

Code Examples

server
local dutymarker = createMarker(126.56, 254.98, 78.9, "cylinder", 2.0, 255, 0, 0, 150)
function duty(thePlayer)
if isElementWithinMarker(thePlayer, dutymarker) then
giveWeapon(thePlayer, 22, 100, 1)
else
outputChatBox("You are not at the right place!", thePlayer, 255, 0, 0)
end
end
addCommandHandler("duty", duty)

See Also

Element Functions