2
0
Эх сурвалжийг харах

Several config descriptions update, thanks fbiagent.
Also removed non-used option PacketLifeTime.

_DS_ 16 жил өмнө
parent
commit
b6243aab61

+ 6 - 6
L2_GameServer/java/config/Character.properties

@@ -54,8 +54,7 @@ HpRegenMultiplier = 100
 MpRegenMultiplier = 100
 CpRegenMultiplier = 100
 
-# (THIS SETTING'S DESCRIPTION REQUIRES FURTHER INFORMATION)
-# Use tiredness (instead of combat points)
+# Decrease CP by 10 every normal hit a player do
 # Default: False
 AltGameTiredness = False
 
@@ -443,13 +442,14 @@ AltClanMembersForWar = 15
 # ---------------------------------------------------------------------------
 # Party
 # ---------------------------------------------------------------------------
-# (THIS SETTING'S DESCRIPTION REQUIRES FURTHER INFORMATION)
-# This option controls the party range for the L2Attackable.
+# CONFUSING(nothing todo with party) -> When you made damage to a mob
+# and are inside this range, you will be considered as player to reward.
+# Checks for party range to mob to calculate rewards(exp, items).
 # Default: 1600
 AltPartyRange = 1600
 
-# (THIS SETTING'S DESCRIPTION REQUIRES FURTHER INFORMATION)
-# This option controls the party range for an L2Party.
+# 1. Used for adena distribution in party
+# 2. Used to handle random and by turn party loot
 # Default: 1400
 AltPartyRange2 = 1400
 

+ 0 - 4
L2_GameServer/java/config/General.properties

@@ -118,10 +118,6 @@ GeneralThreadCoreSize = 4
 # Default: 6
 AiMaxThread = 6
 
-# Packet LifeTime in milliseconds. Disabled = 0.
-# Default: 0
-PacketLifeTime = 0
-
 # Dead Lock Detector (a separate thread for detecting deadlocks).
 # For improved crash logs and automatic restart in deadlock case if enabled.
 # Check interval is in seconds.

+ 0 - 2
L2_GameServer/java/net/sf/l2j/Config.java

@@ -360,7 +360,6 @@ public final class Config
 	public static int IO_PACKET_THREAD_CORE_SIZE;
 	public static int GENERAL_THREAD_CORE_SIZE;
 	public static int AI_MAX_THREAD;
-	public static int PACKET_LIFETIME;
 	public static boolean DEADLOCK_DETECTOR;
 	public static int DEADLOCK_CHECK_INTERVAL;
 	public static boolean RESTART_ON_DEADLOCK;
@@ -1398,7 +1397,6 @@ public final class Config
 					GENERAL_PACKET_THREAD_CORE_SIZE = Integer.parseInt(General.getProperty("GeneralPacketThreadCoreSize", "4"));
 					GENERAL_THREAD_CORE_SIZE = Integer.parseInt(General.getProperty("GeneralThreadCoreSize", "4"));
 					AI_MAX_THREAD = Integer.parseInt(General.getProperty("AiMaxThread", "6"));
-					PACKET_LIFETIME = Integer.parseInt(General.getProperty("PacketLifeTime", "0"));
 					DEADLOCK_DETECTOR = Boolean.parseBoolean(General.getProperty("DeadLockDetector", "False"));
 					DEADLOCK_CHECK_INTERVAL = Integer.parseInt(General.getProperty("DeadLockCheckInterval", "20"));
 					RESTART_ON_DEADLOCK = Boolean.parseBoolean(General.getProperty("RestartOnDeadlock", "False"));