|
[trigger]lean 04
事件
时间 - 当游戏逝去 2.00 秒
条件
动作
自定义代码: call JassCreateUnit(10)
[/trigger]
[jass]
function JassCreateUnite takes integer Num returns nothing
local location point
local integer i = 0
set point = GetRectCenter(GetplayableMapRect())
loop
set i = i+1
exitwhen i>Num
call CreateNUnitsAtLoc( 1,'hfoo',Player(0),point,bj_UNIT_FACING)
call polledWait(2)
endloop
call RemoveLocation(point)
set point = null
endfunction
[/jass]
我是新手,刚学2天。我是按照教程写的,但是...按测试地图时总是检查有错误,到底错误在哪里。
还有谁能详细解释一下 call怎么用 |
|