|
我需要实现的是 让单位到达一个location,然后,等单位走到那个location之后再继续运行下面的代码。
[jass]
IssuePointOrderLoc(uUnit,"attack",loc);
[/jass]
我测试失败的方法是:
[jass]
IssuePointOrderLoc(uUnit,"attack",loc);
while(GetLocationX(GetUnitLoc(u))!=GetLocationX(loc) || GetLocationY(GetUnitLoc(u))!=GetLocationY(loc))
{
 itemp+=1;
}
[/jass]
这样做的话,运行完IssuePointOrderLoc之后,下面的代码就不再继续运行了。
使用  TriggerSleepAction和PolledWait也是同样的问题。
不知道有没有专门的等待命令。 |
|