BIS fnc createRuin: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Fix example)
m (template:command argument fix)
Line 8: Line 8:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Create a building ruin and hide the original object. |= Description
| Create a building ruin and hide the original object. |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| building call [[BIS_fnc_createRuin]] |= Syntax
| building call [[BIS_fnc_createRuin]] |SYNTAX=


|p1= building: [[Object]] - building to "destroy" |= Parameter 1
|p1= building: [[Object]] - building to "destroy" |= Parameter 1


| [[Object]] - the created ruin |= Return value
| [[Object]] - the created ruin |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 24: Line 24:
____________________________________________________________________________________________
____________________________________________________________________________________________


| |= See also
| |SEEALSO=
}}
}}



Revision as of 12:26, 7 April 2019


Hover & click on the images for description

Description

Description:
Create a building ruin and hide the original object.
Execution:
call
Groups:
Uncategorised

Syntax

Syntax:
building call BIS_fnc_createRuin
Parameters:
building: Object - building to "destroy"
Return Value:
Object - the created ruin

Examples

Example 1:
aBuilding call BIS_fnc_createRuin;
Example 2:
// will destroy every building in a 50m radius around the player { _x call BIS_fnc_createRuin; } forEach (player nearObjects ["House", 50]);

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

Bottom Section