|
本帖最后由 hmmm 于 2015-4-1 09:57 编辑
function DemoTimer takes nothing returns nothing
call PingMinimap( 0, 0, 1 )
call DisplayTimedTextToForce( bj_FORCE_ALL_PLAYERS, 30, GetPlayerName(Player(1)) )
endfunction
function DemoOrderAction takes nothing returns nothing
call DisplayTimedTextToForce( bj_FORCE_ALL_PLAYERS, 30, GetPlayerName(GetTriggerPlayer()) )
call TimerStart(udg_DemoTimer1,0.2,true,function DemoTimer)
call DisplayTimedTextToForce( bj_FORCE_ALL_PLAYERS, 30, GetPlayerName(Player(0)) )
endfunction
下面这个函数的三个DisplayTimedTextToForce都可以正常作用,但是DemoTimer里的PingMinimap和DemoTimer真是怎么也没作用
哭QAQ
新建一张地图这样试了下完全没问题,为什么在老地图里就是不行啊。。。 |
|