SAPP

Sapp is the most popular server extension for the retail version and custom edition of Halo. Key features are:

  • Server side anti-aimbot
  • Lag Compensaction
  • Admin Management
  • IP Banning
  • Mapvoting
  • Lua API


  • Phasor

    Phasor was the first server extension to have an extensive Lua API and is open source. Key features are:

  • Advanced Admin Management
  • Extensive Lua API
  • Alias system
  • AFK kicking
  • Mapvoting


  • Gandanur

    Gandanur is one of the first server extensions that was avalible for Halo CE. Its key features are:

  • Admin Management
  • Ping & AFK Kicking
  • IP Banning
  • Mapvoting


  • Running a Halo server on Linux with WINE

    Provided by: .þsϵυdø.þrø×϶n#0007 on Discord

  • Fedora 32 / Wine 5.12
  • dnf check-update
    sudo dnf upgrade
    sudo dnf config-manager --add-repo https://dl.winehq.org/wine-builds/fedora/32/winehq.repo
    sudo dnf install winehq-devel

  • Debian 9/10 / Wine 5.14
  • sudo dpkg --add-architecture i386
    sudo apt update
    sudo apt -y install gnupg2 software-properties-common
    wget -qO - https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add -
    sudo apt-add-repository https://dl.winehq.org/wine-builds/debian/
    -- Debian 10 --
    wget -O- -q https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Debian_10/Release.key | sudo apt-key add -
    echo "deb http://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Debian_10 ./" | sudo tee /etc/apt/sources.list.d/wine-obs.list
    -- Debian 9 --
    wget -O- -q https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Debian_9.0/Release.key | sudo apt-key add -
    echo "deb http://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Debian_9.0 ./" | sudo tee /etc/apt/sources.list.d/wine-obs.list
    -- Debian 9/10 --
    sudo apt update
    sudo apt install --install-recommends winehq-devel

  • Ubuntu 19.10/18.04/16.04 LTS / Wine 5.xx
  • sudo dpkg --add-architecture i386
    wget -qO - https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add -
    -- Ubuntu 19.10 --
    sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ eoan main'
    -- Ubuntu 18.04 --
    sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main'
    sudo add-apt-repository ppa:cybermax-dexter/sdl2-backport
    -- Ubuntu 16.04 --
    sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ xenial main'
    -- Ubuntu 19.10/18.04/16.04 LTS --
    sudo apt update
    sudo apt install --install-recommends winehq-devel

    Notes: SAPP doesn't like to play nice on WINE in its normal form (With UPX compression) so here are two versions that
    have the UPX compression removed. This was also provided by .þsϵυdø.þrø×϶n#0007 on Discord