setFlagTexture: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
(40 intermediate revisions by 18 users not shown)
Line 1: Line 1:
[[Category:Scripting Commands|SETFLAGTEXTURE]]
{{Command|Comments=
[[Category:Scripting Commands OFP 1.96|SETFLAGTEXTURE]]
____________________________________________________________________________________________
[[Category:Scripting Commands OFP 1.46|SETFLAGTEXTURE]]
[[Category:Scripting Commands ArmA|SETFLAGTEXTURE]]


| ofp |Game name=


<h2 style="color:#000066">'''''flag'' setFlagTexture ''texture'''''</h2>
|1.00|Game version=


|arg= local|MP argument=


'''Operand types:'''
|eff= global|MP effect=
____________________________________________________________________________________________


'''flag:''' [[Object]]
| Sets flag texture.


'''texture:''' [[String]]
If texture is "", flag is not drawn.<br>
Custom texture can be used, as long as it is in *.jpg format and has dimensions of 200×200px, or *.paa ({{arma3}} standard: 512×256px).


'''Type of returned value:'''
{{Informative | See [[Flag Textures]] for a list of all in-game flag textures.}} |DESCRIPTION=
____________________________________________________________________________________________


[[Nothing]]
| flag [[setFlagTexture]] texture |SYNTAX=


'''Description:'''
|p1= flag: [[Object]] |PARAMETER1=


Set '''flag texture'''.<br>
|p2= texture: [[String]] |PARAMETER2=
If '''texture''' is '''""''', flag is not drawn.


| [[Nothing]] |RETURNVALUE=
____________________________________________________________________________________________
 
|x1= <code>_flagE [[setFlagTexture]] "\ca\misc\data\sever_vlajka.paa";</code> |EXAMPLE1=


'''Example:'''
|x2= <code>_flagW [[setFlagTexture]] "\ca\misc\data\usa_vlajka.paa";</code> |EXAMPLE2=


flag1 '''setFlagTexture''' "usa_vlajka.pac"
|x3= <code>flag1 [[setFlagTexture]] "\A3\Data_F\Flags\Flag_red_CO.paa";</code> |EXAMPLE3=


|x4= <code>customFlag [[setFlagTexture]] "myMissionFlag.paa";</code> |EXAMPLE4=


'''Comments:'''
|x5= <code>flagARMA3 [[setFlagTexture]] "\a3\ui_f\data\Logos\arma3_expansion_ca.paa";</code> |EXAMPLE5=


Flashpoint comes with an addon called '''Flags.pbo''' which contains all the flags of the world.
|x6= Capturable OPFOR flag:<code>[[private]] _flag = "FlagPole_F" [[createVehicle]] [[position]] [[player]];
_flag [[setFlagTexture]] "\A3\Data_F\Flags\Flag_CSAT_CO.paa";
_flag [[setFlagSide]] [[east]];</code> |EXAMPLE6=
____________________________________________________________________________________________


You can find it in the addons folder.<br>
| [[flag]], [[flagOwner]], [[setFlagOwner]], [[setFlagSide]], [[setObjectTexture]], [[setObjectTextureGlobal]], [[flagSide]], [[flagTexture]], [[setFlagAnimationPhase]], [[flagAnimationPhase]], [[forceFlagTexture]], [[getForcedFlagTexture]], [[Flag Textures]] |SEEALSO=
To use a flag texture from there use:


flag1 '''setflagtexture''' "\flags\usa.jpg" ...... USA flag<br>
|gr1= Flags
flag1 '''setflagtexture''' "\flags\ussr.jpg" ...... USSR flag<br>
}}
flag1 '''setflagtexture''' "\flags\fia.jpg" ...... Resistance flag
 
<h3 style="display:none">Notes</h3>
<dl class="command_description">
<!-- Note Section BEGIN -->
 
 
<!-- Note Section END -->
</dl>
 
[[Category:Scripting Commands OFP 1.46|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.96|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Armed Assault|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]

Revision as of 20:24, 9 September 2020

Hover & click on the images for description

Description

Description:
Sets flag texture. If texture is "", flag is not drawn.
Custom texture can be used, as long as it is in *.jpg format and has dimensions of 200×200px, or *.paa (Arma 3 standard: 512×256px).
See Flag Textures for a list of all in-game flag textures.
Groups:
Flags

Syntax

Syntax:
flag setFlagTexture texture
Parameters:
flag: Object
texture: String
Return Value:
Nothing

Examples

Example 1:
_flagE setFlagTexture "\ca\misc\data\sever_vlajka.paa";
Example 2:
_flagW setFlagTexture "\ca\misc\data\usa_vlajka.paa";
Example 3:
flag1 setFlagTexture "\A3\Data_F\Flags\Flag_red_CO.paa";
Example 4:
customFlag setFlagTexture "myMissionFlag.paa";
Example 5:
flagARMA3 setFlagTexture "\a3\ui_f\data\Logos\arma3_expansion_ca.paa";
Example 6:
Capturable OPFOR flag:private _flag = "FlagPole_F" createVehicle position player; _flag setFlagTexture "\A3\Data_F\Flags\Flag_CSAT_CO.paa"; _flag setFlagSide east;

Additional Information

See also:
flagflagOwnersetFlagOwnersetFlagSidesetObjectTexturesetObjectTextureGlobalflagSideflagTexturesetFlagAnimationPhaseflagAnimationPhaseforceFlagTexturegetForcedFlagTextureFlag Textures

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