function Trig_Periodic_Actions takes nothing returns nothing
local location l = Location(0,0)
call DisplayTextToPlayer(GetLocalPlayer(),0,0,I2S(GetHandleId(l)-1000000))
call RemoveLocation(l)
set l = null
endfunction
//===========================================================================
function InitTrig_Periodic takes nothing returns nothing
set gg_trg_Periodic = CreateTrigger( )
call TriggerRegisterTimerEventPeriodic( gg_trg_Periodic, 1.00 )
call TriggerAddAction( gg_trg_Periodic, function Trig_Periodic_Actions )
endfunction