Code
function Trig_Initialization_TimerEx takes nothing returns nothing
local timer t=GetExpiredTimer()
set udg_Integer = udg_Integer + 1
call DisplayTextToForce( GetPlayersAll(), I2S(udg_Integer) )
call PauseTimer(t)
call DestroyTimer(t)
set t=null
endfunction
function Trig_Initialization_Actions takes nothing returns nothing
local timer t=CreateTimer()
call TimerStart(t, 5, false, function Trig_Initialization_TimerEx)
set t=null
endfunction
Я дико туплю или тут творится, что-то мистическое! Почему function Trig_Initialization_TimerEx запускается 2 раза подряд?
Выводится текст:
1
2