deleteGroup: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - "\[\[[cC]ategory:[sS]cripting [cC]ommands\|[a-z A-Z 0-9_]+\]\]" to "") |
Lou Montana (talk | contribs) m (Text replacement - "\{\{( *)Informative( *)\|" to "{{$1Feature$2|$2Informative$2|") |
||
Line 12: | Line 12: | ||
| Destroys the given group. <u>Group must be empty and local to the machine executing command</u>. <br><br> | | Destroys the given group. <u>Group must be empty and local to the machine executing command</u>. <br><br> | ||
{{Informative |In Arma 3 you can find out locality of the group with [[local]] command, unlike with previous games. However [[owner]] and [[setOwner]] dont work with groups anywhere. The group will always be local to the client that created it, until the client disconnects, then the group becomes local to the server. So if you need to delete a group, delete all members first then execute [[deleteGroup]] where is it [[local]]. }}<br> | {{Feature | Informative |In Arma 3 you can find out locality of the group with [[local]] command, unlike with previous games. However [[owner]] and [[setOwner]] dont work with groups anywhere. The group will always be local to the client that created it, until the client disconnects, then the group becomes local to the server. So if you need to delete a group, delete all members first then execute [[deleteGroup]] where is it [[local]]. }}<br> | ||
{{Feature|arma3|In Arma 3 when last unit leaves a group, the group gets [[Talk:deleteGroup#group_auto_becoming_null|auto deleted]]. Manually deleting all units from a group however, does not auto delete the empty group. To force the group to get auto-deleted when empty use [[deleteGroupWhenEmpty]]}} | {{Feature|arma3|In Arma 3 when last unit leaves a group, the group gets [[Talk:deleteGroup#group_auto_becoming_null|auto deleted]]. Manually deleting all units from a group however, does not auto delete the empty group. To force the group to get auto-deleted when empty use [[deleteGroupWhenEmpty]]}} |
Revision as of 00:12, 7 February 2021
Description
- Description:
- Description needed
- Groups:
- Groups
Syntax
- Syntax:
- Syntax needed
- Parameters:
- group: Group
- Return Value:
- Return value needed
Examples
- Example 1:
deleteGroup _groupname;
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
- Posted on December 17, 2006 - 00:34
- ColonelSandersLite
The deleteGroup Command does not work when there are living members of in the group. It doesn't error, it simply doesn't do anything.
- Posted on 07:50, 10 July 2007 (CEST)
- 5133p39
- Living or not doesn't matter - you can't delete the group while it contains any units - even dead ones. It takes few seconds until a dead unit is automatically removed from its group.
- Posted on September 12, 2013 - 03:54
- LongEnoughName
- deleteGroup will only delete local groups even if called by server. Say we have a situation where client creates a group and puts a unit there and later unit dies\gets deleted, server will not be able to delete that empty group until client leaves the game and group ownership switches to server