Replacements for using minimal and maximal words.

This commit is contained in:
MobiusDevelopment
2022-04-25 22:59:05 +00:00
parent 1dabf3a944
commit f8661a336e
247 changed files with 547 additions and 547 deletions

View File

@@ -650,7 +650,7 @@ AltClanMembersTimeForBonus = 30mins
# Party
# ---------------------------------------------------------------------------
# Maximal count of players in one party.
# Maximum count of players in one party.
# WARNING: More than 7 can cause client UI problems.
# Default: 7
AltPartyMaxMembers = 7
@@ -731,7 +731,7 @@ AutoLootSlotLimit = True
# Default: 900 (15min)
RaidLootRightsInterval = 900
# Minimal size of Command Channel for apply raid loot privilege
# Minimum size of Command Channel for apply raid loot privilege
# Default: 45
RaidLootRightsCCSize = 45

View File

@@ -12,11 +12,11 @@ MpCostMultipler = 1
# Payment for Sell Buff System, can be changed to custom server coin
PaymentID = 57
# Minimal price of every buff
MinimalPrice = 100000
# Minimum price of every buff
MinimumPrice = 100000
# Maximal price of every buff
MaximalPrice = 100000000
# Maximum price of every buff
MaximumPrice = 100000000
# Maximum count of buffs in sell list
MaxBuffs = 20

View File

@@ -77,7 +77,7 @@ IntervalOfBelethSpawn = 192
# Random interval. Range 1-192. Retail: 148
RandomOfBelethSpawn = 148
#Minimal count of players for enter to Beleth. Retail: 49
#Minimum count of players for enter to Beleth. Retail: 49
BelethMinPlayers = 49
#Maximum count of players for enter to Beleth. Retail: 350
@@ -96,7 +96,7 @@ IntervalOfKelbimSpawn = 48
# Random interval. Range 1-192. Retail: 24
RandomOfKelbimSpawn = 24
#Minimal count of players for enter to Kelbim. Retail: 21
#Minimum count of players for enter to Kelbim. Retail: 21
KelbimMinPlayers = 21
#Maximum count of players for enter to Kelbim. Retail: 35
@@ -106,7 +106,7 @@ KelbimMaxPlayers = 35
# Anakim
# ---------------------------------------------------------------------------
# Minimal count of players for enter to Anakim. Retail: 98
# Minimum count of players for enter to Anakim. Retail: 98
AnakimMinPlayers = 98
# Maximum count of players for enter to Anakim. Retail: 120
@@ -119,7 +119,7 @@ AnakimMinPlayerLvl = 105
# Lilith
# ---------------------------------------------------------------------------
# Minimal count of players for enter to Lilith. Retail: 98
# Minimum count of players for enter to Lilith. Retail: 98
LilithMinPlayers = 98
# Maximum count of players for enter to Lilith. Retail: 120
@@ -138,7 +138,7 @@ IntervalOfTraskenSpawn = 264
# Random interval. Range 1-192. Retail: 72
RandomOfTraskenSpawn = 72
# Minimal count of players for enter to Trasken. Retail: 49
# Minimum count of players for enter to Trasken. Retail: 49
TraskenMinPlayers = 49
# Maximum count of players for enter to Trasken. Retail: 112
@@ -157,7 +157,7 @@ IntervalOfLindviorSpawn = 264
# Random interval. Range 1-192. Retail: 72
RandomOfLindviorSpawn = 72
# Minimal count of players for enter to Lindvior. Retail: 49
# Minimum count of players for enter to Lindvior. Retail: 49
LindviorMinPlayers = 49
# Maximum count of players for enter to Lindvior. Retail: 112
@@ -176,7 +176,7 @@ IntervalOfRamonaSpawn = 72
# Random interval. Range 1-192
RandomOfRamonaSpawn = 48
# Minimal count of players for enter to Ramona. Retail: 7
# Minimum count of players for enter to Ramona. Retail: 7
RamonaMinPlayers = 7
# ---------------------------------------------------------------------------
@@ -192,7 +192,7 @@ IntervalOfHeliosSpawn = 264
# Random interval. Range 1-192
RandomOfHeliosSpawn = 72
# Minimal count of players for enter to Helios. Retail: 70
# Minimum count of players for enter to Helios. Retail: 70
HeliosMinPlayers = 70
# Minimum players Level for enter to Helios. Retail: 102
@@ -208,7 +208,7 @@ IntervalOfEtinaSpawn = 72
# Random interval. Range 1-192. Retail: 72
RandomOfEtinaSpawn = 1
# Minimal count of players for enter to Etis Van Etina. Retail: 49
# Minimum count of players for enter to Etis Van Etina. Retail: 49
EtinaMinPlayers = 2
# Maximum count of players for enter to Etis Van Etina. Retail: 112
@@ -233,7 +233,7 @@ RandomOfFafurionSpawn = 72
# Maximum count of players for enter to 200. Retail: 200
FafurionMaxPlayers = 200
# Minimal count of players for enter to Fafurion. Retail: 49
# Minimum count of players for enter to Fafurion. Retail: 49
FafurionMinPlayers = 49
# Minimum players Level for enter to Fafurion. Retail: 105

View File

@@ -65,7 +65,7 @@ AltOlyLoserReward = 45584,7
# Default: 45584
AltOlyCompRewItem = 45584
# The minimal matches you need to participate to receive point rewards
# The minimum matches you need to participate to receive point rewards
# Default: 10
AltOlyMinMatchesForPoints = 10

View File

@@ -200,7 +200,7 @@ public class SellBuff implements IVoicedCommandHandler, IBypassHandler
}
catch (NumberFormatException e)
{
player.sendMessage("Too big price! Maximal price is " + Config.SELLBUFF_MAX_PRICE);
player.sendMessage("Too big price! Maximum price is " + Config.SELLBUFF_MAX_PRICE);
SellBuffsManager.getInstance().sendBuffEditMenu(player);
}
}
@@ -281,7 +281,7 @@ public class SellBuff implements IVoicedCommandHandler, IBypassHandler
}
catch (NumberFormatException e)
{
player.sendMessage("Too big price! Maximal price is " + Config.SELLBUFF_MIN_PRICE);
player.sendMessage("Too big price! Maximum price is " + Config.SELLBUFF_MIN_PRICE);
SellBuffsManager.getInstance().sendBuffEditMenu(player);
}
}
@@ -298,12 +298,12 @@ public class SellBuff implements IVoicedCommandHandler, IBypassHandler
}
else if (price < Config.SELLBUFF_MIN_PRICE)
{
player.sendMessage("Too small price! Minimal price is " + Config.SELLBUFF_MIN_PRICE);
player.sendMessage("Too small price! Minimum price is " + Config.SELLBUFF_MIN_PRICE);
return false;
}
else if (price > Config.SELLBUFF_MAX_PRICE)
{
player.sendMessage("Too big price! Maximal price is " + Config.SELLBUFF_MAX_PRICE);
player.sendMessage("Too big price! Maximum price is " + Config.SELLBUFF_MAX_PRICE);
return false;
}
else if (player.getSellingBuffs().size() >= Config.SELLBUFF_MAX_BUFFS)