يسوي قيمه وهميه
: مثال
local marker = createMarker(....)
addEventHandler("onMarkerHit",marker,function (player)
if getElementType(player) == "player" then
setElementData(player,"hits",1)
if getElementData(player,"hits") == 1 then
return outputChatBox("لقد دخلت الماركر من قبل",player,255,0,0,true)
end
end
end)