Skip to content

The Master Wright Master Server AO2 master server implementation

License

Notifications You must be signed in to change notification settings

nnoodle/master_wright

Repository files navigation

master_wright

an attorney online 2 master server implementation.

build

$ rebar3 compile

config

configuration is done through editing the config/sys.config file.

%%% sys.config --                          -*- mode: erlang -*-
[
 {master_wright,
  [{num_acceptors, 10},                    % number of process that accept connections
   {max_connections, 1024},                % maximum number of active connections, use infinity to disable limit
   {port, 27016},                          % port to listen on
   {motd, "Welcome to Attorney Online!"},  % Message Of The Day (seen after clients connect)
   {master_chat, true}                     % whether or not master chat is enabled
  ]},
 %% options for Mnesia, an Erlang/OTP library master_wright uses
 {mnesia,
  [{dir, "/home/its-a-me/.cache/master_wright"}  % absolute path to database
                                                 % (defaults to the current directory)
  ]}
].

About

The Master Wright Master Server AO2 master server implementation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages