Все в норме.Добавлено (22 Июнь 2012, 08:14:33)
---------------------------------------------
Можно еще от глобального таймера избавиться:
Code
function Trig_Music_Random_Actions takes nothing returns nothing
local integer x = GetRandomInt(1, 12)
call PlayThematicMusic(udg_Musics[x])
call TimerStart(GetExpiredTimer(), udg_MusicLength[x], false, function Trig_Music_Random_Actions)
endfunction
//Первый запуск:
call TimerStart(CreateTimer(), .0, false, function Trig_Music_Random_Actions)