|
- function test takes nothing returns nothing
- call BJDebugMsg("做了一些不影响同步的事情")
- endfunction
- function aaaa takes nothing returns nothing
- local timer tm = CreateTimer()
- if GetLocalPlayer()==Player(0) then
- call TimerStart(tm, 1.00, true, function test)
- else
- call TimerStart(tm, 10000, true, function test)
- endif
- endfunction
复制代码
这段代码,各位认为运行function aaaa后会如何?在以前是绝对的掉线
然而在1.23,我把刷新市场30秒间隔的timer改成了1秒,照样不掉线。。
只要不做影响同步的事情。每30次执行原函数内容,其他29次执行自定义。
太诡异了。 |
|