You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Vildravn ea8b9cf3ce Better installation guide 7 years ago
src Only check canEquipItem for faction items 7 years ago
.gitignore Fixes #35 7 years ago
LICENSE Update LICENSE 7 years ago
README.md Better installation guide 7 years ago

README.md

Isleward

A multiplayer, moddable, extensible roguelike built with NodeJS, JS, HTML and CSS

Test Server | Discord | Subreddit | Blog | Wiki | Twitter | Patreon

Installation and Usage

Windows

  1. (Optional) Install Chocolatey
    • Launch Command Line as Administrator
    • Run the following command: @powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
  2. Install NodeJS
    • ‘With Chocolatey: choco install nodejs
    • Manually: Download latest version from nodejs.org
  3. Install Git
    • With Chocolatey: choco install git
    • Manually: Download latest version from git-scm.com
  4. Open a new Command Line window and run the following commands
  5. Get the code: git clone https://gitlab.com/Isleward/isleward.git
  6. Navigate to the server folder: cd isleward/src/server
  7. Install dependencies: npm install
  8. Run: node --expose-gc index.js
  9. Navigate http://localhost:4000/ in your browser

Linux

  1. Download Git, NodeJS and npm through your package manager
    • Ubuntu & Debian: sudo apt-get install git nodejs npm
    • ArchLinux: sudo pacman -S git nodejs npm
    • CentOS: yum install git nodejs npm
  2. Open a new Terminal window and run the following commands
  3. Get the code: git clone https://gitlab.com/Isleward/isleward.git
  4. Navigate to the server folder: cd isleward/src/server
  5. Install dependencies: npm install
  6. Run: node --expose-gc index.js
  7. Navigate http://localhost:4000/ in your browser

MacOS

  1. (Optional) Install Homebrew)
  2. Install NodeJS
    • With Homebrew: brew install node
    • Manually: Download latest version from nodejs.org
  3. Install Git
    • With Homebrew: brew install git
    • Manually: Download latest version from git-scm.com
  4. Open a new Terminal window and run the following commands
  5. Get the code: git clone https://gitlab.com/Isleward/isleward.git
  6. Navigate to the server folder: cd isleward/src/server
  7. Install dependencies: npm install
  8. Run: node --expose-gc index.js
  9. Navigate http://localhost:4000/ in your browser

Ingame Screenshots