Inspired by LDMUD, this is a telnet, websocket and ssh server that hosts a text-based game. The codebase allows for on-the-fly load/reload code.
Justin Gilman 2d58d33292 server none context hack response attempt | há 6 anos atrás | |
---|---|---|
players | há 6 anos atrás | |
system | há 6 anos atrás | |
website | há 6 anos atrás | |
world | há 6 anos atrás | |
.gitignore | há 6 anos atrás | |
README.md | há 6 anos atrás | |
banner.txt | há 6 anos atrás | |
config.json | há 6 anos atrás | |
index.js | há 6 anos atrás | |
package.json | há 6 anos atrás |
Inspired by LDMUD, this is a telnet, websocket and ssh server that hosts a mud game world. The codebase allows for active load/reload code. Rooms, items, mobiles are all classes, and they have the full capabilties of any javascript code. There are no restrictions on how this can work, so the only thing limiting your world is your own imagination. (And coding skills)
npm install glob websocket ssh2 mime-types
You will also need to generate an ssh key if you plan to use the ssh server.
ssh-keygen -t rsa -b 4096 -C "nodemud server" -f ./id_rsa
For ease of setup, you should be able to just run
npm install
and all of this will be taken care of. Be careful; it will regenerate your SSH key which will cause your users to see a warning.
The server is set up to automatically run using node. Just execute
./system/server.js
or
npm start
The config.json file has some basic configuration settings. Otherwise, just dive in!
Once the server is running, you can log in using the default admin account (admin:admin) and input commands. You can type 'help' to see a list of all the commands available to you. If you need more details, you can type 'help [topic]'
Error handling is done internally; if the class doesn't run or hits an error, the server will continue happily after outputting the stack trace. Obviously if you screw up some of the classes you can break the server, but the intention is to allow the server to continue running while coders make active changes to it.
Create directory /var/starmire, put sshkey and players here Create starmire user with write access to /var/starmire
/lib/systemd/system/starmire.service
[Unit]
Description=Starmire Mud Service
After=network.target
[Service]
Type=simple
ExecStart=/usr/bin/node /var/www/starmire/index.js
Restart=on-failure
User=starmire
[Install]
WantedBy=multi-user.target
sudo systemctl daemon-reload
sudo service starmire start
use sudo service starmire status to debug any issues