Logot nem tudok clans.hu nem ír és a social systemben mit tegyek?
Meg lenne még 2 kérdésem.
Nem jelenik meg a kapu miért?
Ezt a kaput hogy bírom megcsinálni hogy csak egy bizonyos frakció nyissa?
local hatar = createObject(980, 2441.1000976563, -1549.8000488281, 25.799999237061, 0, 0, 90) --Ez helyezi le
local open = false
local which = 0
-- Gate code
function useHatarGate(thePlayer) --Ez nyitja ki
local x, y, z = getElementPosition(thePlayer)
local distance1 = getDistanceBetweenPoints3D(2431.1999511719, -1559.8000488281, 23.60000038147, 0, 0, 90) --Melyik ponttól érzékelje a hatótávolságot
if (distance1<=10) and (open==false) then
open = true
which = 1
outputChatBox(\"Sorompó nyitva!\", thePlayer, 0, 255, 0)
moveObject(hatar, 1000, 2441.1000976563, -1539.1999511719, 25.799999237061, 0, 0, 90)
setTimer(closePDSideGarageGate, 5000, 1, thePlayer)
end
end
addCommandHandler(\"gate\", useHatarGate)
function closeHatarGate(thePlayer) --Ez csukja be
setTimer(resetState7, 1000, 1)
if (which==1) then
which = 0
moveObject(hatar, 1000, 2441.1000976563, -1549.8000488281, 25.799999237061, 0, 0, 90)
end
end
function resetState7()
open = false
end
<meta>
<scipt src=\"hatar.lua\" type=\"server\" />
</meta>