east: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "|= Game name" to "|Game name=")
m (Some wiki formatting)
 
(33 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command
____________________________________________________________________________________________


| ofp |Game name=
|game1= ofp
|version1= 1.00


|1.00|Game version=
|game2= ofpe
____________________________________________________________________________________________
|version2= 1.00


| Pre-defined variable for the eastern [[Side|side]]. |DESCRIPTION=
|game3= arma1
____________________________________________________________________________________________
|version3= 1.00


| '''east''' |SYNTAX=
|game4= arma2
|version4= 1.00


| [[Side]] |RETURNVALUE=
|game5= arma2oa
____________________________________________________________________________________________
|version5= 1.50
 
|x1= SQS:<code>?((side _unit) == [[east]]) : [[hint]] "This is a eastern unit!"</code> |EXAMPLE1=


|x2= SQF:<code>[[if]] (([[side]] _unit) == [[east]]) [[then]] {
|game6= tkoh
    [[hint]] "This is a eastern unit!";
|version6= 1.00
};</code> |EXAMPLE2=
____________________________________________________________________________________________


| [[side]], [[west]], [[resistance]], [[civilian]], [[sideEmpty]], [[sideAmbientLife]] | |SEEALSO=
|game7= arma3
|version7= 0.50


}}
|gr1= Sides
 
|descr= Pre-defined variable for the eastern [[Side|side]].
 
|alias= [[opfor]]
 
|s1= [[east]]
 
|r1= [[Side]]


<h3 style="display:none">Notes</h3>
|x1= [[SQS Syntax|SQS]]:
<dl class="command_description">
<sqs>? side _unit == east : hint "This is an eastern unit!"</sqs>
<!-- Note Section BEGIN -->
<dd class="notedate">Posted on April 17, 2007 - 10:46
<dt class="note">'''[[User:Maruk|Maruk]] ([[User talk:Maruk|talk]])'''<dd class="note">
In ArmA terms OPFOR, BLUFOR, Independents and Civilians are used in the front end UI.


<!-- Note Section END -->
|x2= [[SQF Syntax|SQF]]:
</dl>
<sqf>
if (side _unit == east) then
{
hint "This is an eastern unit!";
};
</sqf>


<h3 style="display:none">Bottom Section</h3>
|seealso= [[side]] [[west]] [[resistance]] [[civilian]] [[sideEmpty]] [[sideAmbientLife]]
}}


[[Category:Scripting Commands|EAST]]
{{Note
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
|user= Maruk
[[Category:Scripting Commands OFP 1.96|EAST]]
|timestamp= 20070417104500
[[Category:Scripting Commands OFP 1.46|EAST]]
|text= In {{arma1}} the terms OPFOR, BLUFOR, Independents and Civilians are used in the front end UI.
[[Category:Scripting Commands ArmA|EAST]]
}}
[[Category:Command_Group:_Object_Information|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Sides|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]

Latest revision as of 15:31, 29 July 2022

Hover & click on the images for description

Description

Description:
Pre-defined variable for the eastern side.
Alias:
opfor
Groups:
Sides

Syntax

Syntax:
east
Return Value:
Side

Examples

Example 1:
SQS:
? side _unit == east : hint "This is an eastern unit!"
Example 2:
SQF:
if (side _unit == east) then { hint "This is an eastern unit!"; };

Additional Information

See also:
side west resistance civilian sideEmpty sideAmbientLife

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
Maruk - c
Posted on Apr 17, 2007 - 10:45 (UTC)
In Armed Assault the terms OPFOR, BLUFOR, Independents and Civilians are used in the front end UI.