Mount Oleng System

Roblox Altitude System with MySQL Database Integration

🟢 SYSTEM ONLINE

📡 API Endpoints

  • POST /check_user.php
    Check user registration status in database
  • POST /add_user.php
    Add new user to whitelist database
  • POST /remove_user.php
    Remove user from database
  • POST /get_users.php
    Get all registered users list
  • POST /generate_voucher.php
    Generate activation vouchers

⚙️ System Information

2025
Active Since
v3.0
System Version
MySQL
Database
REST
API Type

🔧 Quick Tests

Test Database Test API Key

📚 Documentation

This system provides database integration for Mount Oleng Roblox game. All endpoints require API key authentication.

Example Request:

{
  "api_key": "your_secret_key",
  "data": {
    "user_id": 123456789
  }
}

Example Response:

{
  "success": true,
  "data": {
    "registered": true,
    "user_id": 123456789
  },
  "error": ""
}