اطن ما في حاجه للداتا
local Keys = {"F1", "F2", "F3", "F4", "F5", "F6", "F7", "F8", "F9", "F10", "F11", "F12"}
local war = createMarker(2490.8999023438, -1668.3000488281, 13.300000190735, "cylinder", 50, 255, 0, 0, 0)
addEventHandler("onClientKey", root,
function(key , press)
if press then
for _,keys in ipairs(Keys) do
if key == keys and isElementWithinMarker(localPlayer, war) then
cancelEvent()
outputChatBox("لايمكنك استعمال هذا الزر في ساحة الحرب",255,0,0,true)
end
end
end
end
)