武装突袭 Wiki
Advertisement
Introduced with Arma 3 version 0.56
  Effects of this scripting command are not broadcasted over the network and remain local to the client the command is executed on

點擊圖片可看到更多訊息

開始使用於

遊戲:
Arma 3
版本:
0.56

描述

描述:
Compile expression and makes it final, preventing it from:

基本句法

句法:
Code = compileFinal expression
參數:
expression: String
返回值:
Code

範例

範例1:
myCode = compileFinal "a = a + 1"; call myCode;
//--- Repeated compile won't have any effect myCode = compileFinal "a = a + 2";
//--- Duplicate code will be final as well myDuplicateCode = myCode;

額外資訊

多人遊戲:
-
也可以看看:
compilecallspawn

注意事項

此處撰寫句法皆為可行用法. 可到官網[1]專頁回報錯誤. 你可以使用討論頁面或是論壇來進行討論.
新增注意事項 | 如何新增?

Notes

Posted on August 14, 2013
AgentRev
When broadcasting a compileFinal'ed variable using publicVariable or its variants, the variable also becomes final on the other client(s) and/or the server. Also, compileFinal does not prevent event handlers from being removed or overwritten.

Bottom Section

Advertisement