BIS fnc setUnitInsignia: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "_{10,} " to "") |
Lou Montana (talk | contribs) m (Text replacement - " *\| *([Cc]omments|COMMENTS|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments \("local" or "global"\)|Multiplayer Effects \("local" or "global"\)|Multiplayer Execution \("server" o...) |
||
Line 1: | Line 1: | ||
{{Function | {{Function | ||
| arma3 | | arma3 | ||
|1.24 | |1.24 | ||
|gr1 = Object Manipulation | |gr1 = Object Manipulation | ||
|arg= global |MParg= Arguments in MP | |arg= global |MParg= Arguments in MP | ||
Line 13: | Line 13: | ||
| Sets unit insignia (e.g., shoulder insignia on soldiers). See [[Arma 3 Unit Insignia]] for more details. This function is global and should work from any client. | | Sets unit insignia (e.g., shoulder insignia on soldiers). See [[Arma 3 Unit Insignia]] for more details. This function is global and should work from any client. | ||
{{Warning | This function must '''not''' be [[remoteExec]]uted.}} | {{Warning | This function must '''not''' be [[remoteExec]]uted.}} | ||
See [[Arma 3 Unit Insignia#Official Insignias | Arma 3 Unit Insignia]] for a list of all official insignias. | See [[Arma 3 Unit Insignia#Official Insignias | Arma 3 Unit Insignia]] for a list of all official insignias. | ||
| [target, className] call [[BIS_fnc_setUnitInsignia]] | | [target, className] call [[BIS_fnc_setUnitInsignia]] | ||
|p1= target: [[Object]] - unit to which the insignia is going to be attached | |p1= target: [[Object]] - unit to which the insignia is going to be attached | ||
|p2= class: [[String]] - CfgUnitInsignia class name to use. Use an empty string to remove the current insignia. | |p2= class: [[String]] - CfgUnitInsignia class name to use. Use an empty string to remove the current insignia. | ||
| [[Boolean]] - Returns [[true]] if successful. | | [[Boolean]] - Returns [[true]] if successful. | ||
|x1= Place insignia: <code>[<nowiki/>[[player]], "111thID"] [[call]] [[BIS_fnc_setUnitInsignia]];</code> | |x1= Place insignia: <code>[<nowiki/>[[player]], "111thID"] [[call]] [[BIS_fnc_setUnitInsignia]];</code> | ||
|x2= Remove insignia: <code>[<nowiki/>[[player]], ""] [[call]] [[BIS_fnc_setUnitInsignia]];</code> | |x2= Remove insignia: <code>[<nowiki/>[[player]], ""] [[call]] [[BIS_fnc_setUnitInsignia]];</code> | ||
| [[Arma 3 Unit Insignia]], [[BIS_fnc_getUnitInsignia]] | | [[Arma 3 Unit Insignia]], [[BIS_fnc_getUnitInsignia]] | ||
}} | }} |
Revision as of 23:48, 17 January 2021
Description
- Description:
- Sets unit insignia (e.g., shoulder insignia on soldiers). See Arma 3 Unit Insignia for more details. This function is global and should work from any client. See Arma 3 Unit Insignia for a list of all official insignias.
- Execution:
- call
- Groups:
- Object Manipulation
Syntax
- Syntax:
- [target, className] call BIS_fnc_setUnitInsignia
- Parameters:
- target: Object - unit to which the insignia is going to be attached
- class: String - CfgUnitInsignia class name to use. Use an empty string to remove the current insignia.
- Return Value:
- Boolean - Returns true if successful.
Examples
- Example 1:
- Place insignia:
[player, "111thID"] call BIS_fnc_setUnitInsignia;
- Example 2:
- Remove insignia:
[player, ""] call BIS_fnc_setUnitInsignia;
Additional Information
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Notes
- Posted on August 9, 2016 2300
- Pierre MGI
- In Arma 3 Unit Insignia, you can read:
Template:Quote
If it is possible to add a cfgUnitInsignia class in a description.ext, please note that the path of the texture differs for server and client in MP environment.
Config.cpp (addon) is more reliable. Description.ext, in this case, should be used for SP mission only.
This function calls setObjectTextureGlobal, which is a broken command in MP (see feedback tracker) August 2016.