# Game Collection > Symcon documentation · English · generated on 2026-09-26 > Index: https://www.symcon.de/en/llms.txt Source: https://www.symcon.de/en/service/documentation/module-reference/logic/game-collection/ A collection of simple games which can be played via the Visualization. ## Rock Paper Scissors Source: https://www.symcon.de/en/service/documentation/module-reference/logic/game-collection/rock-paper-scissors/ _Requires Symcon >= 5.0_ ### function scope - Rock, Paper, Scissors in IP-Symcon ### Software Installation - Via the [Module Store](https://www.symcon.de/de/service/dokumentation/komponenten/verwaltungskonsole/module-store/) install the game collection module. ### Setting up the instances in IP-Symcon - Under "Add Instance" the 'RockPaperSissors' module can be easily found using the quick search. ### status variables and profiles The status variables/categories are created automatically. Deleting individual ones can lead to malfunctions. #### Statusvariables | Name | Type | Description | | -------------- | ------- | --------------------------------- | | Your choice | Integer | Player's choice. | | Computer chose | Integer | Shows the choice of the computer. | | Result | String | Shows the result. | #### Profile: | Name | Type | | ---------- | ------- | | SSP.Choice | Integer | ### Visualization This is where the game is played. ## Number Guessing Source: https://www.symcon.de/en/service/documentation/module-reference/logic/game-collection/number-guessing/ _Requires Symcon >= 5.0_ ### range of functions - A little game where a random number has to be guessed. ### Software installation - Via the [Module Store](https://www.symcon.de/de/service/dokumentation/komponenten/verwaltungskonsole/module-store/) install the game collection module. ### Setting up the instances in IP-Symcon - Under "Add Instance" the 'Number Guessing' module can be easily found using the quick search. #### Configuration page: | name | type | description | | ------------------------------- | ------- | ---------------------------------------------------------- | | Minimum of the generated number | Integer | The minimum of the number that will be generated. | | Maximum of the generated number | Integer | Maximum of the generated number. | | Number of allowed attempts | Integer | The number of attempts the player has to guess the number. | ### status variables The status variables/categories are created automatically. Deleting individual ones can lead to malfunctions. #### Status variables | Name | Type | Description | | -------------- | ------- | --------------------------------------------------------------- | | Moves left | Integer | Shows the number of remaining attempts. | | Your number is | String | Shows if the guess is greater or less than the number to guess. | | Your Hint | Integer | The input field for the player's hint. | ### Visualization This is where the game is played. ## ZR_Generate Source: https://www.symcon.de/en/service/documentation/module-reference/logic/game-collection/number-guessing/zr-generate/ `bool ZR_Generate(int $InstanceID)` _Requires Symcon >= 5.0_ **Parameters** - `$InstanceID` (int): ID of the Instance **Returns** (bool): If the command could be executed successfully, it returns __TRUE__ as result, otherwise __FALSE__. ID of the Instance **Example** ```text ZR_Generate(12345); ```