object: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Some wiki formatting)
 
(58 intermediate revisions by 13 users not shown)
Line 1: Line 1:
[[Category:Scripting Commands]]
{{RV|type=command
[[Category:Scripting Commands OFP 1.97]]
[[Category:Scripting Commands OFP 1.46]]


back to [[Scripting_Reference#O|COMREF]]
|game1= ofp
|version1= 1.75


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


|game3= arma1
|version3= 1.00


'''Operand types:'''
|gr1= Object Detection


'''id:''' [[Number]]
|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.}}


'''Type of returned value:'''
|s1= [[object]] id


[[Object]]
|p1= id: [[Number]]


'''Compatibility:'''
|r1= [[Object]]


Added in version '''1.75''', removed in '''ArmA'''
|x1= <sqf>_object = object 1;</sqf>


'''Description:'''
|seealso= [[nearestObjects]] [[nearObjectsReady]] [[nearObjects]] [[nearestObject]]
}}


Return object with given '''id'''.
{{Note
 
|user= Hoz
Object ID's can be checked in mission editor.
|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>
'''Example:'''
{{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.
_obj = '''object''' 1
}}
 
 
'''Comments'''
 
To check object ID's in the Mission Editor click on "Show IDs" and zoom in close.
 
Available in v1.75 (Resistance) and above.
 
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.
 
Since [[ArmA]] 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.