# Scissor-Paper-Stone Game Script

**Category:** Eggdrop_Script
**Original Author:** TALES (24-08-2003)

## Description
A simple game script for Eggdrop IRC bots, allowing users to play a rock-paper-scissors game against the bot.

## Key Features
- Implements a command `!choose` that allows users to select between scissor, stone, and paper.
- Determines the outcome of the game based on user input and random selection by the bot.
- Sends colored messages indicating the result of each round (win, lose, draw).

## File Analysis
- **ssp.tcl** — A Tcl script for Eggdrop bots that binds a public command `!choose` to execute the game logic. It uses global variables and procedures to handle user inputs and generate random selections from predefined options.