Welcome to the 3x3 Slot Machine Game! This is a simple slot machine game implemented in Python.
- Spin a 3x3 grid of slots.
- Eight different symbols with varying multipliers.
- Save and load your game balance.
- Calculate payouts based on connected symbols.
Symbol | Multiplier |
---|---|
🍏 | 0.8 |
🍒 | 1.0 |
🍋 | 1.1 |
🍊 | 1.25 |
🍉 | 1.5 |
🍇 | 2.5 |
🍓 | 3.0 |
🍍 | 1.75 |
- If a symbol appears in all columns, additional multipliers are applied based on the number of connected symbols.
- No additional multiplier is applied for the symbol 🍏.
- For other symbols, the additional multiplier increases by 0.33 for each connected symbol beyond the initial 3.
- Ensure you have Python installed on your machine.
- Run the script
slot_machine.py
. - Enter your bet amount (or 0 to exit the game).
- The game will spin the slots and calculate your winnings.
- Your updated balance will be displayed after each spin.
- Clone the repository or download the script.
- Open a terminal and navigate to the directory containing the script.
- Run the script with Python:
python slot_machine.py