# Blackjack TCL Script

**Category:** mIRC_Addon
**Original Author:** Dudu

## Description
This script implements a simple Blackjack game for IRC channels using Tcl scripting language. It allows users to join, play, and track statistics of the game.

## Key Features
- **Commands:**
  - `!blackjack on` — Activates the Blackjack game on the channel.
  - `!blackjack off` — Deactivates the Blackjack game on the channel.
  - `!blackjack stats` — Displays the number of games played in the channel.
  - `!blackjack version` — Shows the script's version and author information.
  - `!join` — Joins a player into an ongoing game.
  - `!carte` — Draws a card for the current player.
  - `!ajunge` — Ends the player's turn in the game.
- **Game Mechanics:**
  - Manages player registration and game state.
  - Tracks card draws and player scores.
  - Determines winners based on final scores.

## File Analysis
- **blackjack.tcl** — Contains the core logic for managing the Blackjack game, including command handling, player registration, and game progression. It also includes statistical tracking and version information.