BIS fnc setUnitInsignia: Difference between revisions
Jump to navigation
Jump to search
m (note modified, fnc has global effect rather than local effect.) |
(see also & note) |
||
Line 38: | Line 38: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| |= See also | | [[Arma 3 Unit Insignia]] |= See also | ||
}} | }} | ||
Line 52: | Line 52: | ||
This would apply insignia "111thID" to player unit on all machines (incl. Join In Progress): | This would apply insignia "111thID" to player unit on all machines (incl. Join In Progress): | ||
<code>[[ [[player]], "111thID"], "[[BIS_fnc_setUnitInsignia]]", nil, [[true]], [[true]]] [[call]] [[BIS_fnc_MP]];</code> | <code>[[ [[player]], "111thID"], "[[BIS_fnc_setUnitInsignia]]", nil, [[true]], [[true]]] [[call]] [[BIS_fnc_MP]];</code> | ||
<dd class="notedate">Posted on July 29, 2014 1500 | |||
<dt class="note>'''[[User:ffur2007slx2_5|ffur2007slx2_5]]''' | |||
<dd class="note">(A3 1.24)Predefined textures that can be used directly in game. | |||
{| class="wikitable sortable" | |||
! Img | |||
! Code | |||
! Note | |||
|- | |||
| [[File:111thID ca.png|50px]] | |||
| <code>[this,"111thID"] [[call]] [[BIS_fnc_setUnitInsignia]];</code> | |||
| NATO division which dispatched one brigade to liberate Altis in Episode 3 - Win. | |||
|- | |||
| [[File:bi ca.png|50px]] | |||
| <code>[this,"BI"] [[call]] [[BIS_fnc_setUnitInsignia]];</code> | |||
| [[Bohemia Interactive]] glyph | |||
|- | |||
| [[File:curator ca.png|50px]] | |||
| <code>[this,"Curator"] [[call]] [[BIS_fnc_setUnitInsignia]];</code> | |||
| [[Zeus]] eye | |||
|- | |||
| [[File:gryffinRegiment ca.png|50px]] | |||
| <code>[this,"GryffinRegiment"] [[call]] [[BIS_fnc_setUnitInsignia]];</code> | |||
| CSAT regiment that occupied Altis in episodes 2 and 3 of the Arma 3 campaign. | |||
|- | |||
| [[File:manw ca.png|50px]] | |||
| <code>[this,"MANW"] [[call]] [[BIS_fnc_setUnitInsignia]];</code> | |||
| Make Arma Not War competition logo | |||
|- | |||
| [[File:TFAegis ca.png|50px]] | |||
| <code>[this,"TFAegis"] [[call]] [[BIS_fnc_setUnitInsignia]];</code> | |||
| Combined force of NATO and AAF which operated on Stratis and Altis at the beginning of Episode 1 and in the Bootcamp campaign. | |||
|} | |||
<!-- Note Section END --> | <!-- Note Section END --> | ||
</dl> | </dl> |
Revision as of 08:02, 29 July 2014
Description
- Description:
/* Description: Set unit inisgnia (e.g., should insignia on soldiers) Parameter(s): 0: OBJECT 2: STRING - CfgUnitInsignia class Returns: BOOL - true if insignia was set */
(Placeholder description extracted from the function header by BIS_fnc_exportFunctionsToWiki)- Execution:
- call
- Groups:
- Uncategorised
Syntax
- Syntax:
- Syntax needed
- Return Value:
- Return value needed
Examples
- Example 1:
Additional Information
- See also:
- Arma 3 Unit Insignia
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 July 28, 2014 - 12:58 (UTC)
- Sxp2hiiigh
- Multiplayer locality (As of Arma 3 v1.24):
Effect of this function is global, it should be executed consistently for JIP otherwise insignias are gone after respawn, so they have to be reapplied afterwards (On all machines again).
This would apply insignia "111thID" to player unit on all machines (incl. Join In Progress):[[ player, "111thID"], "BIS_fnc_setUnitInsignia", nil, true, true] call BIS_fnc_MP;
- Posted on July 29, 2014 1500
- ffur2007slx2_5
- (A3 1.24)Predefined textures that can be used directly in game.
Img Code Note [this,"111thID"] call BIS_fnc_setUnitInsignia;
NATO division which dispatched one brigade to liberate Altis in Episode 3 - Win. [this,"BI"] call BIS_fnc_setUnitInsignia;
Bohemia Interactive glyph [this,"Curator"] call BIS_fnc_setUnitInsignia;
Zeus eye [this,"GryffinRegiment"] call BIS_fnc_setUnitInsignia;
CSAT regiment that occupied Altis in episodes 2 and 3 of the Arma 3 campaign. [this,"MANW"] call BIS_fnc_setUnitInsignia;
Make Arma Not War competition logo [this,"TFAegis"] call BIS_fnc_setUnitInsignia;
Combined force of NATO and AAF which operated on Stratis and Altis at the beginning of Episode 1 and in the Bootcamp campaign.
Bottom Section