BIS fnc createRuin: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - " <h3 style="display:none">Notes</h3> <dl class="command_description"> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl>" to "") |
Lou Montana (talk | contribs) m (Text replacement - " *\| *([Cc]omments|COMMENTS|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments \("local" or "global"\)|Multiplayer Effects \("local" or "global"\)|Multiplayer Execution \("server" o...) |
||
Line 1: | Line 1: | ||
{{Function | {{Function | ||
| arma3 | | arma3 | ||
|1.76 | |1.76 | ||
|gr1 = Environment | |gr1 = Environment | ||
| Create a building ruin and hide the original object. | | Create a building ruin and hide the original object. | ||
| building call [[BIS_fnc_createRuin]] | | building call [[BIS_fnc_createRuin]] | ||
|p1= building: [[Object]] - building to "destroy" | |p1= building: [[Object]] - building to "destroy" | ||
| [[Object]] - the created ruin | | [[Object]] - the created ruin | ||
|x1= <code>aBuilding [[call]] [[BIS_fnc_createRuin]];</code> | |x1= <code>aBuilding [[call]] [[BIS_fnc_createRuin]];</code> | ||
|x2= <code> {{codecomment|// will destroy every building in a 50m radius around the player}} | |x2= <code> {{codecomment|// will destroy every building in a 50m radius around the player}} | ||
{ _x [[call]] [[BIS_fnc_createRuin]]; } [[forEach]] ([[player]] [[nearObjects]] ["House", 50]);</code> | { _x [[call]] [[BIS_fnc_createRuin]]; } [[forEach]] ([[player]] [[nearObjects]] ["House", 50]);</code> | ||
| | | | ||
}} | }} | ||
Revision as of 22:38, 17 January 2021
Description
- Description:
- Create a building ruin and hide the original object.
- Execution:
- call
- Groups:
- Environment
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
Bottom Section
- Posted on June 1, 2019 - 13:14 (UTC)
- beno_83au
-
In MP this function doesn't hide the building globally, so other clients will see both the original building AND the newly created ruined building - https://feedback.bistudio.com/T140045. To get around this I've been hiding the object manually on all other clients:
_building call BIS_fnc_createRuin;
[_building,true] remoteExecCall ["hideObject",-clientOwner];
This will run hideObject on all other clients besides the client (or server) that this was executed from.