flagOwner: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (template:command argument fix)
(9 intermediate revisions by 3 users not shown)
Line 8: Line 8:
|arg= global |= Arguments in MP
|arg= global |= Arguments in MP


|eff= |= Effects in MP
|eff= global|= Effects in MP
____________________________________________________________________________________________
____________________________________________________________________________________________


| Returns the owner of a flag. |= Description
| Returns the global owner of a flag. A getter for [[setFlagOwner]]. Note that owner of a flag is [[Object]] rather than [[Number]], as how it is usually with other [[owner]] commands |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[Object]] <nowiki>=</nowiki> '''flagOwner''' flag |= Syntax
| '''flagOwner''' flag |SYNTAX=


|p1= flag: [[Object]] |= Parameter 1
|p1= flag: [[Object]] |PARAMETER1=


| [[Object]] -   
| [[Object]] -  The person or vehicle that owns the flag is returned. If used on anything else than a flag, the returned value is [[objNull]]. If the flag is on its pole, the return value is NULL. If the flagowner is dead, the return value is the name of the soldier model. |RETURNVALUE=
The person or vehicle that owns the flag is returned. If used on anything else than a flag, the returned value is [[objNull]]. If the flag is on its pole, the return value is NULL. If the flagowner is dead, the return value is the name of the soldier model. |= Return value
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <pre>_person = flagowner _flagOne</pre> |= Example 1
|x1= <code>_person = [[flagOwner]] _flagOne;</code> |EXAMPLE1=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[flag]], [[setFlagOwner]] |= See also
| [[flag]], [[setFlagOwner]], [[setFlagSide]], [[setFlagTexture]], [[flagSide]], [[flagTexture]], [[setFlagAnimationPhase]], [[flagAnimationPhase]], [[forceFlagTexture]], [[getForcedFlagTexture]], [[Flag Textures]] |SEEALSO=


}}
}}
Line 38: Line 37:
<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands|FLAGOWNER]]
[[Category:Scripting Commands|FLAGOWNER]]
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.96|FLAGOWNER]]
[[Category:Scripting Commands OFP 1.96|FLAGOWNER]]
[[Category:Scripting Commands OFP 1.46|FLAGOWNER]]
[[Category:Scripting Commands OFP 1.46|FLAGOWNER]]

Revision as of 15:39, 7 April 2019

Hover & click on the images for description

Description

Description:
Returns the global owner of a flag. A getter for setFlagOwner. Note that owner of a flag is Object rather than Number, as how it is usually with other owner commands
Groups:
Uncategorised

Syntax

Syntax:
flagOwner flag
Parameters:
flag: Object
Return Value:
Object - The person or vehicle that owns the flag is returned. If used on anything else than a flag, the returned value is objNull. If the flag is on its pole, the return value is NULL. If the flagowner is dead, the return value is the name of the soldier model.

Examples

Example 1:
_person = flagOwner _flagOne;

Additional Information

See also:
flagsetFlagOwnersetFlagSidesetFlagTextureflagSideflagTexturesetFlagAnimationPhaseflagAnimationPhaseforceFlagTexturegetForcedFlagTextureFlag 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

Bottom Section