|
楼主 |
发表于 2008-3-15 21:03:45
|
显示全部楼层
恩 是这2个函数
function DropOrder takes unit pfo returns nothing
call PauseUnit(pfo,true)
call IssueImmediateOrderById(pfo,OrderId("stop"))
call PauseUnit(pfo,false)
endfunction
这个不用说了
function SimError takes player pfH,string pfi returns nothing
local sound lfI=CreateSoundFromLabel("InterfaceError",false,false,false,10,10)
if(GetLocalPlayer()==pfH)then
if(pfi!="")and(pfi!=null)then
call ClearTextMessages()
call DisplayTimedTextToPlayer(pfH,.5,-1.,2.,"|cffffcc00"+pfi+"|r")
endif
call StartSound(lfI)
endif
call KillSoundWhenDone(lfI)
endfunction
这个函数水平如何?当然是IF做的 |
|