武装突袭 Wiki
Advertisement
  

点击图片可看到更多讯息

开始使用于

游戏:
Armed Assault
版本:
1.00

描述

描述:
Creates a list of supported operators and type. Each field of array has the format: "x:name" Where x can be:
  • 't' - type
  • 'n' - null operator
  • 'u' - unary operator
  • 'b' - binary operator.
'name' is the operator or type name (in case operator, type of input operands is included). mask parameter can be an empty string, or one of field. In this case, function returns empty array, if operator is not included in the list. Limited wildcard support is available. Type x may be replaced with *, meaning all types. For the mask partial match may be used, like abc*, meaning any operators starting with 'abc' are reported, for example: *:name, t:*, t:name* or *:*.

基本句法

句法:
supportInfo mask
参数:
mask: String
返回值:
Array

范例

范例1:
supportInfo "b:select*"; //Returns ["b:ARRAY select SCALAR","b:ARRAY select BOOL","b:CONFIG select SCALAR"]
范例2:
Return all available commands: _commands = supportInfo "";

额外资讯

多人游戏:
-
也可以看看:
productVersionrequiredVersion

注意事项

此处撰写句法皆为可行用法. 可到官网[1]专页回报错误. 你可以使用讨论页面或是论坛来进行讨论.
新增注意事项 | 如何新增?

Notes

Posted on July 22nd, 2012 - 15:37 (GMT+1)
Lou Montana
With CBA one can create a list of all available SQF commands in the RPT
[supportInfo ""] call cba_fnc_debug;

One can get CBA here.

Bottom Section

Posted on September 24, 2014 - 19:27 (UTC)
Killzone Kid
To get the list of all supported commands in Arma 3 one can simply: {diag_log _x} forEach supportInfo "";
Advertisement