object: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
 
m (Some wiki formatting)
 
(62 intermediate revisions by 13 users not shown)
Line 1: Line 1:
<h2 style="color:#000066">'''object ''id'''''</h2>
{{RV|type=command


'''Operand types:'''
|game1= ofp
|version1= 1.75


id: [[Number]]
|game2= ofpe
|version2= 1.00


'''Type of returned value:'''
|game3= arma1
|version3= 1.00


[[Object]]
|gr1= Object Detection


'''Description:'''
|descr= Returns [[Object]] with given id. Object's id can be checked in mission editor.
{{Feature|important|This command was removed as of {{arma1}} '''v1.08'''; for later versions and titles, use [[nearestObject]] command family instead.}}


Return object with given ID. Object ID's can be checked in mission editor.
|s1= [[object]] id


'''Example:'''
|p1= id: [[Number]]


_obj = '''object''' 1
|r1= [[Object]]


'''Comments'''
|x1= <sqf>_object = object 1;</sqf>


''Macguba''
|seealso= [[nearestObjects]] [[nearObjectsReady]] [[nearObjects]] [[nearestObject]]
To check object IDs in the Mission Editor click on "Show IDs" and zoom in close.
}}
Available in v1.75 (Resistance) and above.


''Tactician''
{{Note
Since version 1.85, you can't [[setPos]] island objects to get them out of the way, but you can use [[setDamage]] 1 to get trees or other flora out of the way.
|user= Hoz
|timestamp= 20060801221000
|text=
{{GVI|ofp|1.75}} To check object's id in the Mission Editor click on "Show IDs" and zoom in closely.<br>
{{GVI|ofp|1.85}} You cannot <sqf inline>_object setPos [-10000, 0 ,0];</sqf> terrain objects to get them out of the way, but you can use <sqf inline>_object setDamage 1;</sqf> to get trees or other flora out of the way.<br>
{{GVI|arma1|1.08}} This command is no longer available due to terrain data streaming, you need to use extended variant of [[nearestObject]] instead.
}}

Latest revision as of 16:17, 1 July 2022

Hover & click on the images for description

Description

Description:
Returns Object with given id. Object's id can be checked in mission editor.
This command was removed as of Armed Assault v1.08; for later versions and titles, use nearestObject command family instead.
Groups:
Object Detection

Syntax

Syntax:
object id
Parameters:
id: Number
Return Value:
Object

Examples

Example 1:
_object = object 1;

Additional Information

See also:
nearestObjects nearObjectsReady nearObjects nearestObject

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
Hoz - c
Posted on Aug 01, 2006 - 22:10 (UTC)
Logo A0.png1.75 To check object's id in the Mission Editor click on "Show IDs" and zoom in closely.
Logo A0.png1.85 You cannot _object setPos [-10000, 0 ,0]; terrain objects to get them out of the way, but you can use _object setDamage 1; to get trees or other flora out of the way.
Logo A1 black.png1.08 This command is no longer available due to terrain data streaming, you need to use extended variant of nearestObject instead.