multi-user dungeon written in go
Go to file
dozens ad4efeb8c2 hello world
- add readme
- make an echo server
2021-12-28 11:45:57 -07:00
docs hello world 2021-12-28 11:45:57 -07:00
main.go hello world 2021-12-28 11:45:57 -07:00

docs/README.md

gomud

multi-user dungeon engine written in go

motivation

  • learn go
  • make something super fun

current status

  • echo server

game features

  • text based rpg
  • it's super fun

application features

  • auth (TLS?): user, password, characters
  • connect via telnet or netcat
  • persistance (database)

entities

  • characters/heroes
    • level (experience)
    • stats
    • skills (not classes?)
    • ancestry (not races)
  • items
    • weapons (wieldable)
    • armour (wearable)
  • npcs
    • monsters
    • friendlies
  • environment
  • rooms
  • quests

roadmap

  • scriptable: should be able to create content in game
  • exploration to scale: wilderness map
  • websocket support