Выводим часы на худ. Для этого нам понадобятся стандартные файлы: config/ui/ui_custom_msgs.xml scripts/bind_stalker.script
1. Создаём файл ваше_название_скрипта.script в папке gamedata/scripts и пишем в него:
function show_time() local hud = get_hud() local cs = hud:GetCustomStatic("hud_show_time") if cs == nil then hud:AddCustomStatic("hud_time_static", true) hud:AddCustomStatic("hud_show_time", true) cs = hud:GetCustomStatic("hud_show_time") end
local time_h = level.get_time_hours() local time_m = level.get_time_minutes() local msg if time_m >= 10 then msg = string.format(" %02d:%02d\n", time_h, time_m) else msg = string.format(" %02d:%02d\n", time_h, time_m) end
if cs ~= nil then cs:wnd():SetText(msg) end end
2. Далее открываем файл ui_custom_msgs.xml в config/ui/ и пишем туда:
3. Открываем файл bind_stalker.script и пишем после: function actor_binder:update(delta) object_binder.update(self, delta) local time = time_global() game_stats.update (delta, self.object)