summaryrefslogtreecommitdiff
path: root/world/conf
diff options
context:
space:
mode:
Diffstat (limited to 'world/conf')
-rw-r--r--world/conf/.gitignore1
-rw-r--r--world/conf/char_athena.conf79
-rw-r--r--world/conf/char_local.conf.example18
-rw-r--r--world/conf/inter_athena.conf11
-rw-r--r--world/conf/lan_support.conf45
-rw-r--r--world/conf/tmwa-char-old.conf8
-rw-r--r--world/conf/tmwa-char.conf8
7 files changed, 0 insertions, 170 deletions
diff --git a/world/conf/.gitignore b/world/conf/.gitignore
deleted file mode 100644
index 2c43e911..00000000
--- a/world/conf/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-/*_local.conf
diff --git a/world/conf/char_athena.conf b/world/conf/char_athena.conf
deleted file mode 100644
index 3e0fa61d..00000000
--- a/world/conf/char_athena.conf
+++ /dev/null
@@ -1,79 +0,0 @@
-// Athena Character configuration file.
-
-// Maximum number of user connections permitted on this world.
-// 0 means unlimited, but the current network code has a hard-coded limit
-// of just under 1024 per server (but a world may be many servers).
-max_connect_user: 0
-
-// Interval, in seconds, between saves of the flatfile databases.
-autosave_time: 300
-
-// Character server flatfile database
-char_txt: save/athena.txt
-
-// Location where new characters first appear
-// Format: mapname,x,y. There must be no spaces.
-start_point: 029-2.gat,22,24
-
-// Log Filename
-char_log_filename: log/char.log
-
-// Set the letters/symbols that you want use with 'char_name_option'.
-// This is a cumulative option; specify nothing to reset it.
-// Note: if you want to add a space, it can't be at the beginning or end.
-// default: empty.
-// Note: some characters are problematic:
-// " is needed for GM quoting
-// # is used for string formatting
-// / is the command prefix (but it's still allowed!)
-// : is used as a separator in script menus
-// I'm not sure why []{} are not included though
-//char_name_letters: "#:[]{}
-char_name_letters: $ &'()*+,-.
-char_name_letters: 0123456789
-char_name_letters: ;<=>?
-char_name_letters: ABCDEFGHIJKLMNOPRSTQUVWXYZ
-char_name_letters: \^_`
-char_name_letters: abcdefghijklmnoprstquvwxyz
-char_name_letters: |~
-
-// minimum char name length
-min_name_length: 4
-
-// maximum characters allowed per account
-// set to 1 if you want to limit accounts to 1 character
-char_slots: 9
-
-// max hair style and hair color
-max_hair_style: 1
-max_hair_color: 1
-
-// the minimum value for stats (str, agi, ...)
-min_stat_value: 1
-
-// the maximum value for stats (str, agi, ...)
-max_stat_value: 1
-
-// the sum of all stats combined (str + agi + int + ...)
-total_stat_sum: 6
-
-// Filename of the file which receives the online players list in text
-online_txt_filename: online.txt
-
-// Filename of the file which receives the online players list, but in html version
-online_html_filename: online.html
-
-// minimum GM level to display 'GM' when we want to display it (default: 20)
-online_gm_display_min_level: 60
-
-// refresh time (in sec) of the html file in the explorer (default 20)
-online_refresh_html: 20
-
-// Should we kick an unresponsive map-server?
-anti_freeze_enable: 0
-// Anti-freeze system interval (in seconds)
-// 5 of these must pass before a map-server is kicked.
-anti_freeze_interval: 6
-
-// local settings for this server in this file
-import: conf/char_local.conf
diff --git a/world/conf/char_local.conf.example b/world/conf/char_local.conf.example
deleted file mode 100644
index 920d7892..00000000
--- a/world/conf/char_local.conf.example
+++ /dev/null
@@ -1,18 +0,0 @@
-// Athena Character local configuration file.
-
-// Server Communication username and password.
-userid: s1
-passwd: p1
-
-// Server name, no more than 19 characters
-server_name: The Mana World
-
-// Login Server IP
-login_ip:127.0.0.1
-// Login Server Port
-login_port: 6901
-
-// Character Server IP
-char_ip:127.0.0.1
-// Character Server Port
-char_port: 6122
diff --git a/world/conf/inter_athena.conf b/world/conf/inter_athena.conf
deleted file mode 100644
index 2577deae..00000000
--- a/world/conf/inter_athena.conf
+++ /dev/null
@@ -1,11 +0,0 @@
-// Athena InterServer configuration.
-
-// Storage flatfile database, used for Karfa storage.
-storage_txt: save/storage.txt
-
-// Party flatfile database, for party names, members and other party info.
-party_txt: save/party.txt
-
-// Maximum level difference for XP sharing within a party.
-// 0 to always allow sharing.
-party_share_level: 10
diff --git a/world/conf/lan_support.conf b/world/conf/lan_support.conf
deleted file mode 100644
index b3a6a57a..00000000
--- a/world/conf/lan_support.conf
+++ /dev/null
@@ -1,45 +0,0 @@
-// Note: used by the char-server; another copy is used by the login-server
-
-// This file is necessary to connect to your server locally:
-// by using it's internal (LAN) IP address, or localhost (127.0.0.1)
-
-// The default version treats you LAN as localhost only,
-// which is fine if you have only one computer
-// You only need to change this file if you have a public server
-// AND want to connect from other machines in the LAN
-// (for an nonpublic server it would be best to leave localhost as LAN
-// and treat the rest of your LAN as the WAN)
-
-// Note: if you set up this file to point to your real LAN, you will not
-// be able to do:
-// mana --server localhost --port 6901
-// or mana --server 127.0.0.1 --port 6901
-// because of the check_ip_flag: yes option
-// (which will become mandatory in the next release of the server)
-// instead do:
-// mana --server 192.168.1.100 --port 6901
-// or maybe, depending on how your /etc/hosts and /etc/host.conf are setup,
-// mana --server ben-desktop --port 6901
-// or mana --server ben-desktop.local --port 6901
-
-// Note that only one IP is used, so you can't put different char servers
-// on different machines (unless you do some internal port-forwarding)
-
-
-// the IP that LAN players should use to connect to the map-server
-lan_map_ip: 127.0.0.1
-// lan_map_ip: 192.168.1.100
-
-// put here the Subnet mask of your LAN
-// see output of ifconfig (Linux) or ipconfig (Windows)
-lan_subnet: 127.0.0.1
-//lan_subnet: 127.0.0.1/255.0.0.0
-
-// Common subnets (if you have a subnet that is not one of these,
-// you probably don't need to be reading this)
-//lan_subnet: 10.0.0.0/8
-//lan_subnet: 172.16.0.0/12
-//lan_subnet: 192.168.0.0/16
-
-// Many home routers only use a portion:
-//lan_subnet: 192.168.1.0/255.255.255.0
diff --git a/world/conf/tmwa-char-old.conf b/world/conf/tmwa-char-old.conf
deleted file mode 100644
index b7e37735..00000000
--- a/world/conf/tmwa-char-old.conf
+++ /dev/null
@@ -1,8 +0,0 @@
-// Master config file for The Mana World Athena (char component)
-// This file is used since version 14.x.y
-
-version-lt: 15.1.23
-
-import: conf/char_athena.conf
-import: conf/lan_support.conf
-import: conf/inter_athena.conf
diff --git a/world/conf/tmwa-char.conf b/world/conf/tmwa-char.conf
deleted file mode 100644
index 84213139..00000000
--- a/world/conf/tmwa-char.conf
+++ /dev/null
@@ -1,8 +0,0 @@
-// Master config file for The Mana World Athena (char component)
-// This file is used since version 14.x.y, but major changes in 15.x.y
-
-import: conf/tmwa-char-old.conf
-version-ge: 15.1.23
-char_conf: conf/char_athena.conf
-char_lan_conf: conf/lan_support.conf
-inter_conf: conf/inter_athena.conf