addEventHandler(\"onPlayerJoin\", root, function()
setElementData(source, \"playerTeam\", \"csapatNév\")
end)
addCommandHandler(\"parancs\", function(source)
if isElementInRangeOfPoint(source, 1544.7, -1630.8, 13.3, 10) then
if getElementData(source, \"playerTeam\") == \"csapatNév\" then
-- Kód
else
outputChatBox(\"Nem vagy a megfelelő csapatban!\")
end
else
outputChatBox(\"Nem vagy a megfelelő helyen!\")
end
end)
function isElementInRangeOfPoint(element, pointX, pointY, pointZ, radius)
local position = Vector3(getElementPosition(element))
return ((pointX-position.x)^2 + (pointY-position.y)^2 + (pointZ-position.z)^2)^0.5 <= radius
end