local timer = {
id = nil,
text = "N/A"
}
function sampev.onShowTextDraw(textdrawId, data)
if (not timer.id and ...) then -- вместо ... добавь проверку на нужный тебе текстдрав
timer.id, timer.text = textdrawId, data.text
end
end
function sampev.onTextDrawSetString(id, text)
if (timer.id and timer.id == id) then
timer.text = text
end
end