No description
Find a file
2020-10-25 20:20:08 +11:00
.github/ISSUE_TEMPLATE Update issue templates 2019-02-01 22:40:35 -05:00
.vscode Fix for issue with recall: no energy attribute is causing issues (#265) 2017-08-30 13:49:37 -04:00
bundles Update setup-modules to download example bundles 2018-10-27 02:26:30 -04:00
data MOTD moved into the example input events bundle 2019-01-02 19:03:58 -05:00
log Logger (#156) 2017-02-28 22:42:11 -05:00
util Fix unterminated string 2019-02-09 21:17:32 -05:00
.eslintrc Add generated source docs 2017-07-14 18:28:35 -04:00
.gitignore Create ranvier-sentient for NPC control via api.ai 2017-07-19 03:06:38 -04:00
.jshintrc Update jshint config, fix weird jshint bug with BundleManager 2017-02-06 11:54:01 -05:00
.nvmrc Update .nvmrc (#388) 2019-03-28 08:50:21 -07:00
CONTRIBUTING.md Updates for mkdocs 0.17.3 2018-10-21 01:18:33 -04:00
LICENSE.txt Update copyright year 2019-02-02 15:05:49 -05:00
package-lock.json Bump js-yaml from 3.12.1 to 3.13.1 (#391) 2019-06-10 11:55:55 -04:00
package.json Fix #398: npm start includes options that aren't supported in the current ranvier script 2020-10-25 20:20:08 +11:00
ranvier Fix #387: Comment incorrectly suggests that a tick is "every half second" 2020-10-25 20:07:26 +11:00
ranvier.json Change entitySources to entityLoaders to better match the underlying architecture 2019-01-02 19:56:03 -05:00
README.mkd Update slack invite link 2019-11-01 11:50:16 -04:00

ranvier

Node.js-based MUD engine

Ranvier is a MUD game engine whose goal is to be a simple but powerful way to build whatever MUD you want with special care given to extensibility. The core code strives to be completely unopinionated toward any specific style of game while using the bundle system to build the game you want without having to dig through the engine's code.

Special Features

  • Robust bundle system: Nearly every aspect of the game can be modified without changing the core and allows for easy packaging and sharing of commands/areas/items/npcs/channels/behaviors
  • Unopinionated network layer: easily swap out telnet for any network layer you like. No need to gut the whole codebase just to support a different transport type, just drop in a file.
  • Customizable data layer: You are not tied to saving in any particular database or file storage sytem
  • Optional coordinate based room system allowing for the flexibilty of a standard MUD world with the easy mappability of a strict 3D world.
  • Scripting for all entities in the game for any event along with behaviors to create shared, composable scripts
  • Skill system with passive/active skills
  • Effects e.g., buffs/debuffs
  • Quest system allowing for starting/progress/completion from any event in the game
  • Communication channels with custom audiences

Documentation

Ranvier prides itself on having thorough documentation which is available on our website: ranviermud.com

Slack

We have a Slack channel you can use to ask questions, suggest features, or just keep up to date with the project: https://ranviermud.slack.com

Get an invite

Requirements

Demo

Point your favorite client or telnet to ranviermud.com port 4000. This demo server is wiped and updated from the master branch every hour.