Skip to content
This repository was archived by the owner on Nov 1, 2025. It is now read-only.

MeoMunDep/Appleville

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

30 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸš€ appleville Bot Setup Guide

Welcome to the bot setup guide! Follow the steps below to install and configure the bot correctly. This guide is designed for new users, with clear explanations for each step.

πŸ“± For Mobile Users (Termux): View the guide here


Table of Contents

  1. System Requirements
  2. Installing the Bot
  3. Bot Configuration
  4. Running the Bot
  5. Updating the Bot
  6. Contact & Support

System Requirements

Before running the bot, make sure you have installed:

  • Node.js (Version: 22.11.0)
  • npm (Version: 10.9.0)
  • Git
  • Docker (Optional)

πŸ“₯ Node.js & npm: Download

πŸ“₯ Git: Download


Installing the Bot

πŸ”§ Install via Git
git clone https://github.com/MeoMunDep/appleville.git
cd appleville
npm install --no-audit --no-fund --prefer-offline --force user-agents axios meo-forkcy-colors meo-forkcy-utils meo-forkcy-proxy meo-forkcy-logger cheerio
🧰 Manual Installation
  1. Download and extract the bot manually.
  2. Run the same npm install command as above.
🐳 Install via Docker
docker build -t appleville-image .
docker run -d --name appleville-container -v $(pwd)/logs:/app/logs appleville-image

πŸ’‘ On Windows CMD, use %cd% instead of $(pwd)


Bot Configuration

πŸ“œ 1. configs.json - Main Configuration
{
  "proxyMode": "round",
  "rotateProxy": false,
  "skipInvalidProxy": true,
  "proxyRotationInterval": 2,

  "delayEachAccount": [1, 1],
  "timeToRestartAllAccounts": 300,
  "howManyAccountsRunInOneTime": 1,

  "harvestHouseCoin": true,
  "harvestPlants": true,

  "plantSeeds": {
    "enable": true,
    "random": true,
    "wheat": 1,
    "lettuce": 1,
    "carrot": 1,
    "tomato": 1,
    "onion": 1,
    "strawberry": 1,
    "pumpkin": 1,
    "golden-apple": 1,
    "crystal-apple": 1,
    "diamond-apple": 1,
    "platinum-apple": 1,
    "royal-apple": 1,
    "legacy-apple": 1,
    "ascendant-apple": 1,
    "relic-apple": 1,
    "ethereal-apple": 1,
    "quantum-apple": 1,
    "celestial-apple": 1,
    "apex-apple": 1
  },

  "buySeeds": {
    "enable": true,
    "random": true,
    "wheat": 1,
    "lettuce": 1,
    "carrot": 1,
    "tomato": 1,
    "onion": 1,
    "strawberry": 1,
    "pumpkin": 1,
    "golden-apple": 1,
    "crystal-apple": 1,
    "diamond-apple": 1,
    "platinum-apple": 1,
    "royal-apple": 1,
    "legacy-apple": 1,
    "ascendant-apple": 1,
    "relic-apple": 1,
    "ethereal-apple": 1,
    "quantum-apple": 1,
    "celestial-apple": 1,
    "apex-apple": 1
  },

  "useBoosts": {
    "enable": true,
    "random": true,
    "boosts": {
      "fertiliser": 1,
      "silver-tonic": 1,
      "super-fertiliser": 1,
      "golden-tonic": 1,
      "deadly-mix": 1,
      "quantum-fertilizer": 1,
      "potion-of-gains": 1,
      "elixir-of-degens": 1,
      "giga-brew": 1,
      "wild-growth": 1,
      "warp-time-elixir": 1,
      "titans-growth": 1,
      "apex-potion": 1
    }
  },

  "buyBoosts": {
    "enable": true,
    "random": true,
    "boosts": {
      "fertiliser": 1,
      "silver-tonic": 1,
      "super-fertiliser": 1,
      "golden-tonic": 1,
      "deadly-mix": 1,
      "quantum-fertilizer": 1,
      "potion-of-gains": 1,
      "elixir-of-degens": 1,
      "giga-brew": 1,
      "wild-growth": 1,
      "warp-time-elixir": 1,
      "titans-growth": 1,
      "apex-potion": 1
    }
  },

  "spin": {
    "enable": true,
    "random": true,
    "color": "green",
    "ap": 100,
    "amount": 1
  }
}

