# Russian Roulette Script

**Category:** mIRC_Addon
**Original Author:** Dopeydwerg (dopeydwerg@hotmail.com)

## Description
This script implements a game of Russian roulette in an IRC channel, allowing players to challenge each other and take turns spinning the gun or shooting. The game keeps track of scores and provides various commands for interacting with it.

## Key Features
- **Challenge:** Players can challenge others to play using `.challenge <nick>`.
- **Accept/Decline:** Players can accept or decline challenges using `.accept` or `.chicken`, respectively.
- **Spin Gun:** The current player can spin the gun using `.spin`.
- **Shoot Gun:** The current player can shoot the gun using `.shoot`.
- **Score Display:** Players can view their own score and the overall scores of all players using `.score <nick>` and `.scores`.

## File Analysis
- **roulette.tcl** — Contains the logic for the Russian roulette game, including handling challenges, turns, and outcomes.
- **roulette.txt** — A file where scores are written, though it is not used in this script as the score tracking is done in-memory.