System panel log for maximum connected count.
This commit is contained in:
@@ -24,6 +24,7 @@ import java.util.TimerTask;
|
|||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.jar.Attributes;
|
import java.util.jar.Attributes;
|
||||||
import java.util.jar.JarFile;
|
import java.util.jar.JarFile;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.swing.JLabel;
|
import javax.swing.JLabel;
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
@@ -39,6 +40,8 @@ import org.l2jmobius.gameserver.util.Locator;
|
|||||||
*/
|
*/
|
||||||
public class SystemPanel extends JPanel
|
public class SystemPanel extends JPanel
|
||||||
{
|
{
|
||||||
|
private static final Logger LOGGER = Logger.getLogger(SystemPanel.class.getName());
|
||||||
|
|
||||||
private static final long START_TIME = System.currentTimeMillis();
|
private static final long START_TIME = System.currentTimeMillis();
|
||||||
|
|
||||||
public SystemPanel()
|
public SystemPanel()
|
||||||
@@ -125,6 +128,10 @@ public class SystemPanel extends JPanel
|
|||||||
if (World.MAX_CONNECTED_COUNT < playerCount)
|
if (World.MAX_CONNECTED_COUNT < playerCount)
|
||||||
{
|
{
|
||||||
World.MAX_CONNECTED_COUNT = playerCount;
|
World.MAX_CONNECTED_COUNT = playerCount;
|
||||||
|
if (playerCount > 1)
|
||||||
|
{
|
||||||
|
LOGGER.info("New maximum connected count of " + playerCount + "!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
lblConnected.setText("Connected: " + playerCount);
|
lblConnected.setText("Connected: " + playerCount);
|
||||||
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
||||||
|
@@ -24,6 +24,7 @@ import java.util.TimerTask;
|
|||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.jar.Attributes;
|
import java.util.jar.Attributes;
|
||||||
import java.util.jar.JarFile;
|
import java.util.jar.JarFile;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.swing.JLabel;
|
import javax.swing.JLabel;
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
@@ -39,6 +40,8 @@ import org.l2jmobius.gameserver.util.Locator;
|
|||||||
*/
|
*/
|
||||||
public class SystemPanel extends JPanel
|
public class SystemPanel extends JPanel
|
||||||
{
|
{
|
||||||
|
private static final Logger LOGGER = Logger.getLogger(SystemPanel.class.getName());
|
||||||
|
|
||||||
private static final long START_TIME = System.currentTimeMillis();
|
private static final long START_TIME = System.currentTimeMillis();
|
||||||
|
|
||||||
public SystemPanel()
|
public SystemPanel()
|
||||||
@@ -125,6 +128,10 @@ public class SystemPanel extends JPanel
|
|||||||
if (World.MAX_CONNECTED_COUNT < playerCount)
|
if (World.MAX_CONNECTED_COUNT < playerCount)
|
||||||
{
|
{
|
||||||
World.MAX_CONNECTED_COUNT = playerCount;
|
World.MAX_CONNECTED_COUNT = playerCount;
|
||||||
|
if (playerCount > 1)
|
||||||
|
{
|
||||||
|
LOGGER.info("New maximum connected count of " + playerCount + "!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
lblConnected.setText("Connected: " + playerCount);
|
lblConnected.setText("Connected: " + playerCount);
|
||||||
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
||||||
|
@@ -24,6 +24,7 @@ import java.util.TimerTask;
|
|||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.jar.Attributes;
|
import java.util.jar.Attributes;
|
||||||
import java.util.jar.JarFile;
|
import java.util.jar.JarFile;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.swing.JLabel;
|
import javax.swing.JLabel;
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
@@ -39,6 +40,8 @@ import org.l2jmobius.gameserver.util.Locator;
|
|||||||
*/
|
*/
|
||||||
public class SystemPanel extends JPanel
|
public class SystemPanel extends JPanel
|
||||||
{
|
{
|
||||||
|
private static final Logger LOGGER = Logger.getLogger(SystemPanel.class.getName());
|
||||||
|
|
||||||
private static final long START_TIME = System.currentTimeMillis();
|
private static final long START_TIME = System.currentTimeMillis();
|
||||||
|
|
||||||
public SystemPanel()
|
public SystemPanel()
|
||||||
@@ -125,6 +128,10 @@ public class SystemPanel extends JPanel
|
|||||||
if (World.MAX_CONNECTED_COUNT < playerCount)
|
if (World.MAX_CONNECTED_COUNT < playerCount)
|
||||||
{
|
{
|
||||||
World.MAX_CONNECTED_COUNT = playerCount;
|
World.MAX_CONNECTED_COUNT = playerCount;
|
||||||
|
if (playerCount > 1)
|
||||||
|
{
|
||||||
|
LOGGER.info("New maximum connected count of " + playerCount + "!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
lblConnected.setText("Connected: " + playerCount);
|
lblConnected.setText("Connected: " + playerCount);
|
||||||
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
||||||
|
@@ -24,6 +24,7 @@ import java.util.TimerTask;
|
|||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.jar.Attributes;
|
import java.util.jar.Attributes;
|
||||||
import java.util.jar.JarFile;
|
import java.util.jar.JarFile;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.swing.JLabel;
|
import javax.swing.JLabel;
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
@@ -39,6 +40,8 @@ import org.l2jmobius.gameserver.util.Locator;
|
|||||||
*/
|
*/
|
||||||
public class SystemPanel extends JPanel
|
public class SystemPanel extends JPanel
|
||||||
{
|
{
|
||||||
|
private static final Logger LOGGER = Logger.getLogger(SystemPanel.class.getName());
|
||||||
|
|
||||||
private static final long START_TIME = System.currentTimeMillis();
|
private static final long START_TIME = System.currentTimeMillis();
|
||||||
|
|
||||||
public SystemPanel()
|
public SystemPanel()
|
||||||
@@ -125,6 +128,10 @@ public class SystemPanel extends JPanel
|
|||||||
if (World.MAX_CONNECTED_COUNT < playerCount)
|
if (World.MAX_CONNECTED_COUNT < playerCount)
|
||||||
{
|
{
|
||||||
World.MAX_CONNECTED_COUNT = playerCount;
|
World.MAX_CONNECTED_COUNT = playerCount;
|
||||||
|
if (playerCount > 1)
|
||||||
|
{
|
||||||
|
LOGGER.info("New maximum connected count of " + playerCount + "!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
lblConnected.setText("Connected: " + playerCount);
|
lblConnected.setText("Connected: " + playerCount);
|
||||||
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
||||||
|
@@ -24,6 +24,7 @@ import java.util.TimerTask;
|
|||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.jar.Attributes;
|
import java.util.jar.Attributes;
|
||||||
import java.util.jar.JarFile;
|
import java.util.jar.JarFile;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.swing.JLabel;
|
import javax.swing.JLabel;
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
@@ -39,6 +40,8 @@ import org.l2jmobius.gameserver.util.Locator;
|
|||||||
*/
|
*/
|
||||||
public class SystemPanel extends JPanel
|
public class SystemPanel extends JPanel
|
||||||
{
|
{
|
||||||
|
private static final Logger LOGGER = Logger.getLogger(SystemPanel.class.getName());
|
||||||
|
|
||||||
private static final long START_TIME = System.currentTimeMillis();
|
private static final long START_TIME = System.currentTimeMillis();
|
||||||
|
|
||||||
public SystemPanel()
|
public SystemPanel()
|
||||||
@@ -125,6 +128,10 @@ public class SystemPanel extends JPanel
|
|||||||
if (World.MAX_CONNECTED_COUNT < playerCount)
|
if (World.MAX_CONNECTED_COUNT < playerCount)
|
||||||
{
|
{
|
||||||
World.MAX_CONNECTED_COUNT = playerCount;
|
World.MAX_CONNECTED_COUNT = playerCount;
|
||||||
|
if (playerCount > 1)
|
||||||
|
{
|
||||||
|
LOGGER.info("New maximum connected count of " + playerCount + "!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
lblConnected.setText("Connected: " + playerCount);
|
lblConnected.setText("Connected: " + playerCount);
|
||||||
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
||||||
|
@@ -24,6 +24,7 @@ import java.util.TimerTask;
|
|||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.jar.Attributes;
|
import java.util.jar.Attributes;
|
||||||
import java.util.jar.JarFile;
|
import java.util.jar.JarFile;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.swing.JLabel;
|
import javax.swing.JLabel;
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
@@ -39,6 +40,8 @@ import org.l2jmobius.gameserver.util.Locator;
|
|||||||
*/
|
*/
|
||||||
public class SystemPanel extends JPanel
|
public class SystemPanel extends JPanel
|
||||||
{
|
{
|
||||||
|
private static final Logger LOGGER = Logger.getLogger(SystemPanel.class.getName());
|
||||||
|
|
||||||
private static final long START_TIME = System.currentTimeMillis();
|
private static final long START_TIME = System.currentTimeMillis();
|
||||||
|
|
||||||
public SystemPanel()
|
public SystemPanel()
|
||||||
@@ -125,6 +128,10 @@ public class SystemPanel extends JPanel
|
|||||||
if (World.MAX_CONNECTED_COUNT < playerCount)
|
if (World.MAX_CONNECTED_COUNT < playerCount)
|
||||||
{
|
{
|
||||||
World.MAX_CONNECTED_COUNT = playerCount;
|
World.MAX_CONNECTED_COUNT = playerCount;
|
||||||
|
if (playerCount > 1)
|
||||||
|
{
|
||||||
|
LOGGER.info("New maximum connected count of " + playerCount + "!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
lblConnected.setText("Connected: " + playerCount);
|
lblConnected.setText("Connected: " + playerCount);
|
||||||
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
||||||
|
@@ -24,6 +24,7 @@ import java.util.TimerTask;
|
|||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.jar.Attributes;
|
import java.util.jar.Attributes;
|
||||||
import java.util.jar.JarFile;
|
import java.util.jar.JarFile;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.swing.JLabel;
|
import javax.swing.JLabel;
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
@@ -39,6 +40,8 @@ import org.l2jmobius.gameserver.util.Locator;
|
|||||||
*/
|
*/
|
||||||
public class SystemPanel extends JPanel
|
public class SystemPanel extends JPanel
|
||||||
{
|
{
|
||||||
|
private static final Logger LOGGER = Logger.getLogger(SystemPanel.class.getName());
|
||||||
|
|
||||||
private static final long START_TIME = System.currentTimeMillis();
|
private static final long START_TIME = System.currentTimeMillis();
|
||||||
|
|
||||||
public SystemPanel()
|
public SystemPanel()
|
||||||
@@ -125,6 +128,10 @@ public class SystemPanel extends JPanel
|
|||||||
if (World.MAX_CONNECTED_COUNT < playerCount)
|
if (World.MAX_CONNECTED_COUNT < playerCount)
|
||||||
{
|
{
|
||||||
World.MAX_CONNECTED_COUNT = playerCount;
|
World.MAX_CONNECTED_COUNT = playerCount;
|
||||||
|
if (playerCount > 1)
|
||||||
|
{
|
||||||
|
LOGGER.info("New maximum connected count of " + playerCount + "!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
lblConnected.setText("Connected: " + playerCount);
|
lblConnected.setText("Connected: " + playerCount);
|
||||||
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
||||||
|
@@ -24,6 +24,7 @@ import java.util.TimerTask;
|
|||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.jar.Attributes;
|
import java.util.jar.Attributes;
|
||||||
import java.util.jar.JarFile;
|
import java.util.jar.JarFile;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.swing.JLabel;
|
import javax.swing.JLabel;
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
@@ -39,6 +40,8 @@ import org.l2jmobius.gameserver.util.Locator;
|
|||||||
*/
|
*/
|
||||||
public class SystemPanel extends JPanel
|
public class SystemPanel extends JPanel
|
||||||
{
|
{
|
||||||
|
private static final Logger LOGGER = Logger.getLogger(SystemPanel.class.getName());
|
||||||
|
|
||||||
private static final long START_TIME = System.currentTimeMillis();
|
private static final long START_TIME = System.currentTimeMillis();
|
||||||
|
|
||||||
public SystemPanel()
|
public SystemPanel()
|
||||||
@@ -125,6 +128,10 @@ public class SystemPanel extends JPanel
|
|||||||
if (World.MAX_CONNECTED_COUNT < playerCount)
|
if (World.MAX_CONNECTED_COUNT < playerCount)
|
||||||
{
|
{
|
||||||
World.MAX_CONNECTED_COUNT = playerCount;
|
World.MAX_CONNECTED_COUNT = playerCount;
|
||||||
|
if (playerCount > 1)
|
||||||
|
{
|
||||||
|
LOGGER.info("New maximum connected count of " + playerCount + "!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
lblConnected.setText("Connected: " + playerCount);
|
lblConnected.setText("Connected: " + playerCount);
|
||||||
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
||||||
|
@@ -24,6 +24,7 @@ import java.util.TimerTask;
|
|||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.jar.Attributes;
|
import java.util.jar.Attributes;
|
||||||
import java.util.jar.JarFile;
|
import java.util.jar.JarFile;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.swing.JLabel;
|
import javax.swing.JLabel;
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
@@ -39,6 +40,8 @@ import org.l2jmobius.gameserver.util.Locator;
|
|||||||
*/
|
*/
|
||||||
public class SystemPanel extends JPanel
|
public class SystemPanel extends JPanel
|
||||||
{
|
{
|
||||||
|
private static final Logger LOGGER = Logger.getLogger(SystemPanel.class.getName());
|
||||||
|
|
||||||
private static final long START_TIME = System.currentTimeMillis();
|
private static final long START_TIME = System.currentTimeMillis();
|
||||||
|
|
||||||
public SystemPanel()
|
public SystemPanel()
|
||||||
@@ -125,6 +128,10 @@ public class SystemPanel extends JPanel
|
|||||||
if (World.MAX_CONNECTED_COUNT < playerCount)
|
if (World.MAX_CONNECTED_COUNT < playerCount)
|
||||||
{
|
{
|
||||||
World.MAX_CONNECTED_COUNT = playerCount;
|
World.MAX_CONNECTED_COUNT = playerCount;
|
||||||
|
if (playerCount > 1)
|
||||||
|
{
|
||||||
|
LOGGER.info("New maximum connected count of " + playerCount + "!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
lblConnected.setText("Connected: " + playerCount);
|
lblConnected.setText("Connected: " + playerCount);
|
||||||
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
||||||
|
@@ -25,6 +25,7 @@ import java.util.TimerTask;
|
|||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.jar.Attributes;
|
import java.util.jar.Attributes;
|
||||||
import java.util.jar.JarFile;
|
import java.util.jar.JarFile;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.swing.JLabel;
|
import javax.swing.JLabel;
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
@@ -40,6 +41,8 @@ import org.l2jmobius.util.Locator;
|
|||||||
*/
|
*/
|
||||||
public class SystemPanel extends JPanel
|
public class SystemPanel extends JPanel
|
||||||
{
|
{
|
||||||
|
private static final Logger LOGGER = Logger.getLogger(SystemPanel.class.getName());
|
||||||
|
|
||||||
private static final long START_TIME = System.currentTimeMillis();
|
private static final long START_TIME = System.currentTimeMillis();
|
||||||
|
|
||||||
public SystemPanel()
|
public SystemPanel()
|
||||||
@@ -120,6 +123,10 @@ public class SystemPanel extends JPanel
|
|||||||
if (World.MAX_CONNECTED_COUNT < playerCount)
|
if (World.MAX_CONNECTED_COUNT < playerCount)
|
||||||
{
|
{
|
||||||
World.MAX_CONNECTED_COUNT = playerCount;
|
World.MAX_CONNECTED_COUNT = playerCount;
|
||||||
|
if (playerCount > 1)
|
||||||
|
{
|
||||||
|
LOGGER.info("New maximum connected count of " + playerCount + "!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
lblConnected.setText("Connected: " + playerCount);
|
lblConnected.setText("Connected: " + playerCount);
|
||||||
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
||||||
|
@@ -24,6 +24,7 @@ import java.util.TimerTask;
|
|||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.jar.Attributes;
|
import java.util.jar.Attributes;
|
||||||
import java.util.jar.JarFile;
|
import java.util.jar.JarFile;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.swing.JLabel;
|
import javax.swing.JLabel;
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
@@ -39,6 +40,8 @@ import org.l2jmobius.gameserver.util.Locator;
|
|||||||
*/
|
*/
|
||||||
public class SystemPanel extends JPanel
|
public class SystemPanel extends JPanel
|
||||||
{
|
{
|
||||||
|
private static final Logger LOGGER = Logger.getLogger(SystemPanel.class.getName());
|
||||||
|
|
||||||
private static final long START_TIME = System.currentTimeMillis();
|
private static final long START_TIME = System.currentTimeMillis();
|
||||||
|
|
||||||
public SystemPanel()
|
public SystemPanel()
|
||||||
@@ -132,6 +135,10 @@ public class SystemPanel extends JPanel
|
|||||||
if (World.MAX_CONNECTED_COUNT < playerCount)
|
if (World.MAX_CONNECTED_COUNT < playerCount)
|
||||||
{
|
{
|
||||||
World.MAX_CONNECTED_COUNT = playerCount;
|
World.MAX_CONNECTED_COUNT = playerCount;
|
||||||
|
if (playerCount > 1)
|
||||||
|
{
|
||||||
|
LOGGER.info("New maximum connected count of " + playerCount + "!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
lblConnected.setText("Connected: " + playerCount);
|
lblConnected.setText("Connected: " + playerCount);
|
||||||
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
||||||
|
@@ -24,6 +24,7 @@ import java.util.TimerTask;
|
|||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.jar.Attributes;
|
import java.util.jar.Attributes;
|
||||||
import java.util.jar.JarFile;
|
import java.util.jar.JarFile;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.swing.JLabel;
|
import javax.swing.JLabel;
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
@@ -39,6 +40,8 @@ import org.l2jmobius.gameserver.util.Locator;
|
|||||||
*/
|
*/
|
||||||
public class SystemPanel extends JPanel
|
public class SystemPanel extends JPanel
|
||||||
{
|
{
|
||||||
|
private static final Logger LOGGER = Logger.getLogger(SystemPanel.class.getName());
|
||||||
|
|
||||||
private static final long START_TIME = System.currentTimeMillis();
|
private static final long START_TIME = System.currentTimeMillis();
|
||||||
|
|
||||||
public SystemPanel()
|
public SystemPanel()
|
||||||
@@ -132,6 +135,10 @@ public class SystemPanel extends JPanel
|
|||||||
if (World.MAX_CONNECTED_COUNT < playerCount)
|
if (World.MAX_CONNECTED_COUNT < playerCount)
|
||||||
{
|
{
|
||||||
World.MAX_CONNECTED_COUNT = playerCount;
|
World.MAX_CONNECTED_COUNT = playerCount;
|
||||||
|
if (playerCount > 1)
|
||||||
|
{
|
||||||
|
LOGGER.info("New maximum connected count of " + playerCount + "!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
lblConnected.setText("Connected: " + playerCount);
|
lblConnected.setText("Connected: " + playerCount);
|
||||||
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
||||||
|
@@ -24,6 +24,7 @@ import java.util.TimerTask;
|
|||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.jar.Attributes;
|
import java.util.jar.Attributes;
|
||||||
import java.util.jar.JarFile;
|
import java.util.jar.JarFile;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.swing.JLabel;
|
import javax.swing.JLabel;
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
@@ -39,6 +40,8 @@ import org.l2jmobius.gameserver.util.Locator;
|
|||||||
*/
|
*/
|
||||||
public class SystemPanel extends JPanel
|
public class SystemPanel extends JPanel
|
||||||
{
|
{
|
||||||
|
private static final Logger LOGGER = Logger.getLogger(SystemPanel.class.getName());
|
||||||
|
|
||||||
private static final long START_TIME = System.currentTimeMillis();
|
private static final long START_TIME = System.currentTimeMillis();
|
||||||
|
|
||||||
public SystemPanel()
|
public SystemPanel()
|
||||||
@@ -125,6 +128,10 @@ public class SystemPanel extends JPanel
|
|||||||
if (World.MAX_CONNECTED_COUNT < playerCount)
|
if (World.MAX_CONNECTED_COUNT < playerCount)
|
||||||
{
|
{
|
||||||
World.MAX_CONNECTED_COUNT = playerCount;
|
World.MAX_CONNECTED_COUNT = playerCount;
|
||||||
|
if (playerCount > 1)
|
||||||
|
{
|
||||||
|
LOGGER.info("New maximum connected count of " + playerCount + "!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
lblConnected.setText("Connected: " + playerCount);
|
lblConnected.setText("Connected: " + playerCount);
|
||||||
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
||||||
|
@@ -24,6 +24,7 @@ import java.util.TimerTask;
|
|||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.jar.Attributes;
|
import java.util.jar.Attributes;
|
||||||
import java.util.jar.JarFile;
|
import java.util.jar.JarFile;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.swing.JLabel;
|
import javax.swing.JLabel;
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
@@ -39,6 +40,8 @@ import org.l2jmobius.gameserver.util.Locator;
|
|||||||
*/
|
*/
|
||||||
public class SystemPanel extends JPanel
|
public class SystemPanel extends JPanel
|
||||||
{
|
{
|
||||||
|
private static final Logger LOGGER = Logger.getLogger(SystemPanel.class.getName());
|
||||||
|
|
||||||
private static final long START_TIME = System.currentTimeMillis();
|
private static final long START_TIME = System.currentTimeMillis();
|
||||||
|
|
||||||
public SystemPanel()
|
public SystemPanel()
|
||||||
@@ -125,6 +128,10 @@ public class SystemPanel extends JPanel
|
|||||||
if (World.MAX_CONNECTED_COUNT < playerCount)
|
if (World.MAX_CONNECTED_COUNT < playerCount)
|
||||||
{
|
{
|
||||||
World.MAX_CONNECTED_COUNT = playerCount;
|
World.MAX_CONNECTED_COUNT = playerCount;
|
||||||
|
if (playerCount > 1)
|
||||||
|
{
|
||||||
|
LOGGER.info("New maximum connected count of " + playerCount + "!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
lblConnected.setText("Connected: " + playerCount);
|
lblConnected.setText("Connected: " + playerCount);
|
||||||
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
||||||
|
@@ -24,6 +24,7 @@ import java.util.TimerTask;
|
|||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.jar.Attributes;
|
import java.util.jar.Attributes;
|
||||||
import java.util.jar.JarFile;
|
import java.util.jar.JarFile;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.swing.JLabel;
|
import javax.swing.JLabel;
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
@@ -39,6 +40,8 @@ import org.l2jmobius.gameserver.util.Locator;
|
|||||||
*/
|
*/
|
||||||
public class SystemPanel extends JPanel
|
public class SystemPanel extends JPanel
|
||||||
{
|
{
|
||||||
|
private static final Logger LOGGER = Logger.getLogger(SystemPanel.class.getName());
|
||||||
|
|
||||||
private static final long START_TIME = System.currentTimeMillis();
|
private static final long START_TIME = System.currentTimeMillis();
|
||||||
|
|
||||||
public SystemPanel()
|
public SystemPanel()
|
||||||
@@ -125,6 +128,10 @@ public class SystemPanel extends JPanel
|
|||||||
if (World.MAX_CONNECTED_COUNT < playerCount)
|
if (World.MAX_CONNECTED_COUNT < playerCount)
|
||||||
{
|
{
|
||||||
World.MAX_CONNECTED_COUNT = playerCount;
|
World.MAX_CONNECTED_COUNT = playerCount;
|
||||||
|
if (playerCount > 1)
|
||||||
|
{
|
||||||
|
LOGGER.info("New maximum connected count of " + playerCount + "!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
lblConnected.setText("Connected: " + playerCount);
|
lblConnected.setText("Connected: " + playerCount);
|
||||||
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
||||||
|
@@ -24,6 +24,7 @@ import java.util.TimerTask;
|
|||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.jar.Attributes;
|
import java.util.jar.Attributes;
|
||||||
import java.util.jar.JarFile;
|
import java.util.jar.JarFile;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.swing.JLabel;
|
import javax.swing.JLabel;
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
@@ -39,6 +40,8 @@ import org.l2jmobius.gameserver.util.Locator;
|
|||||||
*/
|
*/
|
||||||
public class SystemPanel extends JPanel
|
public class SystemPanel extends JPanel
|
||||||
{
|
{
|
||||||
|
private static final Logger LOGGER = Logger.getLogger(SystemPanel.class.getName());
|
||||||
|
|
||||||
private static final long START_TIME = System.currentTimeMillis();
|
private static final long START_TIME = System.currentTimeMillis();
|
||||||
|
|
||||||
public SystemPanel()
|
public SystemPanel()
|
||||||
@@ -125,6 +128,10 @@ public class SystemPanel extends JPanel
|
|||||||
if (World.MAX_CONNECTED_COUNT < playerCount)
|
if (World.MAX_CONNECTED_COUNT < playerCount)
|
||||||
{
|
{
|
||||||
World.MAX_CONNECTED_COUNT = playerCount;
|
World.MAX_CONNECTED_COUNT = playerCount;
|
||||||
|
if (playerCount > 1)
|
||||||
|
{
|
||||||
|
LOGGER.info("New maximum connected count of " + playerCount + "!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
lblConnected.setText("Connected: " + playerCount);
|
lblConnected.setText("Connected: " + playerCount);
|
||||||
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
||||||
|
@@ -24,6 +24,7 @@ import java.util.TimerTask;
|
|||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.jar.Attributes;
|
import java.util.jar.Attributes;
|
||||||
import java.util.jar.JarFile;
|
import java.util.jar.JarFile;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.swing.JLabel;
|
import javax.swing.JLabel;
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
@@ -39,6 +40,8 @@ import org.l2jmobius.gameserver.util.Locator;
|
|||||||
*/
|
*/
|
||||||
public class SystemPanel extends JPanel
|
public class SystemPanel extends JPanel
|
||||||
{
|
{
|
||||||
|
private static final Logger LOGGER = Logger.getLogger(SystemPanel.class.getName());
|
||||||
|
|
||||||
private static final long START_TIME = System.currentTimeMillis();
|
private static final long START_TIME = System.currentTimeMillis();
|
||||||
|
|
||||||
public SystemPanel()
|
public SystemPanel()
|
||||||
@@ -125,6 +128,10 @@ public class SystemPanel extends JPanel
|
|||||||
if (World.MAX_CONNECTED_COUNT < playerCount)
|
if (World.MAX_CONNECTED_COUNT < playerCount)
|
||||||
{
|
{
|
||||||
World.MAX_CONNECTED_COUNT = playerCount;
|
World.MAX_CONNECTED_COUNT = playerCount;
|
||||||
|
if (playerCount > 1)
|
||||||
|
{
|
||||||
|
LOGGER.info("New maximum connected count of " + playerCount + "!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
lblConnected.setText("Connected: " + playerCount);
|
lblConnected.setText("Connected: " + playerCount);
|
||||||
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
||||||
|
@@ -24,6 +24,7 @@ import java.util.TimerTask;
|
|||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.jar.Attributes;
|
import java.util.jar.Attributes;
|
||||||
import java.util.jar.JarFile;
|
import java.util.jar.JarFile;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.swing.JLabel;
|
import javax.swing.JLabel;
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
@@ -39,6 +40,8 @@ import org.l2jmobius.gameserver.util.Locator;
|
|||||||
*/
|
*/
|
||||||
public class SystemPanel extends JPanel
|
public class SystemPanel extends JPanel
|
||||||
{
|
{
|
||||||
|
private static final Logger LOGGER = Logger.getLogger(SystemPanel.class.getName());
|
||||||
|
|
||||||
private static final long START_TIME = System.currentTimeMillis();
|
private static final long START_TIME = System.currentTimeMillis();
|
||||||
|
|
||||||
public SystemPanel()
|
public SystemPanel()
|
||||||
@@ -125,6 +128,10 @@ public class SystemPanel extends JPanel
|
|||||||
if (World.MAX_CONNECTED_COUNT < playerCount)
|
if (World.MAX_CONNECTED_COUNT < playerCount)
|
||||||
{
|
{
|
||||||
World.MAX_CONNECTED_COUNT = playerCount;
|
World.MAX_CONNECTED_COUNT = playerCount;
|
||||||
|
if (playerCount > 1)
|
||||||
|
{
|
||||||
|
LOGGER.info("New maximum connected count of " + playerCount + "!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
lblConnected.setText("Connected: " + playerCount);
|
lblConnected.setText("Connected: " + playerCount);
|
||||||
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
||||||
|
@@ -24,6 +24,7 @@ import java.util.TimerTask;
|
|||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.jar.Attributes;
|
import java.util.jar.Attributes;
|
||||||
import java.util.jar.JarFile;
|
import java.util.jar.JarFile;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.swing.JLabel;
|
import javax.swing.JLabel;
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
@@ -39,6 +40,8 @@ import org.l2jmobius.gameserver.util.Locator;
|
|||||||
*/
|
*/
|
||||||
public class SystemPanel extends JPanel
|
public class SystemPanel extends JPanel
|
||||||
{
|
{
|
||||||
|
private static final Logger LOGGER = Logger.getLogger(SystemPanel.class.getName());
|
||||||
|
|
||||||
private static final long START_TIME = System.currentTimeMillis();
|
private static final long START_TIME = System.currentTimeMillis();
|
||||||
|
|
||||||
public SystemPanel()
|
public SystemPanel()
|
||||||
@@ -125,6 +128,10 @@ public class SystemPanel extends JPanel
|
|||||||
if (World.MAX_CONNECTED_COUNT < playerCount)
|
if (World.MAX_CONNECTED_COUNT < playerCount)
|
||||||
{
|
{
|
||||||
World.MAX_CONNECTED_COUNT = playerCount;
|
World.MAX_CONNECTED_COUNT = playerCount;
|
||||||
|
if (playerCount > 1)
|
||||||
|
{
|
||||||
|
LOGGER.info("New maximum connected count of " + playerCount + "!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
lblConnected.setText("Connected: " + playerCount);
|
lblConnected.setText("Connected: " + playerCount);
|
||||||
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
||||||
|
@@ -24,6 +24,7 @@ import java.util.TimerTask;
|
|||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.jar.Attributes;
|
import java.util.jar.Attributes;
|
||||||
import java.util.jar.JarFile;
|
import java.util.jar.JarFile;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.swing.JLabel;
|
import javax.swing.JLabel;
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
@@ -39,6 +40,8 @@ import org.l2jmobius.gameserver.util.Locator;
|
|||||||
*/
|
*/
|
||||||
public class SystemPanel extends JPanel
|
public class SystemPanel extends JPanel
|
||||||
{
|
{
|
||||||
|
private static final Logger LOGGER = Logger.getLogger(SystemPanel.class.getName());
|
||||||
|
|
||||||
private static final long START_TIME = System.currentTimeMillis();
|
private static final long START_TIME = System.currentTimeMillis();
|
||||||
|
|
||||||
public SystemPanel()
|
public SystemPanel()
|
||||||
@@ -125,6 +128,10 @@ public class SystemPanel extends JPanel
|
|||||||
if (World.MAX_CONNECTED_COUNT < playerCount)
|
if (World.MAX_CONNECTED_COUNT < playerCount)
|
||||||
{
|
{
|
||||||
World.MAX_CONNECTED_COUNT = playerCount;
|
World.MAX_CONNECTED_COUNT = playerCount;
|
||||||
|
if (playerCount > 1)
|
||||||
|
{
|
||||||
|
LOGGER.info("New maximum connected count of " + playerCount + "!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
lblConnected.setText("Connected: " + playerCount);
|
lblConnected.setText("Connected: " + playerCount);
|
||||||
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
||||||
|
@@ -24,6 +24,7 @@ import java.util.TimerTask;
|
|||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.jar.Attributes;
|
import java.util.jar.Attributes;
|
||||||
import java.util.jar.JarFile;
|
import java.util.jar.JarFile;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.swing.JLabel;
|
import javax.swing.JLabel;
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
@@ -39,6 +40,8 @@ import org.l2jmobius.gameserver.util.Locator;
|
|||||||
*/
|
*/
|
||||||
public class SystemPanel extends JPanel
|
public class SystemPanel extends JPanel
|
||||||
{
|
{
|
||||||
|
private static final Logger LOGGER = Logger.getLogger(SystemPanel.class.getName());
|
||||||
|
|
||||||
private static final long START_TIME = System.currentTimeMillis();
|
private static final long START_TIME = System.currentTimeMillis();
|
||||||
|
|
||||||
public SystemPanel()
|
public SystemPanel()
|
||||||
@@ -125,6 +128,10 @@ public class SystemPanel extends JPanel
|
|||||||
if (World.MAX_CONNECTED_COUNT < playerCount)
|
if (World.MAX_CONNECTED_COUNT < playerCount)
|
||||||
{
|
{
|
||||||
World.MAX_CONNECTED_COUNT = playerCount;
|
World.MAX_CONNECTED_COUNT = playerCount;
|
||||||
|
if (playerCount > 1)
|
||||||
|
{
|
||||||
|
LOGGER.info("New maximum connected count of " + playerCount + "!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
lblConnected.setText("Connected: " + playerCount);
|
lblConnected.setText("Connected: " + playerCount);
|
||||||
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
||||||
|
@@ -24,6 +24,7 @@ import java.util.TimerTask;
|
|||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.jar.Attributes;
|
import java.util.jar.Attributes;
|
||||||
import java.util.jar.JarFile;
|
import java.util.jar.JarFile;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.swing.JLabel;
|
import javax.swing.JLabel;
|
||||||
import javax.swing.JPanel;
|
import javax.swing.JPanel;
|
||||||
@@ -39,6 +40,8 @@ import org.l2jmobius.gameserver.util.Locator;
|
|||||||
*/
|
*/
|
||||||
public class SystemPanel extends JPanel
|
public class SystemPanel extends JPanel
|
||||||
{
|
{
|
||||||
|
private static final Logger LOGGER = Logger.getLogger(SystemPanel.class.getName());
|
||||||
|
|
||||||
private static final long START_TIME = System.currentTimeMillis();
|
private static final long START_TIME = System.currentTimeMillis();
|
||||||
|
|
||||||
public SystemPanel()
|
public SystemPanel()
|
||||||
@@ -125,6 +128,10 @@ public class SystemPanel extends JPanel
|
|||||||
if (World.MAX_CONNECTED_COUNT < playerCount)
|
if (World.MAX_CONNECTED_COUNT < playerCount)
|
||||||
{
|
{
|
||||||
World.MAX_CONNECTED_COUNT = playerCount;
|
World.MAX_CONNECTED_COUNT = playerCount;
|
||||||
|
if (playerCount > 1)
|
||||||
|
{
|
||||||
|
LOGGER.info("New maximum connected count of " + playerCount + "!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
lblConnected.setText("Connected: " + playerCount);
|
lblConnected.setText("Connected: " + playerCount);
|
||||||
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
lblMaxConnected.setText("Max connected: " + World.MAX_CONNECTED_COUNT);
|
||||||
|
Reference in New Issue
Block a user