|
发表于 2011-4-16 23:47:16
|
显示全部楼层
函数的标准写法是
[codes=galaxy]
bool TriggerFunc (bool testConditions, bool runActions) {
    if (testConditions) {
        if (<conditions fail>) {
            return false;
        }
    }
    if (!runActions) {
        return true;
    }
    <do actions>
    return true;
}
[/codes]
native void     TriggerExecute (trigger t, bool testConds, bool waitUntilDone);
这个API允许你执行一个函数,第二个参数的意思是 是否执行条件判断。 |
|