hideObject: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (Text replace - "</dt>" to "")
Line 42: Line 42:
<!-- Note Section BEGIN -->
<!-- Note Section BEGIN -->
<dd class="notedate">Posted on July 15, 2010 - 20:00</dd>
<dd class="notedate">Posted on July 15, 2010 - 20:00</dd>
<dt class="note">'''[[User:Shuko|Shuko]]'''</dt>
<dt class="note">'''[[User:Shuko|Shuko]]'''
<dd class="note">This command will hide a unit, but he will still shoot enemies. Unit will be invisible, but weapon muzzle are visible.</dd>
<dd class="note">This command will hide a unit, but he will still shoot enemies. Unit will be invisible, but weapon muzzle are visible.</dd>


<dt class="note">'''[[User:McHide|McHide]]'''</dt>
<dt class="note">'''[[User:McHide|McHide]]'''
<dd class="note">Use MP framework to activate this comand on all players from server or any other maschine
<dd class="note">Use MP framework to activate this comand on all players from server or any other maschine
<code>_nic = [nil, mantohide, "per", rHideObject, true] call RE;</code></dd>
<code>_nic = [nil, mantohide, "per", rHideObject, true] call RE;</code></dd>


<dt class="note">'''[[User:Demonized|Demonized]]'''</dt>
<dt class="note">'''[[User:Demonized|Demonized]]'''
<dd class="note">you can use code as in example 2, where true = ON and false = OFF, if using it like in example 1, you can only turn it ON</dd>
<dd class="note">you can use code as in example 2, where true = ON and false = OFF, if using it like in example 1, you can only turn it ON</dd>
<!-- Note Section END -->
<!-- Note Section END -->

Revision as of 14:29, 21 October 2011

Hover & click on the images for description

Description

Description:
Hide entity. Can be used on soldiers and vehicles, also on static objects.
Multiplayer:
Command has local effect, needs to be run on each client.
Groups:
Uncategorised

Syntax

Syntax:
hideObject object
Parameters:
object: Object
Return Value:
Nothing

Alternative Syntax

Syntax:
object hideObject hidden
Parameters:
object: Object.
hidden: Boolean hidden/visible.
Return Value:
Nothing

Examples

Example 1:
hideObject unitName;
Example 2:
objectName hideObject true;

Additional Information

See also:
See also needed

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

Notes

Posted on July 15, 2010 - 20:00
Shuko
This command will hide a unit, but he will still shoot enemies. Unit will be invisible, but weapon muzzle are visible.
McHide
Use MP framework to activate this comand on all players from server or any other maschine _nic = [nil, mantohide, "per", rHideObject, true] call RE;
Demonized
you can use code as in example 2, where true = ON and false = OFF, if using it like in example 1, you can only turn it ON

Bottom Section