Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/clonejo/mc-erl
mc-erl is a server for Minecraft 1.4.7 written in Erlang.
https://github.com/clonejo/mc-erl
Last synced: about 8 hours ago
JSON representation
mc-erl is a server for Minecraft 1.4.7 written in Erlang.
- Host: GitHub
- URL: https://github.com/clonejo/mc-erl
- Owner: clonejo
- License: gpl-3.0
- Created: 2012-03-10T18:47:39.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-03-07T19:17:28.000Z (over 10 years ago)
- Last Synced: 2023-03-22T22:27:02.248Z (over 1 year ago)
- Language: Erlang
- Homepage:
- Size: 1020 KB
- Stars: 43
- Watchers: 6
- Forks: 6
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
## Prerequisites
You'll need an Erlang compiler/vm! If you are on Linux, you can install Erlang using your distribution's package manager. E.g. on Debian/Ubuntu/Linux Mint this will do:sudo apt-get install erlang
You will also need make and rebar, the commonly used Erlang build tool.
## Setup
As we use an Mnesia database for storing data permanently, it has to be set up first. Always keep in mind that the table definitions can change on updates, introducing incompabilities.
1. Download (uncompress if necessary) (or use _git clone_)
2. $ make
3. $ ./setup.sh### Starting:
$ ./run.sh### Stopping:
Press Ctrl+C twice.The server runs at port 25565 (default). The port and other options can be set in "server.conf", restart the server for changes to take effect.
If you want to talk to me (clonejo), I'm idling in #mcdevs on Freenode.
## Feature list
* compatible to Minecraft 1.4.6
* see other players
* see block changes by other players
* protocol encryption### Todo
* proper dropped item handling
* configuration system (see erlconf)
* plugin system
* see player sneaking
* have multiple entity movement routing processes in worlds with high load
* update protocol to 1.7.4
* move protocol implementation out as an external library