diff --git a/L2J_Mobius_01.0_Ertheia/dist/game/config/Character.ini b/L2J_Mobius_01.0_Ertheia/dist/game/config/Character.ini index c17bf25714..46192e5eea 100644 --- a/L2J_Mobius_01.0_Ertheia/dist/game/config/Character.ini +++ b/L2J_Mobius_01.0_Ertheia/dist/game/config/Character.ini @@ -644,7 +644,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 @@ -725,7 +725,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 diff --git a/L2J_Mobius_01.0_Ertheia/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_01.0_Ertheia/dist/game/config/Custom/SellBuffs.ini index 1c50d35a49..4002cfb48d 100644 --- a/L2J_Mobius_01.0_Ertheia/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_01.0_Ertheia/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_01.0_Ertheia/dist/game/config/GrandBoss.ini b/L2J_Mobius_01.0_Ertheia/dist/game/config/GrandBoss.ini index 985fe9e143..3c3bfb661b 100644 --- a/L2J_Mobius_01.0_Ertheia/dist/game/config/GrandBoss.ini +++ b/L2J_Mobius_01.0_Ertheia/dist/game/config/GrandBoss.ini @@ -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 @@ -122,7 +122,7 @@ AnakimMaxPlayerLvl = 94 # 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 @@ -144,7 +144,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 @@ -163,7 +163,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 diff --git a/L2J_Mobius_01.0_Ertheia/dist/game/config/Olympiad.ini b/L2J_Mobius_01.0_Ertheia/dist/game/config/Olympiad.ini index 844fb51db4..5fcc1b786c 100644 --- a/L2J_Mobius_01.0_Ertheia/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_01.0_Ertheia/dist/game/config/Olympiad.ini @@ -79,7 +79,7 @@ AltOlyTeamReward = 13722,85 # 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 diff --git a/L2J_Mobius_01.0_Ertheia/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_01.0_Ertheia/dist/game/data/scripts/custom/SellBuff/SellBuff.java index a953a45edf..793906977f 100644 --- a/L2J_Mobius_01.0_Ertheia/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_01.0_Ertheia/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -197,7 +197,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); } } @@ -274,7 +274,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); } } @@ -291,12 +291,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) diff --git a/L2J_Mobius_01.0_Ertheia/java/org/l2jmobius/Config.java b/L2J_Mobius_01.0_Ertheia/java/org/l2jmobius/Config.java index fa22c257cf..26a5fa4231 100644 --- a/L2J_Mobius_01.0_Ertheia/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_01.0_Ertheia/java/org/l2jmobius/Config.java @@ -3469,8 +3469,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_01.0_Ertheia/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_01.0_Ertheia/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d8c2a5c679..7263d256ac 100644 --- a/L2J_Mobius_01.0_Ertheia/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_01.0_Ertheia/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -139,7 +139,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_01.0_Ertheia/java/org/l2jmobius/gameserver/model/ArmorSet.java b/L2J_Mobius_01.0_Ertheia/java/org/l2jmobius/gameserver/model/ArmorSet.java index a84709e2db..fbfe633ecc 100644 --- a/L2J_Mobius_01.0_Ertheia/java/org/l2jmobius/gameserver/model/ArmorSet.java +++ b/L2J_Mobius_01.0_Ertheia/java/org/l2jmobius/gameserver/model/ArmorSet.java @@ -102,7 +102,7 @@ public class ArmorSet } /** - * The list of skills that are activated when set reaches it's minimal equipped items condition + * The list of skills that are activated when set reaches it's minimum equipped items condition * @return */ public List getSkills() diff --git a/L2J_Mobius_01.0_Ertheia/java/org/l2jmobius/gameserver/model/quest/Quest.java b/L2J_Mobius_01.0_Ertheia/java/org/l2jmobius/gameserver/model/quest/Quest.java index 71a2f8c7eb..33040b3ad8 100644 --- a/L2J_Mobius_01.0_Ertheia/java/org/l2jmobius/gameserver/model/quest/Quest.java +++ b/L2J_Mobius_01.0_Ertheia/java/org/l2jmobius/gameserver/model/quest/Quest.java @@ -1765,7 +1765,7 @@ public class Quest extends AbstractScript implements IIdentifiable /** * @param player the player whose language settings to use in finding the html of the right language - * @return the default html for when player don't have minimal level for reward: "You cannot receive quest rewards as your character.." + * @return the default html for when player don't have minimum level for reward: "You cannot receive quest rewards as your character.." */ public static String getNoQuestLevelRewardMsg(Player player) { diff --git a/L2J_Mobius_01.0_Ertheia/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java b/L2J_Mobius_01.0_Ertheia/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java index 7cb2bf4425..2b7a5afbeb 100644 --- a/L2J_Mobius_01.0_Ertheia/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java +++ b/L2J_Mobius_01.0_Ertheia/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java @@ -58,7 +58,7 @@ public class BuyListSeed implements IClientOutgoingPacket packet.writeH(_list.size()); // list length for (SeedProduction s : _list) { - packet.writeC(0); // mask item 0 to print minimal item information + packet.writeC(0); // mask item 0 to print minimum item information packet.writeD(s.getId()); // ObjectId packet.writeD(s.getId()); // ItemId packet.writeC(0xFF); // T1 diff --git a/L2J_Mobius_02.5_Underground/dist/game/config/Character.ini b/L2J_Mobius_02.5_Underground/dist/game/config/Character.ini index c81747f8ca..7420ed5791 100644 --- a/L2J_Mobius_02.5_Underground/dist/game/config/Character.ini +++ b/L2J_Mobius_02.5_Underground/dist/game/config/Character.ini @@ -644,7 +644,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 @@ -725,7 +725,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 diff --git a/L2J_Mobius_02.5_Underground/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_02.5_Underground/dist/game/config/Custom/SellBuffs.ini index 1c50d35a49..4002cfb48d 100644 --- a/L2J_Mobius_02.5_Underground/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_02.5_Underground/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_02.5_Underground/dist/game/config/GrandBoss.ini b/L2J_Mobius_02.5_Underground/dist/game/config/GrandBoss.ini index 985fe9e143..3c3bfb661b 100644 --- a/L2J_Mobius_02.5_Underground/dist/game/config/GrandBoss.ini +++ b/L2J_Mobius_02.5_Underground/dist/game/config/GrandBoss.ini @@ -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 @@ -122,7 +122,7 @@ AnakimMaxPlayerLvl = 94 # 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 @@ -144,7 +144,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 @@ -163,7 +163,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 diff --git a/L2J_Mobius_02.5_Underground/dist/game/config/Olympiad.ini b/L2J_Mobius_02.5_Underground/dist/game/config/Olympiad.ini index 7a80e060be..9fc44f9cc9 100644 --- a/L2J_Mobius_02.5_Underground/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_02.5_Underground/dist/game/config/Olympiad.ini @@ -79,7 +79,7 @@ AltOlyTeamReward = 13722,85 # 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 diff --git a/L2J_Mobius_02.5_Underground/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_02.5_Underground/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_02.5_Underground/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_02.5_Underground/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_02.5_Underground/java/org/l2jmobius/Config.java b/L2J_Mobius_02.5_Underground/java/org/l2jmobius/Config.java index 63a7997567..13007d3184 100644 --- a/L2J_Mobius_02.5_Underground/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_02.5_Underground/java/org/l2jmobius/Config.java @@ -3493,8 +3493,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_02.5_Underground/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_02.5_Underground/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d8c2a5c679..7263d256ac 100644 --- a/L2J_Mobius_02.5_Underground/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_02.5_Underground/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -139,7 +139,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_02.5_Underground/java/org/l2jmobius/gameserver/model/ArmorSet.java b/L2J_Mobius_02.5_Underground/java/org/l2jmobius/gameserver/model/ArmorSet.java index a84709e2db..fbfe633ecc 100644 --- a/L2J_Mobius_02.5_Underground/java/org/l2jmobius/gameserver/model/ArmorSet.java +++ b/L2J_Mobius_02.5_Underground/java/org/l2jmobius/gameserver/model/ArmorSet.java @@ -102,7 +102,7 @@ public class ArmorSet } /** - * The list of skills that are activated when set reaches it's minimal equipped items condition + * The list of skills that are activated when set reaches it's minimum equipped items condition * @return */ public List getSkills() diff --git a/L2J_Mobius_02.5_Underground/java/org/l2jmobius/gameserver/model/quest/Quest.java b/L2J_Mobius_02.5_Underground/java/org/l2jmobius/gameserver/model/quest/Quest.java index e87d0ddaa4..ce2e3df36c 100644 --- a/L2J_Mobius_02.5_Underground/java/org/l2jmobius/gameserver/model/quest/Quest.java +++ b/L2J_Mobius_02.5_Underground/java/org/l2jmobius/gameserver/model/quest/Quest.java @@ -1767,7 +1767,7 @@ public class Quest extends AbstractScript implements IIdentifiable /** * @param player the player whose language settings to use in finding the html of the right language - * @return the default html for when player don't have minimal level for reward: "You cannot receive quest rewards as your character.." + * @return the default html for when player don't have minimum level for reward: "You cannot receive quest rewards as your character.." */ public static String getNoQuestLevelRewardMsg(Player player) { diff --git a/L2J_Mobius_02.5_Underground/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java b/L2J_Mobius_02.5_Underground/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java index 7cb2bf4425..2b7a5afbeb 100644 --- a/L2J_Mobius_02.5_Underground/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java +++ b/L2J_Mobius_02.5_Underground/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java @@ -58,7 +58,7 @@ public class BuyListSeed implements IClientOutgoingPacket packet.writeH(_list.size()); // list length for (SeedProduction s : _list) { - packet.writeC(0); // mask item 0 to print minimal item information + packet.writeC(0); // mask item 0 to print minimum item information packet.writeD(s.getId()); // ObjectId packet.writeD(s.getId()); // ItemId packet.writeC(0xFF); // T1 diff --git a/L2J_Mobius_03.0_Helios/dist/game/config/Character.ini b/L2J_Mobius_03.0_Helios/dist/game/config/Character.ini index c81747f8ca..7420ed5791 100644 --- a/L2J_Mobius_03.0_Helios/dist/game/config/Character.ini +++ b/L2J_Mobius_03.0_Helios/dist/game/config/Character.ini @@ -644,7 +644,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 @@ -725,7 +725,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 diff --git a/L2J_Mobius_03.0_Helios/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_03.0_Helios/dist/game/config/Custom/SellBuffs.ini index 8e8a0596f6..d17d92b6ef 100644 --- a/L2J_Mobius_03.0_Helios/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_03.0_Helios/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_03.0_Helios/dist/game/config/GrandBoss.ini b/L2J_Mobius_03.0_Helios/dist/game/config/GrandBoss.ini index 6b8366025d..0776a8c4d7 100644 --- a/L2J_Mobius_03.0_Helios/dist/game/config/GrandBoss.ini +++ b/L2J_Mobius_03.0_Helios/dist/game/config/GrandBoss.ini @@ -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 @@ -122,7 +122,7 @@ AnakimMaxPlayerLvl = 94 # 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 @@ -144,7 +144,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 @@ -163,7 +163,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 @@ -182,7 +182,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 # --------------------------------------------------------------------------- @@ -198,7 +198,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 diff --git a/L2J_Mobius_03.0_Helios/dist/game/config/Olympiad.ini b/L2J_Mobius_03.0_Helios/dist/game/config/Olympiad.ini index 7a80e060be..9fc44f9cc9 100644 --- a/L2J_Mobius_03.0_Helios/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_03.0_Helios/dist/game/config/Olympiad.ini @@ -79,7 +79,7 @@ AltOlyTeamReward = 13722,85 # 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 diff --git a/L2J_Mobius_03.0_Helios/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_03.0_Helios/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_03.0_Helios/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_03.0_Helios/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_03.0_Helios/java/org/l2jmobius/Config.java b/L2J_Mobius_03.0_Helios/java/org/l2jmobius/Config.java index dd85afebe7..f799b45abf 100644 --- a/L2J_Mobius_03.0_Helios/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_03.0_Helios/java/org/l2jmobius/Config.java @@ -3515,8 +3515,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_03.0_Helios/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_03.0_Helios/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d8c2a5c679..7263d256ac 100644 --- a/L2J_Mobius_03.0_Helios/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_03.0_Helios/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -139,7 +139,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_03.0_Helios/java/org/l2jmobius/gameserver/model/ArmorSet.java b/L2J_Mobius_03.0_Helios/java/org/l2jmobius/gameserver/model/ArmorSet.java index a84709e2db..fbfe633ecc 100644 --- a/L2J_Mobius_03.0_Helios/java/org/l2jmobius/gameserver/model/ArmorSet.java +++ b/L2J_Mobius_03.0_Helios/java/org/l2jmobius/gameserver/model/ArmorSet.java @@ -102,7 +102,7 @@ public class ArmorSet } /** - * The list of skills that are activated when set reaches it's minimal equipped items condition + * The list of skills that are activated when set reaches it's minimum equipped items condition * @return */ public List getSkills() diff --git a/L2J_Mobius_03.0_Helios/java/org/l2jmobius/gameserver/model/quest/Quest.java b/L2J_Mobius_03.0_Helios/java/org/l2jmobius/gameserver/model/quest/Quest.java index 5ab5b51264..7015c2e2df 100644 --- a/L2J_Mobius_03.0_Helios/java/org/l2jmobius/gameserver/model/quest/Quest.java +++ b/L2J_Mobius_03.0_Helios/java/org/l2jmobius/gameserver/model/quest/Quest.java @@ -1768,7 +1768,7 @@ public class Quest extends AbstractScript implements IIdentifiable /** * @param player the player whose language settings to use in finding the html of the right language - * @return the default html for when player don't have minimal level for reward: "You cannot receive quest rewards as your character.." + * @return the default html for when player don't have minimum level for reward: "You cannot receive quest rewards as your character.." */ public static String getNoQuestLevelRewardMsg(Player player) { diff --git a/L2J_Mobius_03.0_Helios/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java b/L2J_Mobius_03.0_Helios/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java index 7cb2bf4425..2b7a5afbeb 100644 --- a/L2J_Mobius_03.0_Helios/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java +++ b/L2J_Mobius_03.0_Helios/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java @@ -58,7 +58,7 @@ public class BuyListSeed implements IClientOutgoingPacket packet.writeH(_list.size()); // list length for (SeedProduction s : _list) { - packet.writeC(0); // mask item 0 to print minimal item information + packet.writeC(0); // mask item 0 to print minimum item information packet.writeD(s.getId()); // ObjectId packet.writeD(s.getId()); // ItemId packet.writeC(0xFF); // T1 diff --git a/L2J_Mobius_04.0_GrandCrusade/dist/game/config/Character.ini b/L2J_Mobius_04.0_GrandCrusade/dist/game/config/Character.ini index 9890bb9608..b7e9640ca8 100644 --- a/L2J_Mobius_04.0_GrandCrusade/dist/game/config/Character.ini +++ b/L2J_Mobius_04.0_GrandCrusade/dist/game/config/Character.ini @@ -620,7 +620,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 @@ -701,7 +701,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 diff --git a/L2J_Mobius_04.0_GrandCrusade/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_04.0_GrandCrusade/dist/game/config/Custom/SellBuffs.ini index 8e8a0596f6..d17d92b6ef 100644 --- a/L2J_Mobius_04.0_GrandCrusade/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_04.0_GrandCrusade/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_04.0_GrandCrusade/dist/game/config/GrandBoss.ini b/L2J_Mobius_04.0_GrandCrusade/dist/game/config/GrandBoss.ini index 6b8366025d..0776a8c4d7 100644 --- a/L2J_Mobius_04.0_GrandCrusade/dist/game/config/GrandBoss.ini +++ b/L2J_Mobius_04.0_GrandCrusade/dist/game/config/GrandBoss.ini @@ -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 @@ -122,7 +122,7 @@ AnakimMaxPlayerLvl = 94 # 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 @@ -144,7 +144,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 @@ -163,7 +163,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 @@ -182,7 +182,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 # --------------------------------------------------------------------------- @@ -198,7 +198,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 diff --git a/L2J_Mobius_04.0_GrandCrusade/dist/game/config/Olympiad.ini b/L2J_Mobius_04.0_GrandCrusade/dist/game/config/Olympiad.ini index 6bdc191c3c..149a682c5e 100644 --- a/L2J_Mobius_04.0_GrandCrusade/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_04.0_GrandCrusade/dist/game/config/Olympiad.ini @@ -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 diff --git a/L2J_Mobius_04.0_GrandCrusade/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_04.0_GrandCrusade/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_04.0_GrandCrusade/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_04.0_GrandCrusade/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_04.0_GrandCrusade/java/org/l2jmobius/Config.java b/L2J_Mobius_04.0_GrandCrusade/java/org/l2jmobius/Config.java index 3dc175d1a1..90deda5eae 100644 --- a/L2J_Mobius_04.0_GrandCrusade/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_04.0_GrandCrusade/java/org/l2jmobius/Config.java @@ -3489,8 +3489,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_04.0_GrandCrusade/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_04.0_GrandCrusade/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d8c2a5c679..7263d256ac 100644 --- a/L2J_Mobius_04.0_GrandCrusade/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_04.0_GrandCrusade/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -139,7 +139,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_04.0_GrandCrusade/java/org/l2jmobius/gameserver/model/ArmorSet.java b/L2J_Mobius_04.0_GrandCrusade/java/org/l2jmobius/gameserver/model/ArmorSet.java index a84709e2db..fbfe633ecc 100644 --- a/L2J_Mobius_04.0_GrandCrusade/java/org/l2jmobius/gameserver/model/ArmorSet.java +++ b/L2J_Mobius_04.0_GrandCrusade/java/org/l2jmobius/gameserver/model/ArmorSet.java @@ -102,7 +102,7 @@ public class ArmorSet } /** - * The list of skills that are activated when set reaches it's minimal equipped items condition + * The list of skills that are activated when set reaches it's minimum equipped items condition * @return */ public List getSkills() diff --git a/L2J_Mobius_04.0_GrandCrusade/java/org/l2jmobius/gameserver/model/quest/Quest.java b/L2J_Mobius_04.0_GrandCrusade/java/org/l2jmobius/gameserver/model/quest/Quest.java index 70b756f735..e2c315bbfd 100644 --- a/L2J_Mobius_04.0_GrandCrusade/java/org/l2jmobius/gameserver/model/quest/Quest.java +++ b/L2J_Mobius_04.0_GrandCrusade/java/org/l2jmobius/gameserver/model/quest/Quest.java @@ -1768,7 +1768,7 @@ public class Quest extends AbstractScript implements IIdentifiable /** * @param player the player whose language settings to use in finding the html of the right language - * @return the default html for when player don't have minimal level for reward: "You cannot receive quest rewards as your character.." + * @return the default html for when player don't have minimum level for reward: "You cannot receive quest rewards as your character.." */ public static String getNoQuestLevelRewardMsg(Player player) { diff --git a/L2J_Mobius_04.0_GrandCrusade/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java b/L2J_Mobius_04.0_GrandCrusade/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java index 7cb2bf4425..2b7a5afbeb 100644 --- a/L2J_Mobius_04.0_GrandCrusade/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java +++ b/L2J_Mobius_04.0_GrandCrusade/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java @@ -58,7 +58,7 @@ public class BuyListSeed implements IClientOutgoingPacket packet.writeH(_list.size()); // list length for (SeedProduction s : _list) { - packet.writeC(0); // mask item 0 to print minimal item information + packet.writeC(0); // mask item 0 to print minimum item information packet.writeD(s.getId()); // ObjectId packet.writeD(s.getId()); // ItemId packet.writeC(0xFF); // T1 diff --git a/L2J_Mobius_05.0_Salvation/dist/game/config/Character.ini b/L2J_Mobius_05.0_Salvation/dist/game/config/Character.ini index 53eb33f37a..ec6206ee78 100644 --- a/L2J_Mobius_05.0_Salvation/dist/game/config/Character.ini +++ b/L2J_Mobius_05.0_Salvation/dist/game/config/Character.ini @@ -620,7 +620,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 @@ -701,7 +701,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 diff --git a/L2J_Mobius_05.0_Salvation/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_05.0_Salvation/dist/game/config/Custom/SellBuffs.ini index 8e8a0596f6..d17d92b6ef 100644 --- a/L2J_Mobius_05.0_Salvation/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_05.0_Salvation/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_05.0_Salvation/dist/game/config/GrandBoss.ini b/L2J_Mobius_05.0_Salvation/dist/game/config/GrandBoss.ini index 6b8366025d..0776a8c4d7 100644 --- a/L2J_Mobius_05.0_Salvation/dist/game/config/GrandBoss.ini +++ b/L2J_Mobius_05.0_Salvation/dist/game/config/GrandBoss.ini @@ -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 @@ -122,7 +122,7 @@ AnakimMaxPlayerLvl = 94 # 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 @@ -144,7 +144,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 @@ -163,7 +163,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 @@ -182,7 +182,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 # --------------------------------------------------------------------------- @@ -198,7 +198,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 diff --git a/L2J_Mobius_05.0_Salvation/dist/game/config/Olympiad.ini b/L2J_Mobius_05.0_Salvation/dist/game/config/Olympiad.ini index 6bdc191c3c..149a682c5e 100644 --- a/L2J_Mobius_05.0_Salvation/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_05.0_Salvation/dist/game/config/Olympiad.ini @@ -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 diff --git a/L2J_Mobius_05.0_Salvation/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_05.0_Salvation/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_05.0_Salvation/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_05.0_Salvation/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_05.0_Salvation/java/org/l2jmobius/Config.java b/L2J_Mobius_05.0_Salvation/java/org/l2jmobius/Config.java index 0eb62a2c59..93d27a5044 100644 --- a/L2J_Mobius_05.0_Salvation/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_05.0_Salvation/java/org/l2jmobius/Config.java @@ -3498,8 +3498,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_05.0_Salvation/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_05.0_Salvation/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d8c2a5c679..7263d256ac 100644 --- a/L2J_Mobius_05.0_Salvation/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_05.0_Salvation/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -139,7 +139,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_05.0_Salvation/java/org/l2jmobius/gameserver/model/ArmorSet.java b/L2J_Mobius_05.0_Salvation/java/org/l2jmobius/gameserver/model/ArmorSet.java index a84709e2db..fbfe633ecc 100644 --- a/L2J_Mobius_05.0_Salvation/java/org/l2jmobius/gameserver/model/ArmorSet.java +++ b/L2J_Mobius_05.0_Salvation/java/org/l2jmobius/gameserver/model/ArmorSet.java @@ -102,7 +102,7 @@ public class ArmorSet } /** - * The list of skills that are activated when set reaches it's minimal equipped items condition + * The list of skills that are activated when set reaches it's minimum equipped items condition * @return */ public List getSkills() diff --git a/L2J_Mobius_05.0_Salvation/java/org/l2jmobius/gameserver/model/quest/Quest.java b/L2J_Mobius_05.0_Salvation/java/org/l2jmobius/gameserver/model/quest/Quest.java index 70b756f735..e2c315bbfd 100644 --- a/L2J_Mobius_05.0_Salvation/java/org/l2jmobius/gameserver/model/quest/Quest.java +++ b/L2J_Mobius_05.0_Salvation/java/org/l2jmobius/gameserver/model/quest/Quest.java @@ -1768,7 +1768,7 @@ public class Quest extends AbstractScript implements IIdentifiable /** * @param player the player whose language settings to use in finding the html of the right language - * @return the default html for when player don't have minimal level for reward: "You cannot receive quest rewards as your character.." + * @return the default html for when player don't have minimum level for reward: "You cannot receive quest rewards as your character.." */ public static String getNoQuestLevelRewardMsg(Player player) { diff --git a/L2J_Mobius_05.0_Salvation/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java b/L2J_Mobius_05.0_Salvation/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java index 7cb2bf4425..2b7a5afbeb 100644 --- a/L2J_Mobius_05.0_Salvation/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java +++ b/L2J_Mobius_05.0_Salvation/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java @@ -58,7 +58,7 @@ public class BuyListSeed implements IClientOutgoingPacket packet.writeH(_list.size()); // list length for (SeedProduction s : _list) { - packet.writeC(0); // mask item 0 to print minimal item information + packet.writeC(0); // mask item 0 to print minimum item information packet.writeD(s.getId()); // ObjectId packet.writeD(s.getId()); // ItemId packet.writeC(0xFF); // T1 diff --git a/L2J_Mobius_05.5_EtinasFate/dist/game/config/Character.ini b/L2J_Mobius_05.5_EtinasFate/dist/game/config/Character.ini index 53eb33f37a..ec6206ee78 100644 --- a/L2J_Mobius_05.5_EtinasFate/dist/game/config/Character.ini +++ b/L2J_Mobius_05.5_EtinasFate/dist/game/config/Character.ini @@ -620,7 +620,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 @@ -701,7 +701,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 diff --git a/L2J_Mobius_05.5_EtinasFate/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_05.5_EtinasFate/dist/game/config/Custom/SellBuffs.ini index 8e8a0596f6..d17d92b6ef 100644 --- a/L2J_Mobius_05.5_EtinasFate/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_05.5_EtinasFate/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_05.5_EtinasFate/dist/game/config/GrandBoss.ini b/L2J_Mobius_05.5_EtinasFate/dist/game/config/GrandBoss.ini index 2edbdf9e57..d6e35bf8f0 100644 --- a/L2J_Mobius_05.5_EtinasFate/dist/game/config/GrandBoss.ini +++ b/L2J_Mobius_05.5_EtinasFate/dist/game/config/GrandBoss.ini @@ -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 @@ -122,7 +122,7 @@ AnakimMaxPlayerLvl = 94 # 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 @@ -144,7 +144,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 @@ -163,7 +163,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 @@ -182,7 +182,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 # --------------------------------------------------------------------------- @@ -198,7 +198,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 @@ -214,7 +214,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 diff --git a/L2J_Mobius_05.5_EtinasFate/dist/game/config/Olympiad.ini b/L2J_Mobius_05.5_EtinasFate/dist/game/config/Olympiad.ini index 6bdc191c3c..149a682c5e 100644 --- a/L2J_Mobius_05.5_EtinasFate/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_05.5_EtinasFate/dist/game/config/Olympiad.ini @@ -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 diff --git a/L2J_Mobius_05.5_EtinasFate/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_05.5_EtinasFate/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_05.5_EtinasFate/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_05.5_EtinasFate/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_05.5_EtinasFate/java/org/l2jmobius/Config.java b/L2J_Mobius_05.5_EtinasFate/java/org/l2jmobius/Config.java index 7cae02c17f..debc137179 100644 --- a/L2J_Mobius_05.5_EtinasFate/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_05.5_EtinasFate/java/org/l2jmobius/Config.java @@ -3510,8 +3510,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_05.5_EtinasFate/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_05.5_EtinasFate/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d8c2a5c679..7263d256ac 100644 --- a/L2J_Mobius_05.5_EtinasFate/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_05.5_EtinasFate/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -139,7 +139,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_05.5_EtinasFate/java/org/l2jmobius/gameserver/model/ArmorSet.java b/L2J_Mobius_05.5_EtinasFate/java/org/l2jmobius/gameserver/model/ArmorSet.java index 6b504526ef..b413b5e89a 100644 --- a/L2J_Mobius_05.5_EtinasFate/java/org/l2jmobius/gameserver/model/ArmorSet.java +++ b/L2J_Mobius_05.5_EtinasFate/java/org/l2jmobius/gameserver/model/ArmorSet.java @@ -135,7 +135,7 @@ public class ArmorSet } /** - * The list of skills that are activated when set reaches it's minimal equipped items condition + * The list of skills that are activated when set reaches it's minimum equipped items condition * @return */ public List getSkills() diff --git a/L2J_Mobius_05.5_EtinasFate/java/org/l2jmobius/gameserver/model/quest/Quest.java b/L2J_Mobius_05.5_EtinasFate/java/org/l2jmobius/gameserver/model/quest/Quest.java index 70b756f735..e2c315bbfd 100644 --- a/L2J_Mobius_05.5_EtinasFate/java/org/l2jmobius/gameserver/model/quest/Quest.java +++ b/L2J_Mobius_05.5_EtinasFate/java/org/l2jmobius/gameserver/model/quest/Quest.java @@ -1768,7 +1768,7 @@ public class Quest extends AbstractScript implements IIdentifiable /** * @param player the player whose language settings to use in finding the html of the right language - * @return the default html for when player don't have minimal level for reward: "You cannot receive quest rewards as your character.." + * @return the default html for when player don't have minimum level for reward: "You cannot receive quest rewards as your character.." */ public static String getNoQuestLevelRewardMsg(Player player) { diff --git a/L2J_Mobius_05.5_EtinasFate/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java b/L2J_Mobius_05.5_EtinasFate/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java index 7cb2bf4425..2b7a5afbeb 100644 --- a/L2J_Mobius_05.5_EtinasFate/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java +++ b/L2J_Mobius_05.5_EtinasFate/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java @@ -58,7 +58,7 @@ public class BuyListSeed implements IClientOutgoingPacket packet.writeH(_list.size()); // list length for (SeedProduction s : _list) { - packet.writeC(0); // mask item 0 to print minimal item information + packet.writeC(0); // mask item 0 to print minimum item information packet.writeD(s.getId()); // ObjectId packet.writeD(s.getId()); // ItemId packet.writeC(0xFF); // T1 diff --git a/L2J_Mobius_06.0_Fafurion/dist/game/config/Character.ini b/L2J_Mobius_06.0_Fafurion/dist/game/config/Character.ini index 807e35c0eb..b6608a4f6f 100644 --- a/L2J_Mobius_06.0_Fafurion/dist/game/config/Character.ini +++ b/L2J_Mobius_06.0_Fafurion/dist/game/config/Character.ini @@ -640,7 +640,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 @@ -721,7 +721,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 diff --git a/L2J_Mobius_06.0_Fafurion/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_06.0_Fafurion/dist/game/config/Custom/SellBuffs.ini index 8e8a0596f6..d17d92b6ef 100644 --- a/L2J_Mobius_06.0_Fafurion/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_06.0_Fafurion/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_06.0_Fafurion/dist/game/config/GrandBoss.ini b/L2J_Mobius_06.0_Fafurion/dist/game/config/GrandBoss.ini index 9277083115..cf7f46e3c9 100644 --- a/L2J_Mobius_06.0_Fafurion/dist/game/config/GrandBoss.ini +++ b/L2J_Mobius_06.0_Fafurion/dist/game/config/GrandBoss.ini @@ -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 diff --git a/L2J_Mobius_06.0_Fafurion/dist/game/config/Olympiad.ini b/L2J_Mobius_06.0_Fafurion/dist/game/config/Olympiad.ini index 6bdc191c3c..149a682c5e 100644 --- a/L2J_Mobius_06.0_Fafurion/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_06.0_Fafurion/dist/game/config/Olympiad.ini @@ -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 diff --git a/L2J_Mobius_06.0_Fafurion/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_06.0_Fafurion/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_06.0_Fafurion/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_06.0_Fafurion/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_06.0_Fafurion/java/org/l2jmobius/Config.java b/L2J_Mobius_06.0_Fafurion/java/org/l2jmobius/Config.java index 71cc5909c3..f63c2fe6fc 100644 --- a/L2J_Mobius_06.0_Fafurion/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_06.0_Fafurion/java/org/l2jmobius/Config.java @@ -3553,8 +3553,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_06.0_Fafurion/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_06.0_Fafurion/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d8c2a5c679..7263d256ac 100644 --- a/L2J_Mobius_06.0_Fafurion/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_06.0_Fafurion/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -139,7 +139,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_06.0_Fafurion/java/org/l2jmobius/gameserver/model/ArmorSet.java b/L2J_Mobius_06.0_Fafurion/java/org/l2jmobius/gameserver/model/ArmorSet.java index 6b504526ef..b413b5e89a 100644 --- a/L2J_Mobius_06.0_Fafurion/java/org/l2jmobius/gameserver/model/ArmorSet.java +++ b/L2J_Mobius_06.0_Fafurion/java/org/l2jmobius/gameserver/model/ArmorSet.java @@ -135,7 +135,7 @@ public class ArmorSet } /** - * The list of skills that are activated when set reaches it's minimal equipped items condition + * The list of skills that are activated when set reaches it's minimum equipped items condition * @return */ public List getSkills() diff --git a/L2J_Mobius_06.0_Fafurion/java/org/l2jmobius/gameserver/model/quest/Quest.java b/L2J_Mobius_06.0_Fafurion/java/org/l2jmobius/gameserver/model/quest/Quest.java index 70b756f735..e2c315bbfd 100644 --- a/L2J_Mobius_06.0_Fafurion/java/org/l2jmobius/gameserver/model/quest/Quest.java +++ b/L2J_Mobius_06.0_Fafurion/java/org/l2jmobius/gameserver/model/quest/Quest.java @@ -1768,7 +1768,7 @@ public class Quest extends AbstractScript implements IIdentifiable /** * @param player the player whose language settings to use in finding the html of the right language - * @return the default html for when player don't have minimal level for reward: "You cannot receive quest rewards as your character.." + * @return the default html for when player don't have minimum level for reward: "You cannot receive quest rewards as your character.." */ public static String getNoQuestLevelRewardMsg(Player player) { diff --git a/L2J_Mobius_06.0_Fafurion/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java b/L2J_Mobius_06.0_Fafurion/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java index 7cb2bf4425..2b7a5afbeb 100644 --- a/L2J_Mobius_06.0_Fafurion/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java +++ b/L2J_Mobius_06.0_Fafurion/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java @@ -58,7 +58,7 @@ public class BuyListSeed implements IClientOutgoingPacket packet.writeH(_list.size()); // list length for (SeedProduction s : _list) { - packet.writeC(0); // mask item 0 to print minimal item information + packet.writeC(0); // mask item 0 to print minimum item information packet.writeD(s.getId()); // ObjectId packet.writeD(s.getId()); // ItemId packet.writeC(0xFF); // T1 diff --git a/L2J_Mobius_07.0_PreludeOfWar/dist/game/config/Character.ini b/L2J_Mobius_07.0_PreludeOfWar/dist/game/config/Character.ini index 04f79214c5..362d64349a 100644 --- a/L2J_Mobius_07.0_PreludeOfWar/dist/game/config/Character.ini +++ b/L2J_Mobius_07.0_PreludeOfWar/dist/game/config/Character.ini @@ -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 diff --git a/L2J_Mobius_07.0_PreludeOfWar/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_07.0_PreludeOfWar/dist/game/config/Custom/SellBuffs.ini index 8e8a0596f6..d17d92b6ef 100644 --- a/L2J_Mobius_07.0_PreludeOfWar/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_07.0_PreludeOfWar/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_07.0_PreludeOfWar/dist/game/config/GrandBoss.ini b/L2J_Mobius_07.0_PreludeOfWar/dist/game/config/GrandBoss.ini index 9277083115..cf7f46e3c9 100644 --- a/L2J_Mobius_07.0_PreludeOfWar/dist/game/config/GrandBoss.ini +++ b/L2J_Mobius_07.0_PreludeOfWar/dist/game/config/GrandBoss.ini @@ -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 diff --git a/L2J_Mobius_07.0_PreludeOfWar/dist/game/config/Olympiad.ini b/L2J_Mobius_07.0_PreludeOfWar/dist/game/config/Olympiad.ini index 6bdc191c3c..149a682c5e 100644 --- a/L2J_Mobius_07.0_PreludeOfWar/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_07.0_PreludeOfWar/dist/game/config/Olympiad.ini @@ -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 diff --git a/L2J_Mobius_07.0_PreludeOfWar/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_07.0_PreludeOfWar/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_07.0_PreludeOfWar/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_07.0_PreludeOfWar/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_07.0_PreludeOfWar/java/org/l2jmobius/Config.java b/L2J_Mobius_07.0_PreludeOfWar/java/org/l2jmobius/Config.java index bfcbe4b2eb..b14aa7209e 100644 --- a/L2J_Mobius_07.0_PreludeOfWar/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_07.0_PreludeOfWar/java/org/l2jmobius/Config.java @@ -3569,8 +3569,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_07.0_PreludeOfWar/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_07.0_PreludeOfWar/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d8c2a5c679..7263d256ac 100644 --- a/L2J_Mobius_07.0_PreludeOfWar/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_07.0_PreludeOfWar/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -139,7 +139,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_07.0_PreludeOfWar/java/org/l2jmobius/gameserver/model/ArmorSet.java b/L2J_Mobius_07.0_PreludeOfWar/java/org/l2jmobius/gameserver/model/ArmorSet.java index 6b504526ef..b413b5e89a 100644 --- a/L2J_Mobius_07.0_PreludeOfWar/java/org/l2jmobius/gameserver/model/ArmorSet.java +++ b/L2J_Mobius_07.0_PreludeOfWar/java/org/l2jmobius/gameserver/model/ArmorSet.java @@ -135,7 +135,7 @@ public class ArmorSet } /** - * The list of skills that are activated when set reaches it's minimal equipped items condition + * The list of skills that are activated when set reaches it's minimum equipped items condition * @return */ public List getSkills() diff --git a/L2J_Mobius_07.0_PreludeOfWar/java/org/l2jmobius/gameserver/model/quest/Quest.java b/L2J_Mobius_07.0_PreludeOfWar/java/org/l2jmobius/gameserver/model/quest/Quest.java index 3b28f07381..21a97941c6 100644 --- a/L2J_Mobius_07.0_PreludeOfWar/java/org/l2jmobius/gameserver/model/quest/Quest.java +++ b/L2J_Mobius_07.0_PreludeOfWar/java/org/l2jmobius/gameserver/model/quest/Quest.java @@ -1778,7 +1778,7 @@ public class Quest extends AbstractScript implements IIdentifiable /** * @param player the player whose language settings to use in finding the html of the right language - * @return the default html for when player don't have minimal level for reward: "You cannot receive quest rewards as your character.." + * @return the default html for when player don't have minimum level for reward: "You cannot receive quest rewards as your character.." */ public static String getNoQuestLevelRewardMsg(Player player) { diff --git a/L2J_Mobius_07.0_PreludeOfWar/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java b/L2J_Mobius_07.0_PreludeOfWar/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java index 7cb2bf4425..2b7a5afbeb 100644 --- a/L2J_Mobius_07.0_PreludeOfWar/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java +++ b/L2J_Mobius_07.0_PreludeOfWar/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java @@ -58,7 +58,7 @@ public class BuyListSeed implements IClientOutgoingPacket packet.writeH(_list.size()); // list length for (SeedProduction s : _list) { - packet.writeC(0); // mask item 0 to print minimal item information + packet.writeC(0); // mask item 0 to print minimum item information packet.writeD(s.getId()); // ObjectId packet.writeD(s.getId()); // ItemId packet.writeC(0xFF); // T1 diff --git a/L2J_Mobius_08.2_Homunculus/dist/game/config/Character.ini b/L2J_Mobius_08.2_Homunculus/dist/game/config/Character.ini index 827dacbb73..a82a44f261 100644 --- a/L2J_Mobius_08.2_Homunculus/dist/game/config/Character.ini +++ b/L2J_Mobius_08.2_Homunculus/dist/game/config/Character.ini @@ -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 diff --git a/L2J_Mobius_08.2_Homunculus/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_08.2_Homunculus/dist/game/config/Custom/SellBuffs.ini index 8e8a0596f6..d17d92b6ef 100644 --- a/L2J_Mobius_08.2_Homunculus/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_08.2_Homunculus/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_08.2_Homunculus/dist/game/config/GrandBoss.ini b/L2J_Mobius_08.2_Homunculus/dist/game/config/GrandBoss.ini index 9277083115..cf7f46e3c9 100644 --- a/L2J_Mobius_08.2_Homunculus/dist/game/config/GrandBoss.ini +++ b/L2J_Mobius_08.2_Homunculus/dist/game/config/GrandBoss.ini @@ -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 diff --git a/L2J_Mobius_08.2_Homunculus/dist/game/config/Olympiad.ini b/L2J_Mobius_08.2_Homunculus/dist/game/config/Olympiad.ini index 6bdc191c3c..149a682c5e 100644 --- a/L2J_Mobius_08.2_Homunculus/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_08.2_Homunculus/dist/game/config/Olympiad.ini @@ -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 diff --git a/L2J_Mobius_08.2_Homunculus/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_08.2_Homunculus/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_08.2_Homunculus/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_08.2_Homunculus/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_08.2_Homunculus/java/org/l2jmobius/Config.java b/L2J_Mobius_08.2_Homunculus/java/org/l2jmobius/Config.java index 62eeb6b70d..db5d2c5356 100644 --- a/L2J_Mobius_08.2_Homunculus/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_08.2_Homunculus/java/org/l2jmobius/Config.java @@ -3540,8 +3540,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_08.2_Homunculus/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_08.2_Homunculus/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d8c2a5c679..7263d256ac 100644 --- a/L2J_Mobius_08.2_Homunculus/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_08.2_Homunculus/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -139,7 +139,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_08.2_Homunculus/java/org/l2jmobius/gameserver/model/ArmorSet.java b/L2J_Mobius_08.2_Homunculus/java/org/l2jmobius/gameserver/model/ArmorSet.java index 14226149e5..2a4fda3065 100644 --- a/L2J_Mobius_08.2_Homunculus/java/org/l2jmobius/gameserver/model/ArmorSet.java +++ b/L2J_Mobius_08.2_Homunculus/java/org/l2jmobius/gameserver/model/ArmorSet.java @@ -137,7 +137,7 @@ public class ArmorSet } /** - * The list of skills that are activated when set reaches it's minimal equipped items condition + * The list of skills that are activated when set reaches it's minimum equipped items condition * @return */ public List getSkills() diff --git a/L2J_Mobius_08.2_Homunculus/java/org/l2jmobius/gameserver/model/quest/Quest.java b/L2J_Mobius_08.2_Homunculus/java/org/l2jmobius/gameserver/model/quest/Quest.java index 3b28f07381..21a97941c6 100644 --- a/L2J_Mobius_08.2_Homunculus/java/org/l2jmobius/gameserver/model/quest/Quest.java +++ b/L2J_Mobius_08.2_Homunculus/java/org/l2jmobius/gameserver/model/quest/Quest.java @@ -1778,7 +1778,7 @@ public class Quest extends AbstractScript implements IIdentifiable /** * @param player the player whose language settings to use in finding the html of the right language - * @return the default html for when player don't have minimal level for reward: "You cannot receive quest rewards as your character.." + * @return the default html for when player don't have minimum level for reward: "You cannot receive quest rewards as your character.." */ public static String getNoQuestLevelRewardMsg(Player player) { diff --git a/L2J_Mobius_08.2_Homunculus/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java b/L2J_Mobius_08.2_Homunculus/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java index 7cb2bf4425..2b7a5afbeb 100644 --- a/L2J_Mobius_08.2_Homunculus/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java +++ b/L2J_Mobius_08.2_Homunculus/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java @@ -58,7 +58,7 @@ public class BuyListSeed implements IClientOutgoingPacket packet.writeH(_list.size()); // list length for (SeedProduction s : _list) { - packet.writeC(0); // mask item 0 to print minimal item information + packet.writeC(0); // mask item 0 to print minimum item information packet.writeD(s.getId()); // ObjectId packet.writeD(s.getId()); // ItemId packet.writeC(0xFF); // T1 diff --git a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/config/Character.ini b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/config/Character.ini index 97a50f5faa..e0408b5e26 100644 --- a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/config/Character.ini +++ b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/config/Character.ini @@ -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 diff --git a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/config/Custom/SellBuffs.ini index 8e8a0596f6..d17d92b6ef 100644 --- a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/config/GrandBoss.ini b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/config/GrandBoss.ini index 9277083115..cf7f46e3c9 100644 --- a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/config/GrandBoss.ini +++ b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/config/GrandBoss.ini @@ -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 diff --git a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/config/Olympiad.ini b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/config/Olympiad.ini index 6bdc191c3c..149a682c5e 100644 --- a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/config/Olympiad.ini @@ -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 diff --git a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/java/org/l2jmobius/Config.java b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/java/org/l2jmobius/Config.java index 330d29fd3c..f75ce9e7f5 100644 --- a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/java/org/l2jmobius/Config.java @@ -3544,8 +3544,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d8c2a5c679..7263d256ac 100644 --- a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -139,7 +139,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/java/org/l2jmobius/gameserver/model/ArmorSet.java b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/java/org/l2jmobius/gameserver/model/ArmorSet.java index 14226149e5..2a4fda3065 100644 --- a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/java/org/l2jmobius/gameserver/model/ArmorSet.java +++ b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/java/org/l2jmobius/gameserver/model/ArmorSet.java @@ -137,7 +137,7 @@ public class ArmorSet } /** - * The list of skills that are activated when set reaches it's minimal equipped items condition + * The list of skills that are activated when set reaches it's minimum equipped items condition * @return */ public List getSkills() diff --git a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/java/org/l2jmobius/gameserver/model/quest/Quest.java b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/java/org/l2jmobius/gameserver/model/quest/Quest.java index 3b28f07381..21a97941c6 100644 --- a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/java/org/l2jmobius/gameserver/model/quest/Quest.java +++ b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/java/org/l2jmobius/gameserver/model/quest/Quest.java @@ -1778,7 +1778,7 @@ public class Quest extends AbstractScript implements IIdentifiable /** * @param player the player whose language settings to use in finding the html of the right language - * @return the default html for when player don't have minimal level for reward: "You cannot receive quest rewards as your character.." + * @return the default html for when player don't have minimum level for reward: "You cannot receive quest rewards as your character.." */ public static String getNoQuestLevelRewardMsg(Player player) { diff --git a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java index 7cb2bf4425..2b7a5afbeb 100644 --- a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java +++ b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java @@ -58,7 +58,7 @@ public class BuyListSeed implements IClientOutgoingPacket packet.writeH(_list.size()); // list length for (SeedProduction s : _list) { - packet.writeC(0); // mask item 0 to print minimal item information + packet.writeC(0); // mask item 0 to print minimum item information packet.writeD(s.getId()); // ObjectId packet.writeD(s.getId()); // ItemId packet.writeC(0xFF); // T1 diff --git a/L2J_Mobius_10.1_MasterClass/dist/game/config/Character.ini b/L2J_Mobius_10.1_MasterClass/dist/game/config/Character.ini index 97a50f5faa..e0408b5e26 100644 --- a/L2J_Mobius_10.1_MasterClass/dist/game/config/Character.ini +++ b/L2J_Mobius_10.1_MasterClass/dist/game/config/Character.ini @@ -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 diff --git a/L2J_Mobius_10.1_MasterClass/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_10.1_MasterClass/dist/game/config/Custom/SellBuffs.ini index 8e8a0596f6..d17d92b6ef 100644 --- a/L2J_Mobius_10.1_MasterClass/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_10.1_MasterClass/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_10.1_MasterClass/dist/game/config/GrandBoss.ini b/L2J_Mobius_10.1_MasterClass/dist/game/config/GrandBoss.ini index 9277083115..cf7f46e3c9 100644 --- a/L2J_Mobius_10.1_MasterClass/dist/game/config/GrandBoss.ini +++ b/L2J_Mobius_10.1_MasterClass/dist/game/config/GrandBoss.ini @@ -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 diff --git a/L2J_Mobius_10.1_MasterClass/dist/game/config/Olympiad.ini b/L2J_Mobius_10.1_MasterClass/dist/game/config/Olympiad.ini index 6bdc191c3c..149a682c5e 100644 --- a/L2J_Mobius_10.1_MasterClass/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_10.1_MasterClass/dist/game/config/Olympiad.ini @@ -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 diff --git a/L2J_Mobius_10.1_MasterClass/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_10.1_MasterClass/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_10.1_MasterClass/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_10.1_MasterClass/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_10.1_MasterClass/java/org/l2jmobius/Config.java b/L2J_Mobius_10.1_MasterClass/java/org/l2jmobius/Config.java index e818375534..8b0de0b62f 100644 --- a/L2J_Mobius_10.1_MasterClass/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_10.1_MasterClass/java/org/l2jmobius/Config.java @@ -3544,8 +3544,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_10.1_MasterClass/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_10.1_MasterClass/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d8c2a5c679..7263d256ac 100644 --- a/L2J_Mobius_10.1_MasterClass/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_10.1_MasterClass/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -139,7 +139,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_10.1_MasterClass/java/org/l2jmobius/gameserver/model/ArmorSet.java b/L2J_Mobius_10.1_MasterClass/java/org/l2jmobius/gameserver/model/ArmorSet.java index 14226149e5..2a4fda3065 100644 --- a/L2J_Mobius_10.1_MasterClass/java/org/l2jmobius/gameserver/model/ArmorSet.java +++ b/L2J_Mobius_10.1_MasterClass/java/org/l2jmobius/gameserver/model/ArmorSet.java @@ -137,7 +137,7 @@ public class ArmorSet } /** - * The list of skills that are activated when set reaches it's minimal equipped items condition + * The list of skills that are activated when set reaches it's minimum equipped items condition * @return */ public List getSkills() diff --git a/L2J_Mobius_10.1_MasterClass/java/org/l2jmobius/gameserver/model/quest/Quest.java b/L2J_Mobius_10.1_MasterClass/java/org/l2jmobius/gameserver/model/quest/Quest.java index 3b28f07381..21a97941c6 100644 --- a/L2J_Mobius_10.1_MasterClass/java/org/l2jmobius/gameserver/model/quest/Quest.java +++ b/L2J_Mobius_10.1_MasterClass/java/org/l2jmobius/gameserver/model/quest/Quest.java @@ -1778,7 +1778,7 @@ public class Quest extends AbstractScript implements IIdentifiable /** * @param player the player whose language settings to use in finding the html of the right language - * @return the default html for when player don't have minimal level for reward: "You cannot receive quest rewards as your character.." + * @return the default html for when player don't have minimum level for reward: "You cannot receive quest rewards as your character.." */ public static String getNoQuestLevelRewardMsg(Player player) { diff --git a/L2J_Mobius_10.1_MasterClass/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java b/L2J_Mobius_10.1_MasterClass/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java index 7cb2bf4425..2b7a5afbeb 100644 --- a/L2J_Mobius_10.1_MasterClass/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java +++ b/L2J_Mobius_10.1_MasterClass/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java @@ -58,7 +58,7 @@ public class BuyListSeed implements IClientOutgoingPacket packet.writeH(_list.size()); // list length for (SeedProduction s : _list) { - packet.writeC(0); // mask item 0 to print minimal item information + packet.writeC(0); // mask item 0 to print minimum item information packet.writeD(s.getId()); // ObjectId packet.writeD(s.getId()); // ItemId packet.writeC(0xFF); // T1 diff --git a/L2J_Mobius_10.2_MasterClass/dist/game/config/Character.ini b/L2J_Mobius_10.2_MasterClass/dist/game/config/Character.ini index 97a50f5faa..e0408b5e26 100644 --- a/L2J_Mobius_10.2_MasterClass/dist/game/config/Character.ini +++ b/L2J_Mobius_10.2_MasterClass/dist/game/config/Character.ini @@ -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 diff --git a/L2J_Mobius_10.2_MasterClass/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_10.2_MasterClass/dist/game/config/Custom/SellBuffs.ini index 8e8a0596f6..d17d92b6ef 100644 --- a/L2J_Mobius_10.2_MasterClass/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_10.2_MasterClass/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_10.2_MasterClass/dist/game/config/GrandBoss.ini b/L2J_Mobius_10.2_MasterClass/dist/game/config/GrandBoss.ini index 9277083115..cf7f46e3c9 100644 --- a/L2J_Mobius_10.2_MasterClass/dist/game/config/GrandBoss.ini +++ b/L2J_Mobius_10.2_MasterClass/dist/game/config/GrandBoss.ini @@ -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 diff --git a/L2J_Mobius_10.2_MasterClass/dist/game/config/Olympiad.ini b/L2J_Mobius_10.2_MasterClass/dist/game/config/Olympiad.ini index 6bdc191c3c..149a682c5e 100644 --- a/L2J_Mobius_10.2_MasterClass/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_10.2_MasterClass/dist/game/config/Olympiad.ini @@ -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 diff --git a/L2J_Mobius_10.2_MasterClass/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_10.2_MasterClass/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_10.2_MasterClass/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_10.2_MasterClass/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_10.2_MasterClass/java/org/l2jmobius/Config.java b/L2J_Mobius_10.2_MasterClass/java/org/l2jmobius/Config.java index e818375534..8b0de0b62f 100644 --- a/L2J_Mobius_10.2_MasterClass/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_10.2_MasterClass/java/org/l2jmobius/Config.java @@ -3544,8 +3544,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_10.2_MasterClass/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_10.2_MasterClass/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d8c2a5c679..7263d256ac 100644 --- a/L2J_Mobius_10.2_MasterClass/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_10.2_MasterClass/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -139,7 +139,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_10.2_MasterClass/java/org/l2jmobius/gameserver/model/ArmorSet.java b/L2J_Mobius_10.2_MasterClass/java/org/l2jmobius/gameserver/model/ArmorSet.java index 14226149e5..2a4fda3065 100644 --- a/L2J_Mobius_10.2_MasterClass/java/org/l2jmobius/gameserver/model/ArmorSet.java +++ b/L2J_Mobius_10.2_MasterClass/java/org/l2jmobius/gameserver/model/ArmorSet.java @@ -137,7 +137,7 @@ public class ArmorSet } /** - * The list of skills that are activated when set reaches it's minimal equipped items condition + * The list of skills that are activated when set reaches it's minimum equipped items condition * @return */ public List getSkills() diff --git a/L2J_Mobius_10.2_MasterClass/java/org/l2jmobius/gameserver/model/quest/Quest.java b/L2J_Mobius_10.2_MasterClass/java/org/l2jmobius/gameserver/model/quest/Quest.java index 3b28f07381..21a97941c6 100644 --- a/L2J_Mobius_10.2_MasterClass/java/org/l2jmobius/gameserver/model/quest/Quest.java +++ b/L2J_Mobius_10.2_MasterClass/java/org/l2jmobius/gameserver/model/quest/Quest.java @@ -1778,7 +1778,7 @@ public class Quest extends AbstractScript implements IIdentifiable /** * @param player the player whose language settings to use in finding the html of the right language - * @return the default html for when player don't have minimal level for reward: "You cannot receive quest rewards as your character.." + * @return the default html for when player don't have minimum level for reward: "You cannot receive quest rewards as your character.." */ public static String getNoQuestLevelRewardMsg(Player player) { diff --git a/L2J_Mobius_10.2_MasterClass/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java b/L2J_Mobius_10.2_MasterClass/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java index 7cb2bf4425..2b7a5afbeb 100644 --- a/L2J_Mobius_10.2_MasterClass/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java +++ b/L2J_Mobius_10.2_MasterClass/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java @@ -58,7 +58,7 @@ public class BuyListSeed implements IClientOutgoingPacket packet.writeH(_list.size()); // list length for (SeedProduction s : _list) { - packet.writeC(0); // mask item 0 to print minimal item information + packet.writeC(0); // mask item 0 to print minimum item information packet.writeD(s.getId()); // ObjectId packet.writeD(s.getId()); // ItemId packet.writeC(0xFF); // T1 diff --git a/L2J_Mobius_C4_ScionsOfDestiny/dist/game/config/General.ini b/L2J_Mobius_C4_ScionsOfDestiny/dist/game/config/General.ini index f88b7f1169..dfe9a1714a 100644 --- a/L2J_Mobius_C4_ScionsOfDestiny/dist/game/config/General.ini +++ b/L2J_Mobius_C4_ScionsOfDestiny/dist/game/config/General.ini @@ -158,7 +158,7 @@ AltLottery2and1NumberPrize = 200 # --------------------------------------------------------------------------- # Dimension Rift # --------------------------------------------------------------------------- -# Minimal party size to enter rift. Min = 2, Max = 9. +# Minimum party size to enter rift. Min = 2, Max = 9. # If in rift party will become smaller all members will be teleported back RiftMinPartySize = 5 diff --git a/L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index f43ab73cec..cdcb4ec7e2 100644 --- a/L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -138,7 +138,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/model/DropData.java b/L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/model/DropData.java index e4d1533a60..c5c5a3dd19 100644 --- a/L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/model/DropData.java +++ b/L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/model/DropData.java @@ -79,7 +79,7 @@ public class DropData } /** - * Sets the value for minimal quantity of dropped items + * Sets the value for minimum quantity of dropped items * @param mindrop : int designating the quantity */ public void setMinDrop(int mindrop) @@ -88,7 +88,7 @@ public class DropData } /** - * Sets the value for maximal quantity of dopped items + * Sets the value for maximum quantity of dopped items * @param maxdrop : int designating the quantity of dropped items */ public void setMaxDrop(int maxdrop) diff --git a/L2J_Mobius_C6_Interlude/dist/game/config/General.ini b/L2J_Mobius_C6_Interlude/dist/game/config/General.ini index 11c1e165d8..1289df7662 100644 --- a/L2J_Mobius_C6_Interlude/dist/game/config/General.ini +++ b/L2J_Mobius_C6_Interlude/dist/game/config/General.ini @@ -175,7 +175,7 @@ AltFishChampionshipReward5 = 100000 # --------------------------------------------------------------------------- # Dimension Rift # --------------------------------------------------------------------------- -# Minimal party size to enter rift. Min = 2, Max = 9. +# Minimum party size to enter rift. Min = 2, Max = 9. # If in rift party will become smaller all members will be teleported back RiftMinPartySize = 5 diff --git a/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index f43ab73cec..cdcb4ec7e2 100644 --- a/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -138,7 +138,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/DropData.java b/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/DropData.java index e4d1533a60..c5c5a3dd19 100644 --- a/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/DropData.java +++ b/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/DropData.java @@ -79,7 +79,7 @@ public class DropData } /** - * Sets the value for minimal quantity of dropped items + * Sets the value for minimum quantity of dropped items * @param mindrop : int designating the quantity */ public void setMinDrop(int mindrop) @@ -88,7 +88,7 @@ public class DropData } /** - * Sets the value for maximal quantity of dopped items + * Sets the value for maximum quantity of dopped items * @param maxdrop : int designating the quantity of dropped items */ public void setMaxDrop(int maxdrop) diff --git a/L2J_Mobius_CT_0_Interlude/dist/game/config/Character.ini b/L2J_Mobius_CT_0_Interlude/dist/game/config/Character.ini index cb7deddc3d..116ba8a47c 100644 --- a/L2J_Mobius_CT_0_Interlude/dist/game/config/Character.ini +++ b/L2J_Mobius_CT_0_Interlude/dist/game/config/Character.ini @@ -725,7 +725,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 diff --git a/L2J_Mobius_CT_0_Interlude/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_CT_0_Interlude/dist/game/config/Custom/SellBuffs.ini index 1c50d35a49..4002cfb48d 100644 --- a/L2J_Mobius_CT_0_Interlude/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_CT_0_Interlude/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_CT_0_Interlude/dist/game/config/General.ini b/L2J_Mobius_CT_0_Interlude/dist/game/config/General.ini index f22e3d745e..5580b0c43b 100644 --- a/L2J_Mobius_CT_0_Interlude/dist/game/config/General.ini +++ b/L2J_Mobius_CT_0_Interlude/dist/game/config/General.ini @@ -548,7 +548,7 @@ AltItemAuctionTimeExtendsOnBid = 0 # Dimension Rift # --------------------------------------------------------------------------- -# Minimal party size to enter rift. Min = 2, Max = 9. +# Minimum party size to enter rift. Min = 2, Max = 9. # If while inside the rift, the party becomes smaller, all members will be teleported back. # Default: 2 RiftMinPartySize = 2 diff --git a/L2J_Mobius_CT_0_Interlude/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_CT_0_Interlude/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_CT_0_Interlude/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_CT_0_Interlude/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/Config.java b/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/Config.java index 6aae26a813..ff60325b11 100644 --- a/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/Config.java @@ -2905,8 +2905,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d73eb19cf3..c8d45f8574 100644 --- a/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_CT_0_Interlude/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -138,7 +138,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_CT_2.4_Epilogue/dist/game/config/Character.ini b/L2J_Mobius_CT_2.4_Epilogue/dist/game/config/Character.ini index a211a1f9fc..f5def71aa9 100644 --- a/L2J_Mobius_CT_2.4_Epilogue/dist/game/config/Character.ini +++ b/L2J_Mobius_CT_2.4_Epilogue/dist/game/config/Character.ini @@ -734,7 +734,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 diff --git a/L2J_Mobius_CT_2.4_Epilogue/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_CT_2.4_Epilogue/dist/game/config/Custom/SellBuffs.ini index 1c50d35a49..4002cfb48d 100644 --- a/L2J_Mobius_CT_2.4_Epilogue/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_CT_2.4_Epilogue/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_CT_2.4_Epilogue/dist/game/config/General.ini b/L2J_Mobius_CT_2.4_Epilogue/dist/game/config/General.ini index 329991be27..4f8e14504f 100644 --- a/L2J_Mobius_CT_2.4_Epilogue/dist/game/config/General.ini +++ b/L2J_Mobius_CT_2.4_Epilogue/dist/game/config/General.ini @@ -554,7 +554,7 @@ AltItemAuctionTimeExtendsOnBid = 0 # Dimension Rift # --------------------------------------------------------------------------- -# Minimal party size to enter rift. Min = 2, Max = 9. +# Minimum party size to enter rift. Min = 2, Max = 9. # If while inside the rift, the party becomes smaller, all members will be teleported back. # Default: 2 RiftMinPartySize = 2 diff --git a/L2J_Mobius_CT_2.4_Epilogue/dist/game/config/GrandBoss.ini b/L2J_Mobius_CT_2.4_Epilogue/dist/game/config/GrandBoss.ini index 06a17674eb..48e9335884 100644 --- a/L2J_Mobius_CT_2.4_Epilogue/dist/game/config/GrandBoss.ini +++ b/L2J_Mobius_CT_2.4_Epilogue/dist/game/config/GrandBoss.ini @@ -84,5 +84,5 @@ IntervalOfBelethSpawn = 120 # Random interval. Range 1-192. Retail: 148 RandomOfBelethSpawn = 24 -#Minimal count of players for enter to Beleth. Retail: 36 +#Minimum count of players for enter to Beleth. Retail: 36 BelethMinPlayers = 36 \ No newline at end of file diff --git a/L2J_Mobius_CT_2.4_Epilogue/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_CT_2.4_Epilogue/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_CT_2.4_Epilogue/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_CT_2.4_Epilogue/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/Config.java b/L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/Config.java index 403642d19c..be54cfabff 100644 --- a/L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/Config.java @@ -3006,8 +3006,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d73eb19cf3..c8d45f8574 100644 --- a/L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_CT_2.4_Epilogue/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -138,7 +138,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_CT_2.6_HighFive/dist/game/config/Character.ini b/L2J_Mobius_CT_2.6_HighFive/dist/game/config/Character.ini index 347f82763f..8fb2ab3b4c 100644 --- a/L2J_Mobius_CT_2.6_HighFive/dist/game/config/Character.ini +++ b/L2J_Mobius_CT_2.6_HighFive/dist/game/config/Character.ini @@ -757,7 +757,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 diff --git a/L2J_Mobius_CT_2.6_HighFive/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_CT_2.6_HighFive/dist/game/config/Custom/SellBuffs.ini index 1c50d35a49..4002cfb48d 100644 --- a/L2J_Mobius_CT_2.6_HighFive/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_CT_2.6_HighFive/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_CT_2.6_HighFive/dist/game/config/General.ini b/L2J_Mobius_CT_2.6_HighFive/dist/game/config/General.ini index 329991be27..4f8e14504f 100644 --- a/L2J_Mobius_CT_2.6_HighFive/dist/game/config/General.ini +++ b/L2J_Mobius_CT_2.6_HighFive/dist/game/config/General.ini @@ -554,7 +554,7 @@ AltItemAuctionTimeExtendsOnBid = 0 # Dimension Rift # --------------------------------------------------------------------------- -# Minimal party size to enter rift. Min = 2, Max = 9. +# Minimum party size to enter rift. Min = 2, Max = 9. # If while inside the rift, the party becomes smaller, all members will be teleported back. # Default: 2 RiftMinPartySize = 2 diff --git a/L2J_Mobius_CT_2.6_HighFive/dist/game/config/GrandBoss.ini b/L2J_Mobius_CT_2.6_HighFive/dist/game/config/GrandBoss.ini index 49e9c98835..af66cc3ecf 100644 --- a/L2J_Mobius_CT_2.6_HighFive/dist/game/config/GrandBoss.ini +++ b/L2J_Mobius_CT_2.6_HighFive/dist/game/config/GrandBoss.ini @@ -74,5 +74,5 @@ IntervalOfBelethSpawn = 120 # Random interval. Range 1-192. Retail: 148 RandomOfBelethSpawn = 24 -#Minimal count of players for enter to Beleth. Retail: 36 +#Minimum count of players for enter to Beleth. Retail: 36 BelethMinPlayers = 36 \ No newline at end of file diff --git a/L2J_Mobius_CT_2.6_HighFive/dist/game/config/Olympiad.ini b/L2J_Mobius_CT_2.6_HighFive/dist/game/config/Olympiad.ini index a1c5b70b66..d10b47d167 100644 --- a/L2J_Mobius_CT_2.6_HighFive/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_CT_2.6_HighFive/dist/game/config/Olympiad.ini @@ -83,7 +83,7 @@ AltOlyTeamReward = 13722,85 # Default: 13722 AltOlyCompRewItem = 13722 -# The minimal matches you need to participate to receive point rewards +# The minimum matches you need to participate to receive point rewards # Default: 15 AltOlyMinMatchesForPoints = 15 diff --git a/L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/Config.java b/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/Config.java index 39c5ee9c33..81bedb6ed8 100644 --- a/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/Config.java @@ -3013,8 +3013,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d73eb19cf3..c8d45f8574 100644 --- a/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -138,7 +138,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/olympiad/OlympiadGameTeams.java b/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/olympiad/OlympiadGameTeams.java index 3565cfa4e7..85da461260 100644 --- a/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/olympiad/OlympiadGameTeams.java +++ b/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/olympiad/OlympiadGameTeams.java @@ -646,7 +646,7 @@ public class OlympiadGameTeams extends AbstractOlympiadGame // calculating coefficients and trying to correct total number of points for each team // due to rounding errors total points after correction will always be lower or equal - // than needed minimal sum + // than needed minimum sum final double dividerOne = (double) totalPointsTeamOne / min; final double dividerTwo = (double) totalPointsTeamTwo / min; totalPointsTeamOne = min; diff --git a/L2J_Mobius_Classic_2.0_Saviors/dist/game/config/Character.ini b/L2J_Mobius_Classic_2.0_Saviors/dist/game/config/Character.ini index 69066a87d6..05c3d73822 100644 --- a/L2J_Mobius_Classic_2.0_Saviors/dist/game/config/Character.ini +++ b/L2J_Mobius_Classic_2.0_Saviors/dist/game/config/Character.ini @@ -560,7 +560,7 @@ AltClanMembersTimeForBonus = 30mins # Party # --------------------------------------------------------------------------- -# Maximal count of players in one party. +# Maximum count of players in one party. # WARNING: More than 9 can cause client UI problems. # Default: 9 AltPartyMaxMembers = 9 @@ -640,7 +640,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 diff --git a/L2J_Mobius_Classic_2.0_Saviors/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_Classic_2.0_Saviors/dist/game/config/Custom/SellBuffs.ini index 1c50d35a49..4002cfb48d 100644 --- a/L2J_Mobius_Classic_2.0_Saviors/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_Classic_2.0_Saviors/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_Classic_2.0_Saviors/dist/game/config/Olympiad.ini b/L2J_Mobius_Classic_2.0_Saviors/dist/game/config/Olympiad.ini index c821ccdbc8..88c775af91 100644 --- a/L2J_Mobius_Classic_2.0_Saviors/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_Classic_2.0_Saviors/dist/game/config/Olympiad.ini @@ -65,7 +65,7 @@ AltOlyLoserReward = None # 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 diff --git a/L2J_Mobius_Classic_2.0_Saviors/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_Classic_2.0_Saviors/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_Classic_2.0_Saviors/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_Classic_2.0_Saviors/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/Config.java b/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/Config.java index 472b6cdd81..7a1eadfd6c 100644 --- a/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/Config.java @@ -3411,8 +3411,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d8c2a5c679..7263d256ac 100644 --- a/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -139,7 +139,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/model/ArmorSet.java b/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/model/ArmorSet.java index a84709e2db..fbfe633ecc 100644 --- a/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/model/ArmorSet.java +++ b/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/model/ArmorSet.java @@ -102,7 +102,7 @@ public class ArmorSet } /** - * The list of skills that are activated when set reaches it's minimal equipped items condition + * The list of skills that are activated when set reaches it's minimum equipped items condition * @return */ public List getSkills() diff --git a/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/model/quest/Quest.java b/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/model/quest/Quest.java index 1d464ba58a..5b22082695 100644 --- a/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/model/quest/Quest.java +++ b/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/model/quest/Quest.java @@ -1740,7 +1740,7 @@ public class Quest extends AbstractScript implements IIdentifiable /** * @param player the player whose language settings to use in finding the html of the right language - * @return the default html for when player don't have minimal level for reward: "You cannot receive quest rewards as your character.." + * @return the default html for when player don't have minimum level for reward: "You cannot receive quest rewards as your character.." */ public static String getNoQuestLevelRewardMsg(Player player) { diff --git a/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java b/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java index 7cb2bf4425..2b7a5afbeb 100644 --- a/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java +++ b/L2J_Mobius_Classic_2.0_Saviors/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java @@ -58,7 +58,7 @@ public class BuyListSeed implements IClientOutgoingPacket packet.writeH(_list.size()); // list length for (SeedProduction s : _list) { - packet.writeC(0); // mask item 0 to print minimal item information + packet.writeC(0); // mask item 0 to print minimum item information packet.writeD(s.getId()); // ObjectId packet.writeD(s.getId()); // ItemId packet.writeC(0xFF); // T1 diff --git a/L2J_Mobius_Classic_2.1_Zaken/dist/game/config/Character.ini b/L2J_Mobius_Classic_2.1_Zaken/dist/game/config/Character.ini index 51c69f6a84..4626962324 100644 --- a/L2J_Mobius_Classic_2.1_Zaken/dist/game/config/Character.ini +++ b/L2J_Mobius_Classic_2.1_Zaken/dist/game/config/Character.ini @@ -560,7 +560,7 @@ AltClanMembersTimeForBonus = 30mins # Party # --------------------------------------------------------------------------- -# Maximal count of players in one party. +# Maximum count of players in one party. # WARNING: More than 9 can cause client UI problems. # Default: 9 AltPartyMaxMembers = 9 @@ -640,7 +640,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 diff --git a/L2J_Mobius_Classic_2.1_Zaken/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_Classic_2.1_Zaken/dist/game/config/Custom/SellBuffs.ini index 1c50d35a49..4002cfb48d 100644 --- a/L2J_Mobius_Classic_2.1_Zaken/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_Classic_2.1_Zaken/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_Classic_2.1_Zaken/dist/game/config/Olympiad.ini b/L2J_Mobius_Classic_2.1_Zaken/dist/game/config/Olympiad.ini index c821ccdbc8..88c775af91 100644 --- a/L2J_Mobius_Classic_2.1_Zaken/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_Classic_2.1_Zaken/dist/game/config/Olympiad.ini @@ -65,7 +65,7 @@ AltOlyLoserReward = None # 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 diff --git a/L2J_Mobius_Classic_2.1_Zaken/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_Classic_2.1_Zaken/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_Classic_2.1_Zaken/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_Classic_2.1_Zaken/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/Config.java b/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/Config.java index 00987915e1..f1c04a6e3e 100644 --- a/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/Config.java @@ -3417,8 +3417,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d8c2a5c679..7263d256ac 100644 --- a/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -139,7 +139,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/model/ArmorSet.java b/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/model/ArmorSet.java index a84709e2db..fbfe633ecc 100644 --- a/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/model/ArmorSet.java +++ b/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/model/ArmorSet.java @@ -102,7 +102,7 @@ public class ArmorSet } /** - * The list of skills that are activated when set reaches it's minimal equipped items condition + * The list of skills that are activated when set reaches it's minimum equipped items condition * @return */ public List getSkills() diff --git a/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/model/quest/Quest.java b/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/model/quest/Quest.java index 1d464ba58a..5b22082695 100644 --- a/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/model/quest/Quest.java +++ b/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/model/quest/Quest.java @@ -1740,7 +1740,7 @@ public class Quest extends AbstractScript implements IIdentifiable /** * @param player the player whose language settings to use in finding the html of the right language - * @return the default html for when player don't have minimal level for reward: "You cannot receive quest rewards as your character.." + * @return the default html for when player don't have minimum level for reward: "You cannot receive quest rewards as your character.." */ public static String getNoQuestLevelRewardMsg(Player player) { diff --git a/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java b/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java index 7cb2bf4425..2b7a5afbeb 100644 --- a/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java +++ b/L2J_Mobius_Classic_2.1_Zaken/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java @@ -58,7 +58,7 @@ public class BuyListSeed implements IClientOutgoingPacket packet.writeH(_list.size()); // list length for (SeedProduction s : _list) { - packet.writeC(0); // mask item 0 to print minimal item information + packet.writeC(0); // mask item 0 to print minimum item information packet.writeD(s.getId()); // ObjectId packet.writeD(s.getId()); // ItemId packet.writeC(0xFF); // T1 diff --git a/L2J_Mobius_Classic_2.2_Antharas/dist/game/config/Character.ini b/L2J_Mobius_Classic_2.2_Antharas/dist/game/config/Character.ini index cedf27ebd4..1cbd69db03 100644 --- a/L2J_Mobius_Classic_2.2_Antharas/dist/game/config/Character.ini +++ b/L2J_Mobius_Classic_2.2_Antharas/dist/game/config/Character.ini @@ -560,7 +560,7 @@ AltClanMembersTimeForBonus = 30mins # Party # --------------------------------------------------------------------------- -# Maximal count of players in one party. +# Maximum count of players in one party. # WARNING: More than 9 can cause client UI problems. # Default: 9 AltPartyMaxMembers = 9 @@ -640,7 +640,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 diff --git a/L2J_Mobius_Classic_2.2_Antharas/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_Classic_2.2_Antharas/dist/game/config/Custom/SellBuffs.ini index 1c50d35a49..4002cfb48d 100644 --- a/L2J_Mobius_Classic_2.2_Antharas/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_Classic_2.2_Antharas/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_Classic_2.2_Antharas/dist/game/config/Olympiad.ini b/L2J_Mobius_Classic_2.2_Antharas/dist/game/config/Olympiad.ini index c821ccdbc8..88c775af91 100644 --- a/L2J_Mobius_Classic_2.2_Antharas/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_Classic_2.2_Antharas/dist/game/config/Olympiad.ini @@ -65,7 +65,7 @@ AltOlyLoserReward = None # 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 diff --git a/L2J_Mobius_Classic_2.2_Antharas/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_Classic_2.2_Antharas/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_Classic_2.2_Antharas/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_Classic_2.2_Antharas/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/Config.java b/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/Config.java index 00987915e1..f1c04a6e3e 100644 --- a/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/Config.java @@ -3417,8 +3417,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d8c2a5c679..7263d256ac 100644 --- a/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -139,7 +139,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/model/ArmorSet.java b/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/model/ArmorSet.java index a84709e2db..fbfe633ecc 100644 --- a/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/model/ArmorSet.java +++ b/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/model/ArmorSet.java @@ -102,7 +102,7 @@ public class ArmorSet } /** - * The list of skills that are activated when set reaches it's minimal equipped items condition + * The list of skills that are activated when set reaches it's minimum equipped items condition * @return */ public List getSkills() diff --git a/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/model/quest/Quest.java b/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/model/quest/Quest.java index 1d464ba58a..5b22082695 100644 --- a/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/model/quest/Quest.java +++ b/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/model/quest/Quest.java @@ -1740,7 +1740,7 @@ public class Quest extends AbstractScript implements IIdentifiable /** * @param player the player whose language settings to use in finding the html of the right language - * @return the default html for when player don't have minimal level for reward: "You cannot receive quest rewards as your character.." + * @return the default html for when player don't have minimum level for reward: "You cannot receive quest rewards as your character.." */ public static String getNoQuestLevelRewardMsg(Player player) { diff --git a/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java b/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java index 7cb2bf4425..2b7a5afbeb 100644 --- a/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java +++ b/L2J_Mobius_Classic_2.2_Antharas/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java @@ -58,7 +58,7 @@ public class BuyListSeed implements IClientOutgoingPacket packet.writeH(_list.size()); // list length for (SeedProduction s : _list) { - packet.writeC(0); // mask item 0 to print minimal item information + packet.writeC(0); // mask item 0 to print minimum item information packet.writeD(s.getId()); // ObjectId packet.writeD(s.getId()); // ItemId packet.writeC(0xFF); // T1 diff --git a/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/config/Character.ini b/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/config/Character.ini index cedf27ebd4..1cbd69db03 100644 --- a/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/config/Character.ini +++ b/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/config/Character.ini @@ -560,7 +560,7 @@ AltClanMembersTimeForBonus = 30mins # Party # --------------------------------------------------------------------------- -# Maximal count of players in one party. +# Maximum count of players in one party. # WARNING: More than 9 can cause client UI problems. # Default: 9 AltPartyMaxMembers = 9 @@ -640,7 +640,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 diff --git a/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/config/Custom/SellBuffs.ini index 1c50d35a49..4002cfb48d 100644 --- a/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/config/Olympiad.ini b/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/config/Olympiad.ini index c821ccdbc8..88c775af91 100644 --- a/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/config/Olympiad.ini @@ -65,7 +65,7 @@ AltOlyLoserReward = None # 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 diff --git a/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/Config.java b/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/Config.java index 00987915e1..f1c04a6e3e 100644 --- a/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/Config.java @@ -3417,8 +3417,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d8c2a5c679..7263d256ac 100644 --- a/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -139,7 +139,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/model/ArmorSet.java b/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/model/ArmorSet.java index 6b504526ef..b413b5e89a 100644 --- a/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/model/ArmorSet.java +++ b/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/model/ArmorSet.java @@ -135,7 +135,7 @@ public class ArmorSet } /** - * The list of skills that are activated when set reaches it's minimal equipped items condition + * The list of skills that are activated when set reaches it's minimum equipped items condition * @return */ public List getSkills() diff --git a/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/model/quest/Quest.java b/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/model/quest/Quest.java index 1d464ba58a..5b22082695 100644 --- a/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/model/quest/Quest.java +++ b/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/model/quest/Quest.java @@ -1740,7 +1740,7 @@ public class Quest extends AbstractScript implements IIdentifiable /** * @param player the player whose language settings to use in finding the html of the right language - * @return the default html for when player don't have minimal level for reward: "You cannot receive quest rewards as your character.." + * @return the default html for when player don't have minimum level for reward: "You cannot receive quest rewards as your character.." */ public static String getNoQuestLevelRewardMsg(Player player) { diff --git a/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java b/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java index 7cb2bf4425..2b7a5afbeb 100644 --- a/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java +++ b/L2J_Mobius_Classic_2.3_SevenSigns/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java @@ -58,7 +58,7 @@ public class BuyListSeed implements IClientOutgoingPacket packet.writeH(_list.size()); // list length for (SeedProduction s : _list) { - packet.writeC(0); // mask item 0 to print minimal item information + packet.writeC(0); // mask item 0 to print minimum item information packet.writeD(s.getId()); // ObjectId packet.writeD(s.getId()); // ItemId packet.writeC(0xFF); // T1 diff --git a/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/config/Character.ini b/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/config/Character.ini index 971469c69a..781f7c2c61 100644 --- a/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/config/Character.ini +++ b/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/config/Character.ini @@ -576,7 +576,7 @@ AltClanMembersTimeForBonus = 30mins # Party # --------------------------------------------------------------------------- -# Maximal count of players in one party. +# Maximum count of players in one party. # WARNING: More than 9 can cause client UI problems. # Default: 9 AltPartyMaxMembers = 9 @@ -656,7 +656,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 diff --git a/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/config/Custom/SellBuffs.ini index 1c50d35a49..4002cfb48d 100644 --- a/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/config/Olympiad.ini b/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/config/Olympiad.ini index c821ccdbc8..88c775af91 100644 --- a/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/config/Olympiad.ini @@ -65,7 +65,7 @@ AltOlyLoserReward = None # 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 diff --git a/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/Config.java b/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/Config.java index 0f8abb909f..0c1a3468a7 100644 --- a/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/Config.java @@ -3426,8 +3426,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d8c2a5c679..7263d256ac 100644 --- a/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -139,7 +139,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/model/ArmorSet.java b/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/model/ArmorSet.java index 6b504526ef..b413b5e89a 100644 --- a/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/model/ArmorSet.java +++ b/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/model/ArmorSet.java @@ -135,7 +135,7 @@ public class ArmorSet } /** - * The list of skills that are activated when set reaches it's minimal equipped items condition + * The list of skills that are activated when set reaches it's minimum equipped items condition * @return */ public List getSkills() diff --git a/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/model/quest/Quest.java b/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/model/quest/Quest.java index 1d464ba58a..5b22082695 100644 --- a/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/model/quest/Quest.java +++ b/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/model/quest/Quest.java @@ -1740,7 +1740,7 @@ public class Quest extends AbstractScript implements IIdentifiable /** * @param player the player whose language settings to use in finding the html of the right language - * @return the default html for when player don't have minimal level for reward: "You cannot receive quest rewards as your character.." + * @return the default html for when player don't have minimum level for reward: "You cannot receive quest rewards as your character.." */ public static String getNoQuestLevelRewardMsg(Player player) { diff --git a/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java b/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java index 7cb2bf4425..2b7a5afbeb 100644 --- a/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java +++ b/L2J_Mobius_Classic_2.4_SecretOfEmpire/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java @@ -58,7 +58,7 @@ public class BuyListSeed implements IClientOutgoingPacket packet.writeH(_list.size()); // list length for (SeedProduction s : _list) { - packet.writeC(0); // mask item 0 to print minimal item information + packet.writeC(0); // mask item 0 to print minimum item information packet.writeD(s.getId()); // ObjectId packet.writeD(s.getId()); // ItemId packet.writeC(0xFF); // T1 diff --git a/L2J_Mobius_Classic_3.0_TheKamael/dist/game/config/Character.ini b/L2J_Mobius_Classic_3.0_TheKamael/dist/game/config/Character.ini index 33698861c4..7414a3e603 100644 --- a/L2J_Mobius_Classic_3.0_TheKamael/dist/game/config/Character.ini +++ b/L2J_Mobius_Classic_3.0_TheKamael/dist/game/config/Character.ini @@ -576,7 +576,7 @@ AltClanMembersTimeForBonus = 30mins # Party # --------------------------------------------------------------------------- -# Maximal count of players in one party. +# Maximum count of players in one party. # WARNING: More than 9 can cause client UI problems. # Default: 9 AltPartyMaxMembers = 9 @@ -656,7 +656,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 diff --git a/L2J_Mobius_Classic_3.0_TheKamael/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_Classic_3.0_TheKamael/dist/game/config/Custom/SellBuffs.ini index 1c50d35a49..4002cfb48d 100644 --- a/L2J_Mobius_Classic_3.0_TheKamael/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_Classic_3.0_TheKamael/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_Classic_3.0_TheKamael/dist/game/config/Olympiad.ini b/L2J_Mobius_Classic_3.0_TheKamael/dist/game/config/Olympiad.ini index c821ccdbc8..88c775af91 100644 --- a/L2J_Mobius_Classic_3.0_TheKamael/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_Classic_3.0_TheKamael/dist/game/config/Olympiad.ini @@ -65,7 +65,7 @@ AltOlyLoserReward = None # 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 diff --git a/L2J_Mobius_Classic_3.0_TheKamael/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_Classic_3.0_TheKamael/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_Classic_3.0_TheKamael/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_Classic_3.0_TheKamael/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/Config.java b/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/Config.java index 30dd966a0d..18a2646218 100644 --- a/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/Config.java @@ -3438,8 +3438,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d8c2a5c679..7263d256ac 100644 --- a/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -139,7 +139,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/model/ArmorSet.java b/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/model/ArmorSet.java index 6b504526ef..b413b5e89a 100644 --- a/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/model/ArmorSet.java +++ b/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/model/ArmorSet.java @@ -135,7 +135,7 @@ public class ArmorSet } /** - * The list of skills that are activated when set reaches it's minimal equipped items condition + * The list of skills that are activated when set reaches it's minimum equipped items condition * @return */ public List getSkills() diff --git a/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/model/quest/Quest.java b/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/model/quest/Quest.java index 1d464ba58a..5b22082695 100644 --- a/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/model/quest/Quest.java +++ b/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/model/quest/Quest.java @@ -1740,7 +1740,7 @@ public class Quest extends AbstractScript implements IIdentifiable /** * @param player the player whose language settings to use in finding the html of the right language - * @return the default html for when player don't have minimal level for reward: "You cannot receive quest rewards as your character.." + * @return the default html for when player don't have minimum level for reward: "You cannot receive quest rewards as your character.." */ public static String getNoQuestLevelRewardMsg(Player player) { diff --git a/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java b/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java index 7cb2bf4425..2b7a5afbeb 100644 --- a/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java +++ b/L2J_Mobius_Classic_3.0_TheKamael/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java @@ -58,7 +58,7 @@ public class BuyListSeed implements IClientOutgoingPacket packet.writeH(_list.size()); // list length for (SeedProduction s : _list) { - packet.writeC(0); // mask item 0 to print minimal item information + packet.writeC(0); // mask item 0 to print minimum item information packet.writeD(s.getId()); // ObjectId packet.writeD(s.getId()); // ItemId packet.writeC(0xFF); // T1 diff --git a/L2J_Mobius_Classic_Interlude/dist/game/config/Character.ini b/L2J_Mobius_Classic_Interlude/dist/game/config/Character.ini index 87223e78f2..bedc89d03e 100644 --- a/L2J_Mobius_Classic_Interlude/dist/game/config/Character.ini +++ b/L2J_Mobius_Classic_Interlude/dist/game/config/Character.ini @@ -561,7 +561,7 @@ AltClanMembersTimeForBonus = 30mins # Party # --------------------------------------------------------------------------- -# Maximal count of players in one party. +# Maximum count of players in one party. # WARNING: More than 9 can cause client UI problems. # Default: 9 AltPartyMaxMembers = 9 @@ -641,7 +641,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 diff --git a/L2J_Mobius_Classic_Interlude/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_Classic_Interlude/dist/game/config/Custom/SellBuffs.ini index 1c50d35a49..4002cfb48d 100644 --- a/L2J_Mobius_Classic_Interlude/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_Classic_Interlude/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_Classic_Interlude/dist/game/config/Olympiad.ini b/L2J_Mobius_Classic_Interlude/dist/game/config/Olympiad.ini index 2f1b32adcd..b5ef91dc21 100644 --- a/L2J_Mobius_Classic_Interlude/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_Classic_Interlude/dist/game/config/Olympiad.ini @@ -65,7 +65,7 @@ AltOlyLoserReward = None # 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 diff --git a/L2J_Mobius_Classic_Interlude/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_Classic_Interlude/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_Classic_Interlude/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_Classic_Interlude/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/Config.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/Config.java index 7215234b80..1442c53029 100644 --- a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/Config.java @@ -3414,8 +3414,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d8c2a5c679..7263d256ac 100644 --- a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -139,7 +139,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/model/ArmorSet.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/model/ArmorSet.java index a84709e2db..fbfe633ecc 100644 --- a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/model/ArmorSet.java +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/model/ArmorSet.java @@ -102,7 +102,7 @@ public class ArmorSet } /** - * The list of skills that are activated when set reaches it's minimal equipped items condition + * The list of skills that are activated when set reaches it's minimum equipped items condition * @return */ public List getSkills() diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/model/quest/Quest.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/model/quest/Quest.java index 1d464ba58a..5b22082695 100644 --- a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/model/quest/Quest.java +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/model/quest/Quest.java @@ -1740,7 +1740,7 @@ public class Quest extends AbstractScript implements IIdentifiable /** * @param player the player whose language settings to use in finding the html of the right language - * @return the default html for when player don't have minimal level for reward: "You cannot receive quest rewards as your character.." + * @return the default html for when player don't have minimum level for reward: "You cannot receive quest rewards as your character.." */ public static String getNoQuestLevelRewardMsg(Player player) { diff --git a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java index 7cb2bf4425..2b7a5afbeb 100644 --- a/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java +++ b/L2J_Mobius_Classic_Interlude/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java @@ -58,7 +58,7 @@ public class BuyListSeed implements IClientOutgoingPacket packet.writeH(_list.size()); // list length for (SeedProduction s : _list) { - packet.writeC(0); // mask item 0 to print minimal item information + packet.writeC(0); // mask item 0 to print minimum item information packet.writeD(s.getId()); // ObjectId packet.writeD(s.getId()); // ItemId packet.writeC(0xFF); // T1 diff --git a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/game/config/Character.ini b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/game/config/Character.ini index ed63d4e74b..ce4b698424 100644 --- a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/game/config/Character.ini +++ b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/game/config/Character.ini @@ -576,7 +576,7 @@ AltClanMembersTimeForBonus = 30mins # Party # --------------------------------------------------------------------------- -# Maximal count of players in one party. +# Maximum count of players in one party. # WARNING: More than 9 can cause client UI problems. # Default: 9 AltPartyMaxMembers = 9 @@ -656,7 +656,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 diff --git a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/game/config/Custom/SellBuffs.ini index 1c50d35a49..4002cfb48d 100644 --- a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/game/config/Olympiad.ini b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/game/config/Olympiad.ini index c821ccdbc8..88c775af91 100644 --- a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/game/config/Olympiad.ini @@ -65,7 +65,7 @@ AltOlyLoserReward = None # 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 diff --git a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/Config.java b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/Config.java index bac0eb67f5..446764a23e 100644 --- a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/Config.java @@ -3484,8 +3484,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d8c2a5c679..7263d256ac 100644 --- a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -139,7 +139,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/gameserver/model/ArmorSet.java b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/gameserver/model/ArmorSet.java index 6b504526ef..b413b5e89a 100644 --- a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/gameserver/model/ArmorSet.java +++ b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/gameserver/model/ArmorSet.java @@ -135,7 +135,7 @@ public class ArmorSet } /** - * The list of skills that are activated when set reaches it's minimal equipped items condition + * The list of skills that are activated when set reaches it's minimum equipped items condition * @return */ public List getSkills() diff --git a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/gameserver/model/quest/Quest.java b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/gameserver/model/quest/Quest.java index c8b3ca4706..e2e6e1bad3 100644 --- a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/gameserver/model/quest/Quest.java +++ b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/gameserver/model/quest/Quest.java @@ -1747,7 +1747,7 @@ public class Quest extends AbstractScript implements IIdentifiable /** * @param player the player whose language settings to use in finding the html of the right language - * @return the default html for when player don't have minimal level for reward: "You cannot receive quest rewards as your character.." + * @return the default html for when player don't have minimum level for reward: "You cannot receive quest rewards as your character.." */ public static String getNoQuestLevelRewardMsg(Player player) { diff --git a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java index 7cb2bf4425..2b7a5afbeb 100644 --- a/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java +++ b/L2J_Mobius_Essence_4.2_DwellingOfSpirits/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java @@ -58,7 +58,7 @@ public class BuyListSeed implements IClientOutgoingPacket packet.writeH(_list.size()); // list length for (SeedProduction s : _list) { - packet.writeC(0); // mask item 0 to print minimal item information + packet.writeC(0); // mask item 0 to print minimum item information packet.writeD(s.getId()); // ObjectId packet.writeD(s.getId()); // ItemId packet.writeC(0xFF); // T1 diff --git a/L2J_Mobius_Essence_5.2_FrostLord/dist/game/config/Character.ini b/L2J_Mobius_Essence_5.2_FrostLord/dist/game/config/Character.ini index ed63d4e74b..ce4b698424 100644 --- a/L2J_Mobius_Essence_5.2_FrostLord/dist/game/config/Character.ini +++ b/L2J_Mobius_Essence_5.2_FrostLord/dist/game/config/Character.ini @@ -576,7 +576,7 @@ AltClanMembersTimeForBonus = 30mins # Party # --------------------------------------------------------------------------- -# Maximal count of players in one party. +# Maximum count of players in one party. # WARNING: More than 9 can cause client UI problems. # Default: 9 AltPartyMaxMembers = 9 @@ -656,7 +656,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 diff --git a/L2J_Mobius_Essence_5.2_FrostLord/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_Essence_5.2_FrostLord/dist/game/config/Custom/SellBuffs.ini index 1c50d35a49..4002cfb48d 100644 --- a/L2J_Mobius_Essence_5.2_FrostLord/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_Essence_5.2_FrostLord/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_Essence_5.2_FrostLord/dist/game/config/Olympiad.ini b/L2J_Mobius_Essence_5.2_FrostLord/dist/game/config/Olympiad.ini index c821ccdbc8..88c775af91 100644 --- a/L2J_Mobius_Essence_5.2_FrostLord/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_Essence_5.2_FrostLord/dist/game/config/Olympiad.ini @@ -65,7 +65,7 @@ AltOlyLoserReward = None # 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 diff --git a/L2J_Mobius_Essence_5.2_FrostLord/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_Essence_5.2_FrostLord/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_Essence_5.2_FrostLord/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_Essence_5.2_FrostLord/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_Essence_5.2_FrostLord/java/org/l2jmobius/Config.java b/L2J_Mobius_Essence_5.2_FrostLord/java/org/l2jmobius/Config.java index c23c2b65c0..209f889089 100644 --- a/L2J_Mobius_Essence_5.2_FrostLord/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Essence_5.2_FrostLord/java/org/l2jmobius/Config.java @@ -3491,8 +3491,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_Essence_5.2_FrostLord/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_Essence_5.2_FrostLord/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d8c2a5c679..7263d256ac 100644 --- a/L2J_Mobius_Essence_5.2_FrostLord/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_Essence_5.2_FrostLord/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -139,7 +139,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_Essence_5.2_FrostLord/java/org/l2jmobius/gameserver/model/ArmorSet.java b/L2J_Mobius_Essence_5.2_FrostLord/java/org/l2jmobius/gameserver/model/ArmorSet.java index 6b504526ef..b413b5e89a 100644 --- a/L2J_Mobius_Essence_5.2_FrostLord/java/org/l2jmobius/gameserver/model/ArmorSet.java +++ b/L2J_Mobius_Essence_5.2_FrostLord/java/org/l2jmobius/gameserver/model/ArmorSet.java @@ -135,7 +135,7 @@ public class ArmorSet } /** - * The list of skills that are activated when set reaches it's minimal equipped items condition + * The list of skills that are activated when set reaches it's minimum equipped items condition * @return */ public List getSkills() diff --git a/L2J_Mobius_Essence_5.2_FrostLord/java/org/l2jmobius/gameserver/model/quest/Quest.java b/L2J_Mobius_Essence_5.2_FrostLord/java/org/l2jmobius/gameserver/model/quest/Quest.java index c8b3ca4706..e2e6e1bad3 100644 --- a/L2J_Mobius_Essence_5.2_FrostLord/java/org/l2jmobius/gameserver/model/quest/Quest.java +++ b/L2J_Mobius_Essence_5.2_FrostLord/java/org/l2jmobius/gameserver/model/quest/Quest.java @@ -1747,7 +1747,7 @@ public class Quest extends AbstractScript implements IIdentifiable /** * @param player the player whose language settings to use in finding the html of the right language - * @return the default html for when player don't have minimal level for reward: "You cannot receive quest rewards as your character.." + * @return the default html for when player don't have minimum level for reward: "You cannot receive quest rewards as your character.." */ public static String getNoQuestLevelRewardMsg(Player player) { diff --git a/L2J_Mobius_Essence_5.2_FrostLord/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java b/L2J_Mobius_Essence_5.2_FrostLord/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java index 7cb2bf4425..2b7a5afbeb 100644 --- a/L2J_Mobius_Essence_5.2_FrostLord/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java +++ b/L2J_Mobius_Essence_5.2_FrostLord/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java @@ -58,7 +58,7 @@ public class BuyListSeed implements IClientOutgoingPacket packet.writeH(_list.size()); // list length for (SeedProduction s : _list) { - packet.writeC(0); // mask item 0 to print minimal item information + packet.writeC(0); // mask item 0 to print minimum item information packet.writeD(s.getId()); // ObjectId packet.writeD(s.getId()); // ItemId packet.writeC(0xFF); // T1 diff --git a/L2J_Mobius_Essence_6.1_BattleChronicle/dist/game/config/Character.ini b/L2J_Mobius_Essence_6.1_BattleChronicle/dist/game/config/Character.ini index ed63d4e74b..ce4b698424 100644 --- a/L2J_Mobius_Essence_6.1_BattleChronicle/dist/game/config/Character.ini +++ b/L2J_Mobius_Essence_6.1_BattleChronicle/dist/game/config/Character.ini @@ -576,7 +576,7 @@ AltClanMembersTimeForBonus = 30mins # Party # --------------------------------------------------------------------------- -# Maximal count of players in one party. +# Maximum count of players in one party. # WARNING: More than 9 can cause client UI problems. # Default: 9 AltPartyMaxMembers = 9 @@ -656,7 +656,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 diff --git a/L2J_Mobius_Essence_6.1_BattleChronicle/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_Essence_6.1_BattleChronicle/dist/game/config/Custom/SellBuffs.ini index 1c50d35a49..4002cfb48d 100644 --- a/L2J_Mobius_Essence_6.1_BattleChronicle/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_Essence_6.1_BattleChronicle/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_Essence_6.1_BattleChronicle/dist/game/config/Olympiad.ini b/L2J_Mobius_Essence_6.1_BattleChronicle/dist/game/config/Olympiad.ini index c821ccdbc8..88c775af91 100644 --- a/L2J_Mobius_Essence_6.1_BattleChronicle/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_Essence_6.1_BattleChronicle/dist/game/config/Olympiad.ini @@ -65,7 +65,7 @@ AltOlyLoserReward = None # 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 diff --git a/L2J_Mobius_Essence_6.1_BattleChronicle/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_Essence_6.1_BattleChronicle/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_Essence_6.1_BattleChronicle/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_Essence_6.1_BattleChronicle/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_Essence_6.1_BattleChronicle/java/org/l2jmobius/Config.java b/L2J_Mobius_Essence_6.1_BattleChronicle/java/org/l2jmobius/Config.java index c23c2b65c0..209f889089 100644 --- a/L2J_Mobius_Essence_6.1_BattleChronicle/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Essence_6.1_BattleChronicle/java/org/l2jmobius/Config.java @@ -3491,8 +3491,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_Essence_6.1_BattleChronicle/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_Essence_6.1_BattleChronicle/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d8c2a5c679..7263d256ac 100644 --- a/L2J_Mobius_Essence_6.1_BattleChronicle/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_Essence_6.1_BattleChronicle/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -139,7 +139,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_Essence_6.1_BattleChronicle/java/org/l2jmobius/gameserver/model/ArmorSet.java b/L2J_Mobius_Essence_6.1_BattleChronicle/java/org/l2jmobius/gameserver/model/ArmorSet.java index 6b504526ef..b413b5e89a 100644 --- a/L2J_Mobius_Essence_6.1_BattleChronicle/java/org/l2jmobius/gameserver/model/ArmorSet.java +++ b/L2J_Mobius_Essence_6.1_BattleChronicle/java/org/l2jmobius/gameserver/model/ArmorSet.java @@ -135,7 +135,7 @@ public class ArmorSet } /** - * The list of skills that are activated when set reaches it's minimal equipped items condition + * The list of skills that are activated when set reaches it's minimum equipped items condition * @return */ public List getSkills() diff --git a/L2J_Mobius_Essence_6.1_BattleChronicle/java/org/l2jmobius/gameserver/model/quest/Quest.java b/L2J_Mobius_Essence_6.1_BattleChronicle/java/org/l2jmobius/gameserver/model/quest/Quest.java index c8b3ca4706..e2e6e1bad3 100644 --- a/L2J_Mobius_Essence_6.1_BattleChronicle/java/org/l2jmobius/gameserver/model/quest/Quest.java +++ b/L2J_Mobius_Essence_6.1_BattleChronicle/java/org/l2jmobius/gameserver/model/quest/Quest.java @@ -1747,7 +1747,7 @@ public class Quest extends AbstractScript implements IIdentifiable /** * @param player the player whose language settings to use in finding the html of the right language - * @return the default html for when player don't have minimal level for reward: "You cannot receive quest rewards as your character.." + * @return the default html for when player don't have minimum level for reward: "You cannot receive quest rewards as your character.." */ public static String getNoQuestLevelRewardMsg(Player player) { diff --git a/L2J_Mobius_Essence_6.1_BattleChronicle/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java b/L2J_Mobius_Essence_6.1_BattleChronicle/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java index 7cb2bf4425..2b7a5afbeb 100644 --- a/L2J_Mobius_Essence_6.1_BattleChronicle/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java +++ b/L2J_Mobius_Essence_6.1_BattleChronicle/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java @@ -58,7 +58,7 @@ public class BuyListSeed implements IClientOutgoingPacket packet.writeH(_list.size()); // list length for (SeedProduction s : _list) { - packet.writeC(0); // mask item 0 to print minimal item information + packet.writeC(0); // mask item 0 to print minimum item information packet.writeD(s.getId()); // ObjectId packet.writeD(s.getId()); // ItemId packet.writeC(0xFF); // T1 diff --git a/L2J_Mobius_Essence_6.2_Vanguard/dist/game/config/Character.ini b/L2J_Mobius_Essence_6.2_Vanguard/dist/game/config/Character.ini index ed63d4e74b..ce4b698424 100644 --- a/L2J_Mobius_Essence_6.2_Vanguard/dist/game/config/Character.ini +++ b/L2J_Mobius_Essence_6.2_Vanguard/dist/game/config/Character.ini @@ -576,7 +576,7 @@ AltClanMembersTimeForBonus = 30mins # Party # --------------------------------------------------------------------------- -# Maximal count of players in one party. +# Maximum count of players in one party. # WARNING: More than 9 can cause client UI problems. # Default: 9 AltPartyMaxMembers = 9 @@ -656,7 +656,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 diff --git a/L2J_Mobius_Essence_6.2_Vanguard/dist/game/config/Custom/SellBuffs.ini b/L2J_Mobius_Essence_6.2_Vanguard/dist/game/config/Custom/SellBuffs.ini index 1c50d35a49..4002cfb48d 100644 --- a/L2J_Mobius_Essence_6.2_Vanguard/dist/game/config/Custom/SellBuffs.ini +++ b/L2J_Mobius_Essence_6.2_Vanguard/dist/game/config/Custom/SellBuffs.ini @@ -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 diff --git a/L2J_Mobius_Essence_6.2_Vanguard/dist/game/config/Olympiad.ini b/L2J_Mobius_Essence_6.2_Vanguard/dist/game/config/Olympiad.ini index c821ccdbc8..88c775af91 100644 --- a/L2J_Mobius_Essence_6.2_Vanguard/dist/game/config/Olympiad.ini +++ b/L2J_Mobius_Essence_6.2_Vanguard/dist/game/config/Olympiad.ini @@ -65,7 +65,7 @@ AltOlyLoserReward = None # 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 diff --git a/L2J_Mobius_Essence_6.2_Vanguard/dist/game/data/scripts/custom/SellBuff/SellBuff.java b/L2J_Mobius_Essence_6.2_Vanguard/dist/game/data/scripts/custom/SellBuff/SellBuff.java index 22f0d7fc6a..84f79583e2 100644 --- a/L2J_Mobius_Essence_6.2_Vanguard/dist/game/data/scripts/custom/SellBuff/SellBuff.java +++ b/L2J_Mobius_Essence_6.2_Vanguard/dist/game/data/scripts/custom/SellBuff/SellBuff.java @@ -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) diff --git a/L2J_Mobius_Essence_6.2_Vanguard/java/org/l2jmobius/Config.java b/L2J_Mobius_Essence_6.2_Vanguard/java/org/l2jmobius/Config.java index c3f9333af2..7b3d9c13ed 100644 --- a/L2J_Mobius_Essence_6.2_Vanguard/java/org/l2jmobius/Config.java +++ b/L2J_Mobius_Essence_6.2_Vanguard/java/org/l2jmobius/Config.java @@ -3491,8 +3491,8 @@ public class Config SELLBUFF_ENABLED = sellBuffConfig.getBoolean("SellBuffEnable", false); SELLBUFF_MP_MULTIPLER = sellBuffConfig.getInt("MpCostMultipler", 1); SELLBUFF_PAYMENT_ID = sellBuffConfig.getInt("PaymentID", 57); - SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimalPrice", 100000); - SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximalPrice", 100000000); + SELLBUFF_MIN_PRICE = sellBuffConfig.getLong("MinimumPrice", 100000); + SELLBUFF_MAX_PRICE = sellBuffConfig.getLong("MaximumPrice", 100000000); SELLBUFF_MAX_BUFFS = sellBuffConfig.getInt("MaxBuffs", 15); // Load ServerTime config file (if exists) diff --git a/L2J_Mobius_Essence_6.2_Vanguard/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java b/L2J_Mobius_Essence_6.2_Vanguard/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java index d8c2a5c679..7263d256ac 100644 --- a/L2J_Mobius_Essence_6.2_Vanguard/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java +++ b/L2J_Mobius_Essence_6.2_Vanguard/java/org/l2jmobius/gameserver/geoengine/GeoEngine.java @@ -139,7 +139,7 @@ public class GeoEngine /** * Provides optimize selection of the buffer. When all pre-initialized buffer are locked, creates new buffer and log this situation. - * @param size : pre-calculated minimal required size + * @param size : pre-calculated minimum required size * @return NodeBuffer : buffer */ private NodeBuffer getBuffer(int size) diff --git a/L2J_Mobius_Essence_6.2_Vanguard/java/org/l2jmobius/gameserver/model/ArmorSet.java b/L2J_Mobius_Essence_6.2_Vanguard/java/org/l2jmobius/gameserver/model/ArmorSet.java index 6b504526ef..b413b5e89a 100644 --- a/L2J_Mobius_Essence_6.2_Vanguard/java/org/l2jmobius/gameserver/model/ArmorSet.java +++ b/L2J_Mobius_Essence_6.2_Vanguard/java/org/l2jmobius/gameserver/model/ArmorSet.java @@ -135,7 +135,7 @@ public class ArmorSet } /** - * The list of skills that are activated when set reaches it's minimal equipped items condition + * The list of skills that are activated when set reaches it's minimum equipped items condition * @return */ public List getSkills() diff --git a/L2J_Mobius_Essence_6.2_Vanguard/java/org/l2jmobius/gameserver/model/quest/Quest.java b/L2J_Mobius_Essence_6.2_Vanguard/java/org/l2jmobius/gameserver/model/quest/Quest.java index c8b3ca4706..e2e6e1bad3 100644 --- a/L2J_Mobius_Essence_6.2_Vanguard/java/org/l2jmobius/gameserver/model/quest/Quest.java +++ b/L2J_Mobius_Essence_6.2_Vanguard/java/org/l2jmobius/gameserver/model/quest/Quest.java @@ -1747,7 +1747,7 @@ public class Quest extends AbstractScript implements IIdentifiable /** * @param player the player whose language settings to use in finding the html of the right language - * @return the default html for when player don't have minimal level for reward: "You cannot receive quest rewards as your character.." + * @return the default html for when player don't have minimum level for reward: "You cannot receive quest rewards as your character.." */ public static String getNoQuestLevelRewardMsg(Player player) { diff --git a/L2J_Mobius_Essence_6.2_Vanguard/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java b/L2J_Mobius_Essence_6.2_Vanguard/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java index 7cb2bf4425..2b7a5afbeb 100644 --- a/L2J_Mobius_Essence_6.2_Vanguard/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java +++ b/L2J_Mobius_Essence_6.2_Vanguard/java/org/l2jmobius/gameserver/network/serverpackets/BuyListSeed.java @@ -58,7 +58,7 @@ public class BuyListSeed implements IClientOutgoingPacket packet.writeH(_list.size()); // list length for (SeedProduction s : _list) { - packet.writeC(0); // mask item 0 to print minimal item information + packet.writeC(0); // mask item 0 to print minimum item information packet.writeD(s.getId()); // ObjectId packet.writeD(s.getId()); // ItemId packet.writeC(0xFF); // T1