......
对了
function lie takes nothing returns nothing
call DisplayTimedTextToPlayer(GetLocalPlayer(),0,0,1,"Everguo is handsome!")
endfunction
function text takes nothing returns nothing
local timer tm=CreateTimer()
call TimerStart(tm,1,true,function lie)
set tm=null
endfunction
这个TIMER里的 0,0,1什么意思?
call DisplayTimedTextToPlayer(GetLocalPlayer(),0,0,1,"Everguo is handsome!")
这句吗??
这个的意思是对本地玩家在屏幕位移(0,0)位置显示Everguo is handsome!这句话,持续1秒钟
0,0,1这三个参数,前两个0是显示位置的x,y坐标,一般设置为0就好了,1是持续时间