local sampev = require('lib.samp.events')
local font = renderCreateFont("Arial", 10, 14)
function main()
while not isSampAvailable() do wait(200) end
while true do
wait(0)
for id = 0, 2048 do
local result = sampIs3dTextDefined(id)
if result then
local text, color, posX, posY, posZ, distance, ignoreWalls, playerId, vehicleId = sampGet3dTextInfoById(id)
if text:find("Спавн транспорта через .+ секунд") then
renderFontDrawText(font, text, 100, 800, -1)
end
end
end
end
end