dimka02 42 Опубликовано 20 Июня 2015 Знающий Отключить часы на худе можно в ogse.script, в функции show_time() Поделиться этим сообщением Ссылка на сообщение
dimka02 42 Опубликовано 20 Июня 2015 Знающий Оригинальная функция выглядит так. -- Выводим время на HUD function show_time()local hud = get_hud()-- hud:AddCustomStatic("hud_time_tex", true)local time_h = sr_timer.time2str(level.get_time_hours())local time_m = sr_timer.time2str(level.get_time_minutes())hud:AddCustomStatic("hud_timer_text1", true)cs = hud:GetCustomStatic("hud_timer_text1"):wnd()cs:SetText(time_h..":"..time_m)end Чтобы отключить часы функция должна выглядить так. local time_stop = 0-- Выводим время на HUDfunction show_time()if time_stop==0 thenreturnendlocal hud = get_hud()-- hud:AddCustomStatic("hud_time_tex", true)local time_h = sr_timer.time2str(level.get_time_hours())local time_m = sr_timer.time2str(level.get_time_minutes())hud:AddCustomStatic("hud_timer_text1", true)cs = hud:GetCustomStatic("hud_timer_text1"):wnd()cs:SetText(time_h..":"..time_m)end 1 Поделиться этим сообщением Ссылка на сообщение