βœ… Updated Config Parameters Table

Parameter Name Type Default Description
proxyMode string "round" Proxy mode to use. Options: static, round
rotateProxy boolean false Enable proxy rotation between accounts
skipInvalidProxy boolean true Skip account if its proxy is invalid
proxyRotationInterval number 2 Minutes between proxy rotations
delayEachAccount [number, number] [1, 1] Random delay range (in seconds) between accounts
timeToRestartAllAccounts number 300 Time (in seconds) before restarting all accounts
howManyAccountsRunInOneTime number 1 Number of accounts to run in parallel

🌾 Farming Features

Parameter Name Type Default Description
harvestHouseCoin boolean true Automatically harvest House Coins
harvestPlants boolean true Automatically harvest plants once they are ready

🌱 Plant Seeds Settings

Path Type Default Description
plantSeeds.enable boolean true Enable auto-planting seeds
plantSeeds.random boolean true Randomize seed selection when planting
plantSeeds.<seedName> number 1 Seed priority level (higher = more preferred)

Includes: wheat, lettuce, carrot, tomato, onion, strawberry, pumpkin, golden-apple, crystal-apple, diamond-apple, platinum-apple, royal-apple, legacy-apple, ascendant-apple, relic-apple, ethereal-apple, quantum-apple, celestial-apple, apex-apple.


πŸ›’ Buy Seeds Settings

Path Type Default Description
buySeeds.enable boolean true Enable auto-buying seeds
buySeeds.random boolean true Randomize seed buying
buySeeds.<seedName> number 1 Buy amount or priority for each seed

βš—οΈ Use Boosts Settings

Path Type Default Description
useBoosts.enable boolean true Enable using boosts
useBoosts.random boolean true Randomize boost usage
useBoosts.boosts.<name> number 1 Boost usage weight or max limit

Boosts: fertiliser, silver-tonic, super-fertiliser, golden-tonic, deadly-mix, quantum-fertilizer, potion-of-gains, elixir-of-degens, giga-brew, wild-growth, warp-time-elixir, titans-growth, apex-potion.


πŸ§ͺ Buy Boosts Settings

Path Type Default Description
buyBoosts.enable boolean true Enable auto-buying boosts
buyBoosts.random boolean true Randomize which boosts to buy
buyBoosts.boosts.<name> number 1 Buy amount or priority for each boost

🎑 Spin Settings

Path Type Default Description
spin.enable boolean false Enable spinning feature
spin.random boolean true Choose random spin settings
spin.color string "green" Spin color selection
spin.ap number 100 AP amount to use for spin
spin.amount number 1 Number of spin times
πŸ—‚οΈ 2. datas.txt - User Data

πŸ“₯ Guide from Telegram

...
...
...
🌐 3. proxies.txt - Proxy List

πŸ“₯ Free proxy from Webshare

host:port
http://host:port
socks5://user:pass@host:port
...
πŸ’Ό 4. wallets.txt - Wallet List

πŸ“₯ Generate wallets here

0xabc123...
0xdef456...
...

Running the Bot

πŸͺŸ Run on Windows (.bat)
  1. Double-click run.bat
  2. It auto-updates, installs dependencies, and runs the bot.

If it fails, right-click β†’ Run as Administrator Or run from CMD:

run.bat
🐧 Run on Linux/macOS (.sh)
chmod +x run.sh
./run.sh
🐳 Run with Docker
docker stop appleville-container 2>/dev/null && docker rm appleville-container 2>/dev/null
docker build -t appleville-image .
docker run -d --name appleville-container -v $(pwd)/logs:/app/logs appleville-image

Later restart:

docker start appleville-container

Updating the Bot

πŸ”„ If installed via Git
cd appleville
git pull origin main
npm install
🐳 If using Docker
docker stop appleville-container
docker rm appleville-container
docker build -t appleville-image .
docker run -d --name appleville-container appleville-image

Contact & Support


⚠️ Disclaimer: This code is provided "as is" without any warranties. Use it at your own risk. You are solely responsible for any consequences arising from its use. Redistribution or sale of this code in any form is strictly prohibited.

✨ Thank you for using the bot, hope you earn from my scripts! Good luck! πŸš€

✨ Created by @MeoMunDep | Automation Tools for Airdrop Farmers