Добавление Часов на худ ЧН
Открываешь scripts\bind_stalker
=================================
Находишь в самом низу end и выше его копируешь этот код (если внизу 2 раза end, то вместо нижнего):
---------------------------------------------------------------------------------------------------------------------
function show_time()
local hud = get_hud()
local cs = hud:GetCustomStatic("hud_show_time")
if cs == nil then
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.0%d\\n", time_h, time_m)
end
if cs ~= nil then
cs:wnd():SetText(msg)
end
end
В конце должно быть два end
============================
2.Далее открываешь config\ui\ui_custom_msgs
===========================================
Находишь в самом низу и выше его копируешь этот код:
ui_watch_back
В конце должно быть
Внимание: ожидайте |
|
до открытия ссылки |
Добавил: ferr-um
18.07.2012 Просмотров: 4747
Комментарии