-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
Complete installation instructions for all supported platforms.
Step 1: Download
Step 2: Run the Installer
- Double-click the downloaded
.exefile - If Windows shows a security warning:
- Click "More info"
- Click "Run anyway"
- This is normal for unsigned executables
Step 3: Follow the Wizard
The installer will:
- ✅ Check for Node.js and npm
- ✅ Download the latest bot files
- ✅ Install dependencies automatically
- ✅ Create required directories
- ✅ Configure your Discord bot token
- ✅ Create a start script
Step 4: Done!
The bot is ready to use! You can:
- Double-click
start_bot.batto start the bot - Or choose to start it immediately after installation
Method 1: One-Line Install (Easiest)
Simply paste this command in your terminal:
bash <(curl -sSL https://raw.githubusercontent.com/Gamer100309/MC-Server-Status-Bot/main/install.sh)The script automatically detects your architecture (x64 or ARM64) and downloads the correct installer!
Method 2: Manual Download
For standard Linux (Ubuntu, Debian, Fedora, etc.):
wget https://github.com/Gamer100309/MC-Server-Status-Bot/releases/download/v5.1.0_Release/RedCity_Industries_MC_Stats_Bot_Installer_Linux_x64
chmod +x RedCity_Industries_MC_Stats_Bot_Installer_Linux_x64
./RedCity_Industries_MC_Stats_Bot_Installer_Linux_x64For Raspberry Pi / ARM64 systems:
wget https://github.com/Gamer100309/MC-Server-Status-Bot/releases/download/v5.1.0_Release/RedCity_Industries_MC_Stats_Bot_Installer_Linux_ARM64
chmod +x RedCity_Industries_MC_Stats_Bot_Installer_Linux_ARM64
./RedCity_Industries_MC_Stats_Bot_Installer_Linux_ARM64Ubuntu/Debian:
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
sudo apt-get install -y nodejsFedora:
sudo dnf install nodejs npmArch Linux:
sudo pacman -S nodejs npm# Download
curl -L https://github.com/Gamer100309/MC-Server-Status-Bot/releases/latest/download/RedCity_Industries_MC_Stats_Bot_Installer_macOS_ARM64 -o installer-macos
# Remove quarantine (required for unsigned apps)
xattr -d com.apple.quarantine installer-macos
# Make executable and run
chmod +x installer-macos
./installer-macos# Download
curl -L https://github.com/Gamer100309/MC-Server-Status-Bot/releases/latest/download/RedCity_Industries_MC_Stats_Bot_Installer_macOS_x64 -o installer-macos
# Remove quarantine
xattr -d com.apple.quarantine installer-macos
# Make executable and run
chmod +x installer-macos
./installer-macos- Go to System Preferences → Security & Privacy
- Click "Open Anyway" next to the blocked app message
If the automated installer doesn't work:
Ensure you have:
git clone https://github.com/Gamer100309/MC-Server-Status-Bot.git
cd MC-Server-Status-Bot/Mc\ Server\ Stats\ Botnpm install- Copy the example config:
cp global-config.example.json global-config.json- Edit
global-config.json:
{
"token": "YOUR_DISCORD_BOT_TOKEN_HERE"
}See our Discord Bot Setup Guide for help getting a token.
node index.jsMinimum Requirements:
- Windows: Windows 10 or higher
- Linux: Any modern distribution (Ubuntu 20.04+, Debian 10+, Fedora 35+)
- macOS: macOS 10.15 (Catalina) or higher
For Running:
- Node.js 18 or higher
- npm 8 or higher
- 100 MB free disk space
- Internet connection
After installation, verify everything works:
# Check Node.js version
node --version
# Should show v18.x.x or higher
# Check npm version
npm --version
# Should show 8.x.x or higher
# Check bot files
ls
# Should show index.js, package.json, etc.After successful installation:
- Create a Discord Bot - Get your bot token
- Configure the Bot - Customize settings
- First Steps - Add your first server
- Commands Reference - Learn available commands
Having issues? See our Troubleshooting Guide for common problems and solutions.