Clash-of-Clans-Bot-Auto-Farmer
An advanced, non-intrusive auto-farming bot for Clash of Clans. Automates resource collection, troop training, main village attacks (Air, Ground, TH Sniping, Storage Raids), and Builder Base stages safely via ADB.
파일 탐색기
- bb_active_text.png
- bb_attack_confirm.png
- bb_battle_hud.png
- bb_find_match.png
- bb_prep_text.png
- bb_return_home.png
- bb_troop_slot.png
- town_hall.png
- town_hall_18.png
- archer_queen.png
- barbarian_king.png
- battle_machine_bb.png
- copter_bb.png
- dragon_duke.png
- grand_warden.png
- royal_champion.png
- freeze_spell.png
- rage_spell.png
- totem_spell.png
- balloon.png
- bomber_bb.png
- electro_dragon.png
- giant_bb.png
- peka_bb.png
- super_witch.png
- witch_bb.png
- attack_button.png
- attack_button2.png
- confirm_button.png
- connection_error.png
- end_battle_button.png
- end_battle_confirm.png
- loading_screen.png
- lot_asseset.png
- next_button.png
- normal_mode_btn.png
- ranked_mode_btn.png
- reload_button.png
- return_home.png
- searching_indicator.png
- surrender_button.png
- timer_top_start.png
- troops_bar.png
- manifest.json
- README.md
- README.md
- v2_attack_rules.json
- v2_spell_profiles.json
- v2_troop_profiles.json
- __init__.py
- adb_gestures.py
- adb_handler.py
- bot_engine.py
- logger.py
- README.md
- settings.py
- state_machine.py
- __init__.py
- air_attack_rule.py
- base_rule.py
- ground_funnel_rule.py
- resource_raid_rule.py
- smart_default_rule.py
- th_snipe_rule.py
- __init__.py
- fan_planner.py
- funnel_planner.py
- hero_planner.py
- human_touch.py
- spell_planner.py
- __init__.py
- builder_base.py
- home_village.py
- README.md
- smart_v2_logic.py
- v2_orchestrator.py
- Amr.json
- default_profile.json
- bb_attack_macro.json
- example_strategy.json
- README.md
- __init__.py
- asset_manager_tab.py
- builder_base_tab.py
- console_widget.py
- home_village_tab.py
- interactive_assist.py
- main_window.py
- README.md
- sequence_builder_tab.py
- settings_tab.py
- smart_v2_panel.py
- smart_v2_panel.py.bak
- styles.py
- training_mode_tab.py
- __init__.py
- corner_selector.py
- isometric_grid.py
- obstacle_detector.py
- red_zone_polygon.py
- red_zone_polygon.py.tmp
- safe_corridor.py
- target_locator.py
- __init__.py
- ocr_reader.py
- README.md
- screen_reader.py
- screen_reader.rar
- smart_vision_v2.py
- template_manager.py
- .gitignore
- 2adb.exe
- AdbWinApi.dll
- AdbWinUsbApi.dll
- CONTRIBUTING.md
- DISCLAIMER.md
- LICENSE
- main.py
- README.md
- README_AR.md
- requirements.txt
- SECURITY.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git clone
설명 보기 ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
pip install
설명 보기 ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
python
설명 보기 ▼
python
Python 언어 인터프리터.
더 많은 정보: <https://docs.python.org/using/cmdline.html>.
python
REPL(대화형 셸) 시작:
python {{path/to/file.py}}
특정 Python 파일 실행:
python -i {{path/to/file.py}}
특정 Python 파일 실행 후 REPL 시작:
