武装突袭 Wiki
Advertisement
  

點擊圖片可看到更多訊息

開始使用於

遊戲:
Arma 2
版本:
1.00

描述

描述:
Shows info about new, changed or failed task. The text can contain several lines. \n is used to indicate the end of a line.
Arma 3 logo black To maintain Arma 3 visual style, it's recommended to use BIS_fnc_showNotification instead.

基本句法

句法:
taskHint [hintText, [r, g, b, a], icon]
參數:
[hintText, [r, g, b, a], icon]: Array
hintText: String
[r, g, b, a]: Array - format Color
icon: String - possible values: taskNew, taskDone, taskFailed, taskCurrent
返回值:
Nothing

範例

範例1:
taskhint ["Task failed!\nBad job!", [1, 0, 0, 1], "taskFailed"]

額外資訊

多人遊戲:
-
也可以看看:
See also needed

注意事項

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

Notes

Unknown
Here are the BIS colors: taskHint ["New Task!\nHere's your new task!", [1, 1, 1, 1], "taskNew"]; taskHint ["Task Assigned!\nDo this now!", [1, 1, 1, 1], "taskCurrent"]; taskHint ["Task Succeeded!\nGood job!", [0.600000,0.839215,0.466666,1], "taskDone"]; taskHint ["Task Failed!\nBad job!", [0.972549,0.121568,0,1], "taskFailed"]; taskHint ["Task Canceled!\nNever mind!", [0.75,0.75,0.75,1], "taskFailed"];

Bottom Section

Advertisement