A "Server Emulator" for the Flash Game "Horse Isle"
Find a file
2022-07-25 21:13:10 +12:00
.github/workflows Make flashplayer 777 2022-07-25 19:52:05 +12:00
HorseIsleData@0afb5924fd Try native build again 2022-06-18 03:04:52 +12:00
HorseIsleServer Update HISP 2022-07-25 21:13:10 +12:00
HorseIsleWeb@d88992f75c Port N00BS to linux 2022-07-25 19:16:21 +12:00
MigrationSQL Make flashplayer 777 2022-07-25 19:52:05 +12:00
.gitignore Update gitignore 2022-07-25 20:16:19 +12:00
.gitmodules Make flashplayer 777 2022-07-25 19:52:05 +12:00
.mailmap Make flashplayer 777 2022-07-25 19:52:05 +12:00
LICENSE Make flashplayer 777 2022-07-25 19:52:05 +12:00
README.md Make flashplayer 777 2022-07-25 19:52:05 +12:00

HISP - HorseIsleServer Program

Build

HISP is a "Server Emulator" for Horse Isle 1
You may know of "private servers" for big MMO games such as Runescape or Club Penguin
well they essentailly run off "Server Emulators".

!!! ALL FEATURES NOW IMPLEMENTED (um, unless theres some obscure thing i dont know about :D)

tl;dr, think "Club Penguin Rewritten" but with Horse Isle.

Installation:

  • Linux:

Install on Ubuntu via APT:

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 34F644BC70C746CE48139C595129317F33AE659C
sudo add-apt-repository 'deb http://deb.silica.codes debian main'
sudo apt update
sudo apt install hisp

Install on Debian via APT:

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 34F644BC70C746CE48139C595129317F33AE659C
sudo  bash -c 'echo "deb http://deb.silica.codes debian main">>/etc/apt/sources.list'
sudo apt update
sudo apt install hisp

Then simply edit /etc/hisp/server.properties & change to correct database credentials and start the server using systemctl start hisp

Commands

(legend: <> Required, [] Optional)

== Admin Commands ==            
    %GIVE                 
              OBJECT <itemid / RANDOM> [username / ALL]         
              MONEY <amount> [username]             
              HORSE <breedid> [username]         
              QUEST <questid> [FORCE]       
              AWARD <awardid> [username]
    %GOTO                             
              <x>,<y>         
              PLAYER <playername>        
              AREA <locationname>           
              NPC <npcname>             
    %SWF <swf> [username / ALL]
    %DELITEM <itemid> [username]
    %JUMP <playername> HERE              
    %NOCLIP (toggle)            
    %MODHORSE <id> <stat> <value>
    %CALL HORSE            
    %SHUTDOWN
== Moderator Commands ==         
    %KICK <username> [reason]         
    %RULES <username>          
    %STEALTH (toggle)        
    %BAN <username> [reason]     
    %PRISON <username>
    %UNBAN <username>       
    %ESCAPE               
== Player Commands ==         
    !VERSION 
    !MUTE                    
              ALL        
              GLOBAL       
              ISLAND        
              NEAR        
              HERE        
              BUDDY        
              PM        
              BR          
              SOCIALS         
              LOGINS            
    !UNMUTE              
              ALL         
              GLOBAL         
              ISLAND         
              NEAR        
              HERE         
              BUDDY       
              PM           
              BR             
              SOCIALS           
              LOGINS               
    !HEAR (same as !UNMUTE)            
    !AUTOREPLY [message]              
    !QUIZ                   
    !WARP           
              <playername>           
              <locationame>        
    !DANCE <udlr>       

Depends

HISP Depends on a SQL Server, its been tested and known to work specifically with MariaDB, https://mariadb.org/ Set its information into server.properties or the server will just crash on first run /-/

Building

Building the server from source requires Microsoft .NET Core SDK, targetting version 7.0 https://dotnet.microsoft.com/download/dotnet-core use dotnet build to build a debug build, (requires .NET Core Runtime) quickly or one of our publishing XML's ex:
dotnet publish -p:PublishProfile=Linux64.pubxml to to build it standalone.

Web Server

Theres a bunch of saved files from the Horse Isle 1.0 website, as well as some basic functionality to make it work like the original site, the files are in the "HorseIsleWeb" folder, it requires PHP 8.0, with the modules "intl" and "mysqli"