|
[codes=jass]function DisplayTextToForce takes force toForce,string message returns nothing
if (IsPlayerInForce(GetLocalPlayer(), toForce)) then
call DisplayTextToPlayer(GetLocalPlayer(), 0, 0, message)
endif
endfunction[/codes]
这个函数非常常用
触发器中
游戏分类里的第一条 -send message to all player
使用的就是这个函数
但是这里面可以看到调用了LocalPlayer
嗯,这个LocalPlayer和经常提到的会引起掉线的本地玩家是一个东西么?
求教了 |
|