- Joined
- Oct 11, 2012
- Messages
- 711
Hey guys, why the following does not work? Thanks a lot.
JASS:
scope example
keyword B
//private keyword B does not work neither
private function A takes nothing returns nothing
local timer t = CreateTimer()
call TimerStart(t,period,true,function B)
set t = null
endfunction
private function B takes nothing returns nothing
local timer t = GetExpiredTimer()
.....
set t = null
endfunction
endscope