Skip to content
This repository was archived by the owner on Jun 1, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .env-example
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,14 @@ AUTO_UPGRADE=
MAX_LEVEL=
MIN_PROFIT=
MAX_PRICE=
MAX_PRICE_LIMIT=
BEST_CARD_ONLY=

BALANCE_TO_SAVE=
UPGRADES_COUNT=

MAX_COMBO_PRICE=
BEST_COMBO_ONLY=

APPLY_COMBO=
APPLY_PROMO_CODES=
Expand Down
3 changes: 3 additions & 0 deletions bot/config/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,14 @@ class Settings(BaseSettings):
MAX_LEVEL: int = 20
MIN_PROFIT: int = 1000
MAX_PRICE: int = 50000000
MAX_PRICE_LIMIT: bool = False
BEST_CARD_ONLY: bool = False

BALANCE_TO_SAVE: int = 1000000
UPGRADES_COUNT: int = 10

MAX_COMBO_PRICE: int = 10000000
BEST_COMBO_ONLY: bool = False

APPLY_COMBO: bool = True
APPLY_PROMO_CODES: bool = True
Expand Down
Loading