object: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Some wiki formatting)
 
(32 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| ofpr  |= Game name
|game1= ofp
|version1= 1.75


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


| Return [[Object]] with given id. Object ID's can be checked in mission editor.<br><br>
|game3= arma1
|version3= 1.00


{{Feature arma3|This command is not in Arma 3. Use [[nearestObject]] command family instead.}}|= Description
|gr1= Object Detection
____________________________________________________________________________________________


| [[Object]] <nowiki>=</nowiki> '''object''' id |= Syntax
|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.}}


|p1= id: [[Number]] |= Parameter 1
|s1= [[object]] id


| [[Object]] |= Return value
|p1= id: [[Number]]
____________________________________________________________________________________________
 
|x1= <code>_obj <nowiki>=</nowiki> '''object''' 1 </code> |= Example 1
____________________________________________________________________________________________


| [[nearestObjects]], [[nearObjectsReady]], [[nearObjects]], [[nearestObject]] |= See also
|r1= [[Object]]


|x1= <sqf>_object = object 1;</sqf>
|seealso= [[nearestObjects]] [[nearObjectsReady]] [[nearObjects]] [[nearestObject]]
}}
}}


<h3 style="display:none">Notes</h3>
{{Note
<dl class="command_description">
|user= Hoz
<!-- Note Section BEGIN -->
|timestamp= 20060801221000
<dd class="notedate">Posted on 22:10, 1 August 2006
|text=
<dt class="note">'''[[User:Hoz|Hoz]]'''<dd class="note">
{{GVI|ofp|1.75}} To check object's id in the Mission Editor click on "Show IDs" and zoom in closely.<br>
(CWR 1.75)To check object ID's in the Mission Editor click on "Show IDs" and zoom in close. <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>
(CWR 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. <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.
(A1 1.08)This command is no longer available due to terrain data streaming, you need to use extended variant of [[nearestObject]] instead.
}}
<!-- Note Section END -->
</dl>
 
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.96|OBJECT]]

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.