Orby is a sleek, native desktop application that allows you to safely spoof background game processes.
Perfect for completing Discord Quests without needing to install, configure, or run massive multi-gigabyte games just to fulfill playtime requirements.
- Save Disk Space: No need to download massive games just for quests.
- Save Bandwidth: Avoid gigabytes of downloads on metered connections.
- Native & Fast: Built entirely on C++ and Qt6 with a premium interface.
- Safe & Clean: Processes are safely spun up locally and gracefully terminated when you press "Stop".
- Cross-Platform: Core logic and UI are built on Qt, allowing full portability and native spoofing across both Linux and Windows.
To build or run Orby, your system must have the Qt6 development packages and CMake.
qt6-baseqt6-declarativecmakegcc/make(Linux)- MSVC / MinGW (Windows)
- Install Dependencies:
- Arch:
sudo pacman -S qt6-base qt6-declarative cmake gcc make - Ubuntu:
sudo apt install qt6-base-dev qt6-declarative-dev cmake g++ make
- Arch:
- Clone and Install:
git clone https://github.com/muzammilshafique/orby.git cd orby ./linux/install.sh - Run Orby:
You can now launch Orby directly from your application menu, or via terminal:
orby
If you prefer to compile the binary manually without installing the desktop entry:
git clone https://github.com/muzammilshafique/orby.git
cd orby
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
cmake --build . -j$(nproc)
# Run the compiled binary
./orby- Install Dependencies:
- Install Qt 6 using the Qt Online Installer (include Desktop MSVC or MinGW).
- Install CMake.
- Clone and Build:
Open a Developer Command Prompt (or Qt Command Prompt) and run:
git clone https://github.com/muzammilshafique/orby.git cd orby mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release .. cmake --build . --config Release
- Run Orby:
(Note: The background process spoofing on Windows uses a minimal
Release\Orby-Windows.exe
dummy.exethat compiles seamlessly alongside the main application).
Orby/
├── src/ # Core C++ application logic (Process spoofing, Discord API)
├── qml/ # UI components and views (Qt Quick / QML)
├── screenshots/ # Showcase images
├── icons/ # SVG application icon
├── linux/ # Desktop entry, install, and uninstall scripts
├── windows/ # Minimal Win32 dummy process for Windows spoofing
├── CMakeLists.txt # CMake build configuration
├── README.md # Project documentation
├── LICENSE # MIT License file
└── .gitignore # Git ignore file for build artifacts
Contributions are welcome! If you'd like to improve Orby:
- Fork the repository.
- Create a new branch (
git checkout -b feature/awesome-feature). - Commit your changes (
git commit -m 'Add awesome feature'). - Push to the branch (
git push origin feature/awesome-feature). - Open a Pull Request.
Please ensure your code follows standard C++ and Qt best practices.
This project is licensed under the MIT License. See the LICENSE file for details.
Orby is provided for educational and personal use only. Spoofing processes to fulfill quest requirements may violate Discord's Terms of Service. The maintainers and contributors of this project hold no liability for any account suspensions, revoked rewards, or other potential consequences. Please use this tool responsibly and at your own risk.

