summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSirius <zopokx@gmail.com>2020-06-07 22:32:40 +0200
committerSirius <zopokx@gmail.com>2020-06-07 22:32:40 +0200
commit0ab6331cfcc2bf404ed5a20792d91417cec0ce7a (patch)
tree14c8581d82e2b2a5981d97c6e14e51da2971ce99
parentf6b6ecc723608d84d462448c215232beb985616a (diff)
downloadhercules-0ab6331cfcc2bf404ed5a20792d91417cec0ce7a.tar.gz
hercules-0ab6331cfcc2bf404ed5a20792d91417cec0ce7a.tar.bz2
hercules-0ab6331cfcc2bf404ed5a20792d91417cec0ce7a.tar.xz
hercules-0ab6331cfcc2bf404ed5a20792d91417cec0ce7a.zip
Typo errors (in all conf/)
-rw-r--r--conf/battlegrounds.conf10
-rw-r--r--conf/char/char-server.conf2
-rw-r--r--conf/common/socket.conf8
-rw-r--r--conf/global/console.conf2
-rw-r--r--conf/global/sql_connection.conf2
-rw-r--r--conf/network.conf2
6 files changed, 13 insertions, 13 deletions
diff --git a/conf/battlegrounds.conf b/conf/battlegrounds.conf
index 2b4184e11..eca161d08 100644
--- a/conf/battlegrounds.conf
+++ b/conf/battlegrounds.conf
@@ -14,7 +14,7 @@
//= arenas: ({
//= //- allowedTypes defines what kind of applications the arena will accept, setting is not case-sensitive and is ok with whitespaces
//= allowedTypes: "Solo | Party" //Arena Accepts solo and party-type joins
-//= allowedTypes: "guild|party" //Arena Accepts solo and guild-type joins
+//= allowedTypes: "guild | party" //Arena Accepts solo and guild-type joins
//= allowedTypes: "All" //Arena Accepts solo, party and guild-type joins
//= //- fillAnnounce (optional arena param)
//= })
@@ -64,7 +64,7 @@ battlegrounds: (
delay_var: "Flavius_BG_Tick" /* char variable name that will store the delay for this match */
maxDuration: 30 /* maximum duration in minutes, if reached game ends and highest score wins (or calls a draw if scores are equal) */
fillDuration: 20 /* time in seconds to wait for more applications when minimum has been reached */
- pGameDuration: 20 /* time to wait for players to confirm their attendence after queueing process has finished */
+ pGameDuration: 20 /* time to wait for players to confirm their attendance after queueing process has finished */
},{
name: "KVM (Level 80 and up)" //must match the name in client files
event: "KvM03_BG::OnPlayerListReady"
@@ -82,7 +82,7 @@ battlegrounds: (
delay_var: "KVM_BG_Tick" /* char variable name that will store the delay for this match */
maxDuration: 30 /* maximum duration in minutes, if reached game ends and highest score wins (or calls a draw if scores are equal) */
fillDuration: 20 /* time in seconds to wait for more applications when minimum has been reached */
- pGameDuration: 20 /* time to wait for players to confirm their attendence after queueing process has finished */
+ pGameDuration: 20 /* time to wait for players to confirm their attendance after queueing process has finished */
},{
name: "KVM (Level 60~79)" //must match the name in client files
event: "KvM03_BG::OnPlayerListReady"
@@ -100,7 +100,7 @@ battlegrounds: (
delay_var: "KVM_BG_Tick" /* char variable name that will store the delay for this match */
maxDuration: 30 /* maximum duration in minutes, if reached game ends and highest score wins (or calls a draw if scores are equal) */
fillDuration: 20 /* time in seconds to wait for more applications when minimum has been reached */
- pGameDuration: 20 /* time to wait for players to confirm their attendence after queueing process has finished */
+ pGameDuration: 20 /* time to wait for players to confirm their attendance after queueing process has finished */
},{
name: "KVM (Level 59 and below)" //must match the name in client files
event: "KvM03_BG::OnPlayerListReady"
@@ -118,7 +118,7 @@ battlegrounds: (
delay_var: "KVM_BG_Tick" /* char variable name that will store the delay for this match */
maxDuration: 30 /* maximum duration in minutes, if reached game ends and highest score wins (or calls a draw if scores are equal) */
fillDuration: 20 /* time in seconds to wait for more applications when minimum has been reached */
- pGameDuration: 20 /* time to wait for players to confirm their attendence after queueing process has finished */
+ pGameDuration: 20 /* time to wait for players to confirm their attendance after queueing process has finished */
}
)
})
diff --git a/conf/char/char-server.conf b/conf/char/char-server.conf
index a8918e705..8632aa3ad 100644
--- a/conf/char/char-server.conf
+++ b/conf/char/char-server.conf
@@ -152,7 +152,7 @@ char_configuration: {
// example: Test-test-TEST-TesT; Value: 0 not allowed (default), 1 allowed
name_ignoring_case: false
- // Manage possible letters/symbol in the name of charater. Control character (0x00-0x1f) are never accepted. Possible values are:
+ // Manage possible letters/symbol in the name of character. Control character (0x00-0x1f) are never accepted. Possible values are:
// NOTE: Applies to character, party and guild names.
// 0: no restriction (default)
// 1: only letters/symbols in 'name_letters' option.
diff --git a/conf/common/socket.conf b/conf/common/socket.conf
index fe171336a..9367b181a 100644
--- a/conf/common/socket.conf
+++ b/conf/common/socket.conf
@@ -34,13 +34,13 @@ socket_configuration: {
// Display debug reports (When something goes wrong during the report, the report is saved.)
debug: false
- // Linux/Epoll: Maxmimum Events per cycle
+ // Linux/Epoll: Maximum Events per cycle
// Default Value:
- // (Maxmimum Supported Connections)/2
+ // (Maximum Supported Connections)/2
// NOTE: this controls the maximum collected socket-events per-cycle (call to epoll_wait())
- // for example settings this to 32 will allow up to 32 events (incomming data/new connections
+ // for example settings this to 32 will allow up to 32 events (incoming data/new connections
// per server-cycle.
- // NOTE: Recommended Settings is at least half the maxmimum supported connections
+ // NOTE: Recommended Settings is at least half the maximum supported connections
// Settings this to a lower value, may cause lags/delays
// Depending on available CPU Time
// NOTE: This Setting is only available on Linux when build using EPoll as event dispatcher!
diff --git a/conf/global/console.conf b/conf/global/console.conf
index 4865fd9b7..56213cbea 100644
--- a/conf/global/console.conf
+++ b/conf/global/console.conf
@@ -26,7 +26,7 @@
//=========================================================================
//= Server Console configuration file.
//=========================================================================
-// This file affects how ALL server consoles work, unless explictly defined
+// This file affects how ALL server consoles work, unless explicitly defined
// so in the server configuration file (See doc/global_configuration.txt
// for more information).
//=========================================================================
diff --git a/conf/global/sql_connection.conf b/conf/global/sql_connection.conf
index 7a8932f33..2441c4cee 100644
--- a/conf/global/sql_connection.conf
+++ b/conf/global/sql_connection.conf
@@ -26,7 +26,7 @@
//=========================================================================
//= SQL connection configuration file.
//=========================================================================
-// This file affects how ALL server sql connections work, unless explictly
+// This file affects how ALL server sql connections work, unless explicitly
// defined so in the server configuration file (See
// doc/global_configuration.txt for more information).
//=========================================================================
diff --git a/conf/network.conf b/conf/network.conf
index b355acb25..b6f1aa978 100644
--- a/conf/network.conf
+++ b/conf/network.conf
@@ -26,7 +26,7 @@ allowed: (
/*
* List here any IP ranges a char- or map-server can connect from. These ranges
- * will also be excluded from the automatic ipban in casee of password failure.
+ * will also be excluded from the automatic ipban in case of password failure.
* Any entry present in this list is also automatically included in the
* allowed IP list.
* Note: This may be a security threat. Only edit this list if you know what