east: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (Some wiki formatting)
 
(54 intermediate revisions by 14 users not shown)
Line 1: Line 1:
[[Category:Scripting Commands|EAST]]
{{RV|type=command
[[Category:Scripting Commands OFP 1.96|EAST]]
[[Category:Scripting Commands OFP 1.46|EAST]]
[[Category:Scripting Commands ArmA|EAST]]


|game1= ofp
|version1= 1.00


<h2 style="color:#000066">'''east'''</h2>
|game2= ofpe
|version2= 1.00


|game3= arma1
|version3= 1.00


'''Operand types:'''
|game4= arma2
|version4= 1.00


None
|game5= arma2oa
|version5= 1.50


'''Type of returned value:'''
|game6= tkoh
|version6= 1.00


[[Side]]
|game7= arma3
|version7= 0.50


'''Description:'''
|gr1= Sides


East side.
|descr= Pre-defined variable for the eastern [[Side|side]].


|alias= [[opfor]]


'''Example:'''
|s1= [[east]]


?(([[side]] soldierOne) [[ a == b | ==]] '''east''') : [[hint]] "Unit is an eastern soldier"
|r1= [[Side]]
 
|x1= [[SQS Syntax|SQS]]:
<sqs>? side _unit == east : hint "This is an eastern unit!"</sqs>
 
|x2= [[SQF Syntax|SQF]]:
<sqf>
if (side _unit == east) then
{
hint "This is an eastern unit!";
};
</sqf>
 
|seealso= [[side]] [[west]] [[resistance]] [[civilian]] [[sideEmpty]] [[sideAmbientLife]]
}}
 
{{Note
|user= Maruk
|timestamp= 20070417104500
|text= In {{arma1}} the terms OPFOR, BLUFOR, Independents and Civilians are used in the front end UI.
}}

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.