Group.Select
Source Code | Usage Examples | Group
Functions
Makes a player (int player) select members of a group (Group g), with a minimum (int min) and a maximum (int max), then outputs the result as a new Group. Excludes a card (Card ex) if it is not nil. If (bool cancelable) is true and the selection is canceled nil will be returned.
Signature
Group.Select(Group g
, int player
, int min
, int max
, [bool cancelable
= false
]) → Group
lua
g:Select(player,min,max,cancelable)
Parameters
Group
g
(To be added)
int
player
(To be added)
int
min
(To be added)
int
max
(To be added)
bool
cancelable
Optional. Defaults to
false
.(To be added)