function onSpawned(x, y, z)
if isCoordsInArea2d(x, y, 1751, -1884, 1810, -1941) then -- координаты ждлс, поменяешь на свои.
runCommand('!route piska 1')
end
end
function isCoordsInArea2d(x, y, ax, ay, bx, by)
if x > ax and x < bx and y < ay and y > by then
return true
end
return false
end