Jump to content

Recommended Posts

Posted

Credits iRat

 

Read this before please

I was chating with a friend in MSN and he requested this. In the beggining i told him it was a bad idea and useless but then i thought better and i changed opinion.

 

Full Description

You know all(specially if you are member in Maxcheaters lol :P) that there is Maintenance mode in forums.So that's I did, a maintenance mode in Lineage.

Admin can start the maintenance by pressing //start_maintenance. A new panel opens and has opinion to start maintenance , clear maintenance messages and add a new maintenance.

He first adds a new maintenance method somehow like that:

2hz20rn.png

Then after he adds as many messages he wants he press Main Menu to come to the starting page. And then he press Do Maintenance and players are informed.

105qrte.png

After 30 seconds all players are teleporting somewhere(default Jail), they informed with the reasons of maintenance and there they can't attack,etc , using unstuck ,blabla till maintenance mode finish.

14jx65w.png

While maintenance mode admin can also add new messages pressing //add_reason and players will be informed by each message he adds automatically.

Players who were offline , while server is in maintenance mod they will informed when they log in and they will also get teleported in the maintenance place.And finally he can press //end_maintenance to finish the maintenance mode and players continue playing  :D

 

Why it can be usefull

1)Players are bored to enter at server's site.

2)It's cool to have a maintenance mode in L2 and not in the site

3)Many players will leave if they see Down server status , believe me they will. And this you can fix some things and players get instant informed about your actions.

 

 

### Eclipse Workspace Patch 1.0
#P Chr.6GMS
Index: java/net/sf/l2j/gameserver/handler/usercommandhandlers/Escape.java
===================================================================
--- java/net/sf/l2j/gameserver/handler/usercommandhandlers/Escape.java	(revision 5263)
+++ java/net/sf/l2j/gameserver/handler/usercommandhandlers/Escape.java	(working copy)
@@ -24,6 +24,7 @@
import net.sf.l2j.gameserver.ai.CtrlIntention;
import net.sf.l2j.gameserver.datatables.MapRegionTable;
import net.sf.l2j.gameserver.handler.IUserCommandHandler;
+import net.sf.l2j.gameserver.model.Maintenance;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
import net.sf.l2j.gameserver.model.entity.TvTEvent;
import net.sf.l2j.gameserver.network.SystemMessageId;
@@ -67,6 +68,9 @@
             activeChar.sendMessage("You may not use an escape command in a festival.");
             return false;
         }
+        
+        if(Maintenance.isMaintenance())
+        	return false;

         // Check to see if player is in jail
         if (activeChar.isInJail())
Index: java/net/sf/l2j/gameserver/clientpackets/EnterWorld.java
===================================================================
--- java/net/sf/l2j/gameserver/clientpackets/EnterWorld.java	(revision 5263)
+++ java/net/sf/l2j/gameserver/clientpackets/EnterWorld.java	(working copy)
@@ -46,6 +46,7 @@
import net.sf.l2j.gameserver.model.L2Effect;
import net.sf.l2j.gameserver.model.L2ItemInstance;
import net.sf.l2j.gameserver.model.L2World;
+import net.sf.l2j.gameserver.model.Maintenance;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
import net.sf.l2j.gameserver.model.entity.ClanHall;
import net.sf.l2j.gameserver.model.entity.Couple;
@@ -254,6 +255,15 @@

		Quest.playerEnter(activeChar);
		activeChar.sendPacket(new QuestList());
+		
+		if(Maintenance.isMaintenance()){
+			Maintenance.informPlayer(activeChar);
+			if(!activeChar.isInJail())
+				activeChar.teleToLocation(Maintenance.x, Maintenance.y, Maintenance.z);
+		}
+		else if(Maintenance.isMaintenance() == false)
+			if(activeChar.isInJail())
+				activeChar.teleToLocation(Maintenance.giranX, Maintenance.giranY, Maintenance.giranZ);

		if (Config.SERVER_NEWS)
		{
Index: java/net/sf/l2j/gameserver/model/Maintenance.java
===================================================================
--- java/net/sf/l2j/gameserver/model/Maintenance.java	(revision 0)
+++ java/net/sf/l2j/gameserver/model/Maintenance.java	(revision 0)
@@ -0,0 +1,192 @@
+
+package net.sf.l2j.gameserver.model;
+
+import java.io.File;
+import java.io.FileReader;
+import java.io.FileWriter;
+import java.io.IOException;
+import java.io.LineNumberReader;
+import java.util.StringTokenizer;
+import java.util.logging.Logger;
+
+import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
+import net.sf.l2j.gameserver.serverpackets.NpcHtmlMessage;
+
+import javolution.text.TextBuilder;
+import javolution.util.FastList;
+
+
+
+/**
+ *
+ * @author  iRat
+ */
+public class Maintenance
+{
+	private static Logger _log = Logger.getLogger(Maintenance.class.getName());
+
+	public static int giranX = 0, giranY = 0, giranZ = 0;
+	public static int x = -114462,y = -249619,z = -2986;
+	private static boolean maintenance = false;
+	private static FastList<String> maintenanceMessages = new FastList<String>();
+	
+	public static void addMessage(String reason)
+	{
+		maintenanceMessages.add(reason);
+	}
+		
+	public static void clearAllMessages(){
+		maintenanceMessages.clear();
+	}
+	
+	public static FastList<String> getReasons()
+	{
+		return maintenanceMessages;
+	}
+	
+	public static boolean isMaintenance()
+	{
+		return maintenance;
+	}
+	
+	public static void setMaintenance(boolean _maintenance){
+		setMaintenanceInDisk(_maintenance);
+		maintenance = _maintenance;
+	}
+	
+	private static void setMaintenanceInDisk(boolean Maintenance){
+		String mode = "";
+		if(Maintenance)
+			mode = "true";
+		else
+			mode = "false";
+		
+		File file = new File("data/maintenance.txt");
+		FileWriter save = null;
+		
+		try
+		{
+			save = new FileWriter(file);
+			save.write(mode);
+			save.flush();
+			save.close();
+			save = null;
+		}
+		catch (IOException e)
+		{
+			_log.warning("Error saving maintenance value " + e);
+		}
+	}
+	
+    public static void serverStartMaintenance()
+    {
+    	File file = new File("data/maintenance.txt");
+    	LineNumberReader lnr = null;
+		try
+		{
+			String line = null;
+			lnr = new LineNumberReader(new FileReader(file));
+			if ( (line = lnr.readLine()) != null)
+			{
+				StringTokenizer st = new StringTokenizer(line);
+				
+				if (st.hasMoreTokens())
+				{
+					String mode = st.nextToken();
+					
+					if(mode.equals("true"))
+						maintenance = true;
+					else if(mode.equals("false"))
+						maintenance = false;
+					else
+						maintenance = false;
+				}
+			}
+		}
+		catch (IOException e)
+		{
+			_log.warning("Error reading maintenance mode: "+e);
+		}
+		finally
+		{
+			try
+			{
+				lnr.close();
+			}
+			catch (Exception e1)
+			{}
+		}
+    }
+    
+    public static void sendHtmlAddMessagePage(L2PcInstance player)
+    {
+    	TextBuilder tb = new TextBuilder();
+		NpcHtmlMessage html = new NpcHtmlMessage(1);
+		
+		tb.append("<html><head>");
+		tb.append("<title>Manage Maintenance Mode</title>");
+		tb.append("</head><body>");
+		tb.append("<center>Here you can add new maintenance messages "+player.getName()+"</center>");
+		tb.append("<br><br>");
+		tb.append("<multiedit var=\"newmain\" width=240 height=30><br>");
+		tb.append("<center><button value=\"Add\" action=\"bypass -h setAddMain $newmain\" width=60 height=15 back=\"sek.cbui94\" fore=\"sek.cbui92\"></center>");
+		tb.append("<center><button value=\"Main Menu\" action=\"bypass -h mainMain\" width=60 height=15 back=\"sek.cbui94\" fore=\"sek.cbui92\"></center>");
+		tb.append("</body></html>");
+		
+		html.setHtml(tb.toString());
+		player.sendPacket(html);
+    }
+    
+    public static void informPlayers()
+    {
+    	TextBuilder tb = new TextBuilder();
+		NpcHtmlMessage html = new NpcHtmlMessage(1);
+		
+		tb.append("<html><head>");
+		tb.append("<title>Maintenance Mode</title>");
+		tb.append("</head><body>");
+		tb.append("<br><br>");
+        int i = 1;
+        if(getReasons().isEmpty() == false)
+        for(String message : getReasons())
+        {
+        	tb.append(i+":"+message+"<br>");
+        	i++;
+        }
+		tb.append("</body></html>");
+		
+		html.setHtml(tb.toString());
+    	
+    	for(L2PcInstance player : L2World.getInstance().getAllPlayers()){
+    		if(player == null)
+    			continue;
+    		player.sendPacket(html);
+    		
+    	}
+    }
+    
+    public static void informPlayer(L2PcInstance player)
+    {
+    	TextBuilder tb = new TextBuilder();
+		NpcHtmlMessage html = new NpcHtmlMessage(1);
+		
+		tb.append("<html><head>");
+		tb.append("<title>Maintenance Mode</title>");
+		tb.append("</head><body>");
+		tb.append("<br><br>");
+        int i = 1;
+        if(getReasons().isEmpty() == false)
+        for(String message : getReasons())
+        {
+        	tb.append(i+":"+message+"<br>");
+        	i++;
+        }
+		tb.append("</body></html>");
+		
+		html.setHtml(tb.toString());
+    		player.sendPacket(html);
+    		
+    	}
+    }
+    
+}
Index: java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java
===================================================================
--- java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java	(revision 5263)
+++ java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java	(working copy)
@@ -106,6 +106,7 @@
import net.sf.l2j.gameserver.model.L2Summon;
import net.sf.l2j.gameserver.model.L2World;
import net.sf.l2j.gameserver.model.MacroList;
+import net.sf.l2j.gameserver.model.Maintenance;
import net.sf.l2j.gameserver.model.PcFreight;
import net.sf.l2j.gameserver.model.PcInventory;
import net.sf.l2j.gameserver.model.PcWarehouse;
@@ -271,6 +272,8 @@
		@Override
		public void doAttack(L2Character target)
         {
+			if(Maintenance.isMaintenance())
+				return;
			super.doAttack(target);

			// cancel the recent fake-death protection instantly if the player attacks or casts spells
@@ -283,6 +286,8 @@
		@Override
		public void doCast(L2Skill skill)
         {
+			if(Maintenance.isMaintenance())
+				return;
			super.doCast(skill);

			// cancel the recent fake-death protection instantly if the player attacks or casts spells
Index: java/net/sf/l2j/gameserver/clientpackets/RequestBypassToServer.java
===================================================================
--- java/net/sf/l2j/gameserver/clientpackets/RequestBypassToServer.java	(revision 5263)
+++ java/net/sf/l2j/gameserver/clientpackets/RequestBypassToServer.java	(working copy)
@@ -22,13 +22,17 @@
import java.util.logging.Logger;

import net.sf.l2j.Config;
+import net.sf.l2j.gameserver.Announcements;
+import net.sf.l2j.gameserver.ThreadPoolManager;
import net.sf.l2j.gameserver.ai.CtrlIntention;
import net.sf.l2j.gameserver.communitybbs.CommunityBoard;
import net.sf.l2j.gameserver.handler.AdminCommandHandler;
import net.sf.l2j.gameserver.handler.IAdminCommandHandler;
+import net.sf.l2j.gameserver.handler.admincommandhandlers.AdminMaintenance;
import net.sf.l2j.gameserver.model.L2CharPosition;
import net.sf.l2j.gameserver.model.L2Object;
import net.sf.l2j.gameserver.model.L2World;
+import net.sf.l2j.gameserver.model.Maintenance;
import net.sf.l2j.gameserver.model.actor.instance.L2NpcInstance;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
import net.sf.l2j.gameserver.model.entity.L2Event;
@@ -56,6 +60,22 @@
	{
		_command = readS();
	}
+	
+	private class LockAll implements Runnable{
+		public void run()
+		{
+			for(L2PcInstance player : L2World.getInstance().getAllPlayers()){
+				if(player == null)
+					continue;
+				
+				player.teleToLocation(Maintenance.x, Maintenance.y, Maintenance.z);
+				
+			}
+			Maintenance.informPlayers();
+		}
+		
+	}
+	

	@Override
	protected void runImpl()
@@ -81,6 +101,51 @@
				else
					_log.warning("No handler registered for bypass '"+_command+"'");
			}
+			else if(_command.equals("newMessage")){
+				Maintenance.sendHtmlAddMessagePage(activeChar);
+			}
+			else if(_command.startsWith("setAddMain")){
+				String maintenanceMessage = _command.substring(11);
+				
+				if(maintenanceMessage == "" || maintenanceMessage == null){
+					Maintenance.sendHtmlAddMessagePage(activeChar);
+					activeChar.sendMessage("You can't add null messages");
+					return;
+				}
+				
+				else if(maintenanceMessage.length() >= 100){
+					Maintenance.sendHtmlAddMessagePage(activeChar);
+					activeChar.sendMessage("You can't add too big message");
+					return;
+				}
+				
+				else
+				{
+					Maintenance.addMessage(maintenanceMessage);
+					if(Maintenance.isMaintenance())
+						Maintenance.informPlayers();
+					activeChar.sendMessage("Your maintenance message added.");
+					Maintenance.sendHtmlAddMessagePage(activeChar);
+				}
+			}
+			else if(_command.equals("mainMain")){
+				
+				AdminMaintenance.sendHtmlToAddReasons(activeChar);
+			}
+			else if(_command.equals("clearMessage")){
+				if(!Maintenance.getReasons().isEmpty())
+					Maintenance.clearAllMessages();
+				activeChar.sendMessage("All your maintenance messages cleared");
+				
+				AdminMaintenance.sendHtmlToAddReasons(activeChar);
+			}
+			else if(_command.equals("doMain")){
+				Maintenance.setMaintenance(true);
+				Announcements.getInstance().announceToAll("Server is in Maintenance Mode now , read the reasons.");
+				Announcements.getInstance().announceToAll("You will be locked in 30 seconds");
+				
+				ThreadPoolManager.getInstance().scheduleGeneral(new LockAll(), 30000);
+			}
			else if (_command.equals("come_here") && activeChar.getAccessLevel() >= Config.GM_ACCESSLEVEL)
			{
				comeHere(activeChar);
Index: java/net/sf/l2j/gameserver/handler/admincommandhandlers/AdminMaintenance.java
===================================================================
--- java/net/sf/l2j/gameserver/handler/admincommandhandlers/AdminMaintenance.java	(revision 0)
+++ java/net/sf/l2j/gameserver/handler/admincommandhandlers/AdminMaintenance.java	(revision 0)
@@ -0,0 +1,76 @@
+
+package net.sf.l2j.gameserver.handler.admincommandhandlers;
+
+import javolution.text.TextBuilder;
+import net.sf.l2j.gameserver.Announcements;
+import net.sf.l2j.gameserver.handler.IAdminCommandHandler;
+import net.sf.l2j.gameserver.model.L2World;
+import net.sf.l2j.gameserver.model.Maintenance;
+import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
+import net.sf.l2j.gameserver.serverpackets.NpcHtmlMessage;
+
+/**
+ *
+ * @author  iRat
+ */
+public class AdminMaintenance implements IAdminCommandHandler
+{
+
+	private final String[] commands = {"admin_start_maintenance","admin_end_maintenance","admin_add_reason"};
+	
+	public boolean useAdminCommand(String command, L2PcInstance activeChar)
+	{
+		if(activeChar == null) return false;
+		
+		if(command.equalsIgnoreCase("admin_start_maintenance"))
+		{
+			sendHtmlToAddReasons(activeChar);
+		}
+		else if(command.equalsIgnoreCase("admin_add_reason"))
+		{
+			Maintenance.sendHtmlAddMessagePage(activeChar);
+		}
+		else if(command.equalsIgnoreCase("admin_end_maintenance"))
+		{
+			Maintenance.setMaintenance(false);
+			Maintenance.clearAllMessages();
+			for(L2PcInstance player : L2World.getInstance().getAllPlayers()){
+				if(player == null)
+					continue;
+				
+				player.sendMessage("Maintenance Mode finished, you telepored in giran");
+				player.teleToLocation(Maintenance.giranX, Maintenance.giranZ, Maintenance.giranY);
+			}
+			Announcements.getInstance().announceToAll("Maintenance Mode finished, have a nice game");
+			}
+		return true;
+	}
+
+	public static void sendHtmlToAddReasons(L2PcInstance activeChar)
+	{
+		//no need null check since added in useAdminCommand()
+		
+		TextBuilder tb = new TextBuilder();
+		NpcHtmlMessage html = new NpcHtmlMessage(1);
+		
+		tb.append("<html><head>");
+		tb.append("<title>Manage Maintenance Mode</title>");
+		tb.append("</head><body>");
+		tb.append("<center>Here you can manage the maintenance mode "+activeChar.getName()+"</center>");
+		tb.append("<br><br>");
+		tb.append("Select if you want to add a new reason or you want to remove.<br>");
+		tb.append("<button value=\"Add Message\" action=\"bypass -h newMessage\" width=65 height=19>");
+		tb.append("<button value=\"Clear Messages\" action=\"bypass -h clearMessage\" width=65 height=19><br><br>");
+		tb.append("<center><button value=\"Do Maintenance\" action=\"bypass -h doMain\" width=65 height=19></center>");
+		tb.append("</body></html>");
+		
+		html.setHtml(tb.toString());
+		activeChar.sendPacket(html);
+	}
+	
+	public String[] getAdminCommandList()
+	{
+		return commands;
+	}
+	
+}
Index: java/net/sf/l2j/gameserver/GameServer.java
===================================================================
--- java/net/sf/l2j/gameserver/GameServer.java	(revision 5263)
+++ java/net/sf/l2j/gameserver/GameServer.java	(working copy)
@@ -97,6 +97,7 @@
import net.sf.l2j.gameserver.handler.admincommandhandlers.AdminKill;
import net.sf.l2j.gameserver.handler.admincommandhandlers.AdminLevel;
import net.sf.l2j.gameserver.handler.admincommandhandlers.AdminLogin;
+import net.sf.l2j.gameserver.handler.admincommandhandlers.AdminMaintenance;
import net.sf.l2j.gameserver.handler.admincommandhandlers.AdminMammon;
import net.sf.l2j.gameserver.handler.admincommandhandlers.AdminManor;
import net.sf.l2j.gameserver.handler.admincommandhandlers.AdminMenu;
@@ -221,6 +222,7 @@
import net.sf.l2j.gameserver.model.L2Manor;
import net.sf.l2j.gameserver.model.L2PetDataTable;
import net.sf.l2j.gameserver.model.L2World;
+import net.sf.l2j.gameserver.model.Maintenance;
import net.sf.l2j.gameserver.model.entity.Hero;
import net.sf.l2j.gameserver.model.entity.TvTManager;
import net.sf.l2j.gameserver.network.L2GameClient;
@@ -351,6 +353,7 @@
		NobleSkillTable.getInstance();
		HeroSkillTable.getInstance();

+		Maintenance.serverStartMaintenance();
         //Call to load caches
         HtmCache.getInstance();
         CrestCache.getInstance();
@@ -518,6 +521,7 @@

		_adminCommandHandler = AdminCommandHandler.getInstance();
		_adminCommandHandler.registerAdminCommandHandler(new AdminAdmin());
+		_adminCommandHandler.registerAdminCommandHandler(new AdminMaintenance());
		_adminCommandHandler.registerAdminCommandHandler(new AdminInvul());
		_adminCommandHandler.registerAdminCommandHandler(new AdminDelete());
		_adminCommandHandler.registerAdminCommandHandler(new AdminKill());

Posted

Great share for sure it's hard to use it cause u can fix them without move player's or stop them from xp and etC ! but it's seems great ! good work keep it like this we want to see Mods like that ! thanks from me for sure i will try it and then i will post again

Posted

Eh, good job, but the admin commands should be handled by admin command handlers. Check another example how it works, like //item_create.

Posted

Eh, good job, but the admin commands should be handled by admin command handlers. Check another example how it works, like //item_create.

What exactly you mean? :P
Posted

What exactly you mean? :P

That you handle the admin command handlers with normal bypasses. I mean these:

+			else if(_command.equals("newMessage")){
+				Maintenance.sendHtmlAddMessagePage(activeChar);
+			}
+			else if(_command.startsWith("setAddMain")){
+				String maintenanceMessage = _command.substring(11);
+				
+				if(maintenanceMessage == "" || maintenanceMessage == null){
+					Maintenance.sendHtmlAddMessagePage(activeChar);
+					activeChar.sendMessage("You can't add null messages");
+					return;
+				}
+				
+				else if(maintenanceMessage.length() >= 100){
+					Maintenance.sendHtmlAddMessagePage(activeChar);
+					activeChar.sendMessage("You can't add too big message");
+					return;
+				}
+				
+				else
+				{
+					Maintenance.addMessage(maintenanceMessage);
+					if(Maintenance.isMaintenance())
+						Maintenance.informPlayers();
+					activeChar.sendMessage("Your maintenance message added.");
+					Maintenance.sendHtmlAddMessagePage(activeChar);
+				}
+			}
+			else if(_command.equals("mainMain")){
+				
+				AdminMaintenance.sendHtmlToAddReasons(activeChar);
+			}
+			else if(_command.equals("clearMessage")){
+				if(!Maintenance.getReasons().isEmpty())
+					Maintenance.clearAllMessages();
+				activeChar.sendMessage("All your maintenance messages cleared");
+				
+				AdminMaintenance.sendHtmlToAddReasons(activeChar);
+			}
+			else if(_command.equals("doMain")){
+				Maintenance.setMaintenance(true);
+				Announcements.getInstance().announceToAll("Server is in Maintenance Mode now , read the reasons.");
+				Announcements.getInstance().announceToAll("You will be locked in 30 seconds");
+				
+				ThreadPoolManager.getInstance().scheduleGeneral(new LockAll(), 30000);
+			}

 

should have been coded in AdminMaintenance.java.

Posted

That you handle the admin command handlers with normal bypasses. I mean these:

+			else if(_command.equals("newMessage")){
+				Maintenance.sendHtmlAddMessagePage(activeChar);
+			}
+			else if(_command.startsWith("setAddMain")){
+				String maintenanceMessage = _command.substring(11);
+				
+				if(maintenanceMessage == "" || maintenanceMessage == null){
+					Maintenance.sendHtmlAddMessagePage(activeChar);
+					activeChar.sendMessage("You can't add null messages");
+					return;
+				}
+				
+				else if(maintenanceMessage.length() >= 100){
+					Maintenance.sendHtmlAddMessagePage(activeChar);
+					activeChar.sendMessage("You can't add too big message");
+					return;
+				}
+				
+				else
+				{
+					Maintenance.addMessage(maintenanceMessage);
+					if(Maintenance.isMaintenance())
+						Maintenance.informPlayers();
+					activeChar.sendMessage("Your maintenance message added.");
+					Maintenance.sendHtmlAddMessagePage(activeChar);
+				}
+			}
+			else if(_command.equals("mainMain")){
+				
+				AdminMaintenance.sendHtmlToAddReasons(activeChar);
+			}
+			else if(_command.equals("clearMessage")){
+				if(!Maintenance.getReasons().isEmpty())
+					Maintenance.clearAllMessages();
+				activeChar.sendMessage("All your maintenance messages cleared");
+				
+				AdminMaintenance.sendHtmlToAddReasons(activeChar);
+			}
+			else if(_command.equals("doMain")){
+				Maintenance.setMaintenance(true);
+				Announcements.getInstance().announceToAll("Server is in Maintenance Mode now , read the reasons.");
+				Announcements.getInstance().announceToAll("You will be locked in 30 seconds");
+				
+				ThreadPoolManager.getInstance().scheduleGeneral(new LockAll(), 30000);
+			}

 

should have been coded in AdminMaintenance.java.

Aha , actually i didn't know that can bypassing in admin commands classes.

Anyway i don't think it's so important since it doesn't take more memory or have problems to work :P but yes it would be better like that.

Posted

Aha , actually i didn't know that can bypassing in admin commands classes.

Anyway i don't think it's so important since it doesn't take more memory or have problems to work :P but yes it would be better like that.

Yeah, it works just fine like this too. It's just for order and cleaner coding ;)

Posted

better way is just to shutdown server and boot it in gm only mode. noob players could just login and start shouting 'wtf is happening at this bugland' (worst scenario). mine verdict: useless.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • Yes I know that sounds hilarious, but I am looking for 1-2 passionate people that are down to team up on a project I wanted to "revive". We had a server up and running in 2023 and closed the same year due to the team splitting up for personal differences. However, thought of bringing it back.   What we have (In terms of infrastructure): - Website is up and running - Launcher is done - Dedicated server is up and running - Control Panel (Web) is in development, almost finished. We'll use my own one (https://nimeracp.com/)   What expansion did we pick? Well our project was based on Interlude, but we could expand anytime later with alternative servers/chronicles.   Who are we? Basically it's me and @protoftw at the moment. I've been dealing with the website + launcher and maybe java development (For now), proto with datapack/textures/htmls/npcs/zones etc.   What we're looking for: Just one or two people that love what they do and got the required expertise/skills to be a part of this. Whatever you're into, if you just want to be GM, Event GM, help with development or whatever, we look for any kind of addition to the team.   Reach out by adding me on discord. ID: splicho
    • General Trackers :   IPTorrents invite IPTorrents account 1 tb TorrentLeech invite Torrentleech account 1 tb buffer  InTheShaDow ( ITS ) account Acid-lounge invite Torrentday invite Crnaberza account Abn.Lol account Limit-of-eden account Norbits account Xspeeds account Xspeeds invite Bemaniso invite Wigornot account Bithumen invite Filelist account Funfile invite AvistaZ invite Potuk.net invite ResurrectThe.Net invite GrabThe.Info invite Greek-Team invite LinkoManija invite Fano.in account tracker.czech-server.com Speed.cd invite Arab-torrents.net account Arabscene.me account Scenetime account 4thd.xyz invite Btarg.com.ar account Dedbit invite Estone.cc account Speedapp invite Finvip invite Fluxzone account GigaTorrents account Gimmepeers account Haidan.video invite Mojblink account Mycarpathians invite Newinsane.info account Oscarworld.xyz account Peers.FM invite Pt.msg.vg account Ransackedcrew account Redemption invite Scene-rush account Seedfile.io invite Teracod invite Torrent.ai account Torrentmasters invite Ttsweb invite X-files invite X-ite invite Ncore account TorrentHR account Rptorrents account BwTorrents account Superbits invite Krazyzone account Immortalseed account Tntracker invite Pt.eastgame.org account Bitturk account Rstorrent account Tracker.btnext invite Torrent-turk.de account BeiTai.PT account Pt.keepfrds account 52pt.site account Pthome account Torrentseeds account Aystorrent account Blues-brothers.biz invite Divteam account Thesceneplace invite CinemaMovies.pl account Brasiltracker account Patiodebutacas account Newheaven.nl account  Swarmazon.club invite Bc-reloaded account Crazyspirits account Silentground invite Omg.wtftrackr invite Milkie.cc invite Breathetheword invite Madsrevolution account Chilebt account Yubraca account Uniongang.tv account Frboard account Exvagos account Diablotorrent account Microbit account Carp-hunter.hu account Majomparade.eu account Theshinning.me account Youiv.info account Dragonworld-reloaded account Sharewood.tv account Partis.si account Digitalcore.club invite Fuzer.me account R3vuk.wtf invite Ztracker account 1 tb buffer 3changtrai account Best-core.info account Bitsite.us account Eliteunitedcrew invite Exitorrent.org account Tophos invite Torrent.lt account Sktorrent.eu account Oshen account Blackhattorrent account Pirata.digital account Esharenet account Ohmenarikgi.la Pirate-share account Immortuos account Kiesbits account Cliente.amigos-share.club account Broadcity invite Ilovetorzz account Torrentbytes account Polishsource account Portugas invite Shareisland account ArabaFenice account Hudbt.hust.edu.cn account Audiences account Nanyangpt account Pt.sjtu.edu.cn account Pt.zhixing.bjtu.edu.cn account Byr.pt invite Ptfiles invite Red-bits account Pt.hdpost.top account Irrenhaus.dyndns.dk (NewPropaganda) account Mnvv2.info (MaxNewVision V2) account 1ptba.com account Spidertk.top account Film-paleis account Generation-free account Aftershock-tracker account Twilightsdreams account Back-ups.me invite Sor-next.tk ( Spirit Of Revolution ) account Tfa.tf ( The Falling Angels ) account Hdmayi account S-f-p.dyndns.dk ( Share Friends Projekt ) account Unlimitz.biz account Pttime account St-tracker.eu account New-retro.eu account Zbbit account Tigers-dl.net account Jptvts.us account Lat-team account Club.hares.top account Falkonvision-team account Concen account Drugari account T.ceskeforum account Peeratiko.org account Zamunda.se account Central-torrent.eu account h-o-d.org account Torrentleech.pl account Demonoid invite Lst.gg account Fakedoor.store account LaidBackManor account Vrbsharezone.co.uk invite Torrenteros account Arenaelite account Datascene account Tracker.0day.community Tapochek.net invite Ptchina invite Lesaloon account Exyusubs account Therebels.tv account Ubits.club invite Zmpt.cc account Turktorrent.us account Dasunerwarte account Hawke.uno account Monikadesign account Fearnopeer account Alpharatio account Wukongwendao.top account Chinapyg account Azusa.wiki account Yggtorrent.top account Torrentdd account Cyanbug.net invite Hhanclub.top account Wintersakura.net account Xthor account Tctg.pm account Finelite invite Agsvpt.com account Pt.0ff.cc invite Qingwapt.com account Xingtan.one account Ptcafe.club invite Theoldschool.cc account W-o-t.pro account Coastal-crew.bounceme.net account Darkpeers.org account Pianyuan.org account Seedpool.org  account Tempelbox account   Movies Trackers :   Anthelion account Pixelhd account Cinemageddon account DVDSeed account Cinemageddon account Cinemaz account Retroflix account Classix-unlimited - invite Movie-Torrentz (m2g.link) invite Punck-tracker.net account Tmghub account Tb-asian account Cathode-ray.tube account Greatposterwall account Telly account Arabicsource.net account Upload.cx account Crabpt.vip invite Onlyencodes.cc account   HD Trackers :   Hdf.world account Torrentland.li account HdSky account Hdchina account Chdbits account Totheglory account Hdroute account Hdhome account TorrentCCF aka et8.org account 3DTorrents invite HD-Torrents account Bit-HDTV account HDME.eu invite Hdarea.co account Asiancinema.me account JoyHD invite HDSpace invite CrazyHD invite Bluebird-hd invite Htpt.cc account Hdtime invite Ourbits.club account Hd4fans account Siambit account Privatehd account Springsunday account Tjupt account Hdcity.leniter invite Ccfbits account Discfan account Pt.btschool.club account Ptsbao.club invite Hdzone.me invite Danishbytes account Zonaq.pw account Tracker.tekno3d account Arabp2p account Hd-united account Reelflix.xyz account Hdatmos.club account Anasch.cc invite Tigris-t account Nethd.org account Hd.ai invite Hitpt.com account Hdmonkey account Dragonhd.xyz account Hdclub.eu account Forum.bluraycd.com account Carpt account Hdfun.me invite Pt.hdupt invite Puntotorrent account Ultrahd account Rousi.zip account Bearbit account Hdturk.club account Asiandvdclub account Star-space.net account   Music Trackers :   Dicmusic account Music-Vid account Open.cd account LzTr account ProAudioTorrents invite Jpopsuki invite TranceTraffic invite Audionews invite Kraytracker invite Libble.me invite Losslessclub invite Indietorrents.com invite Dimeadozen account Funkytorrents invite Karaokedl account zombtracker.the-zomb account Concertos account Sugoimusic account Satclubbing.club invite Metal.iplay invite Psyreactor invite Panda.cd account Adamsfile account Freehardmusic account Tracker.hqmusic.vn accouunt Twilightzoom account 3 tb buffer Hiresmusic account Metalguru account Musictorrents.org account   E-Learning Trackers :   BitSpyder invite Brsociety account Learnbits invite Myanonamouse account Libranet account 420Project account Learnflakes account Pt.soulvoice.club account P2pelite account Aaaaarg.fail invite Ebooks-shares.org account Abtorrents account Pt.tu88.men invite   TV-Trackers :   Skipthecommericals Cryptichaven account TV-Vault invite Shazbat.TV account Myspleen account Tasmanit.es invite Tvstore.me account Tvchaosuk account Jptv.club account Tvroad.info   XXX - Porn Trackers :   FemdomCult account Pornbay account Pussytorrents account Adult-cinema-network account Bootytape account 1 Tb buffer Exoticaz account Bitporn account Kufirc account Gaytorrent.ru invite Nicept account Gay-torrents.org invite Ourgtn account Pt.hdbd.us account BitSexy account Happyfappy.org account Kamept.com account   Gaming Trackers :   Mteam.fr account BitGamer invite Retrowithin invite Gamegamept account   Cartoon/Anime/Comic Trackers :   Animeworld account Oldtoons.world account U2.dmhy account CartoonChaos invite Animetorrents account Mononoke account Totallykids.tv account Bakabt.me invite Revanime account Ansktracker account Tracker.shakaw.com.br invite Bt.mdan.org account Skyey2.com account Animetracker.cc Adbt.it.cx invite   Sports Trackers :   MMA-Tracker invite T3nnis.tv invite AcrossTheTasman account RacingForMe invite Sportscult invite Ultimatewrestlingtorrents account Worldboxingvideoarchive invite CyclingTorrents account Xtremewrestlingtorrents account Tc-boxing invite Mma-torrents account Aussierul invite Xwt-classics account Racing4everyone account Talk.tenyardtracker account Stalker.societyglitch invite Extremebits invite   Software/Apps Trackers :   Brokenstones account Appzuniverse invite Teamos.xyz account Graphics Trackers: Forum.Cgpersia account Gfxpeers account Forum.gfxdomain account   Documentary Trackers:   Forums.mvgroup account   Others   Fora.snahp.eu account Board4all.biz account Filewarez.tv account Makingoff.org/forum account Xrel.to account Undergunz.su account Corebay account Endoftheinter.net ( EOTI ) account Thismight.be invite Skull.facefromouter.space account Avxhm.se (AvaxHome) account Ssdforum account Notfake.vip account Intotheinter.net account Tildes.net invite Thetoonz account Usinavirtual account Hdclasico invite HispaShare account Valentine.wtf account Adit-hd account Forum-andr.net account Warezforums account Justanothermusic.site account Forbiddenlibrary.moe account Senturion.to account Movieparadise account Militaryzone account Dcdnet.ru account Sftdevils.net account Heavy-r.com account New-team.org account Ddl.tv account Filewarez.club account Hispamula.org account Hubwarez.tv account   NZB :   Drunkenslug account Drunkenslug invite Usenet-4all account Brothers-of-Usenet account Dognzb.cr invite Kleverig account Nzb.cat account Nzbplanet.net invite Ng4you.com account Nzbsa.co.za account Bd25.eu account NZB.to account Samuraiplace account Tabula-rasa.pw account   Prices start from 3 $ to 100 $   Payment methods: Crypto, Neteller, Webmoney, Revolut   If you want to buy something send me a pm or contact me on:   Email: morrison2102@gmail.com   Discord: LFC4LIFE#4173   Telegram: https://t.me/LFC4LIFE4173   Skype: morrison2102@hotmail.com
    • hook kernel32 createfilew. example interlude client try load these dat files until login screen. CreateFileW("WarningNotice-e.dat") CreateFileW("EULA-e.dat") CreateFileW("Chargrp.dat") CreateFileW("Hairgrp.dat") CreateFileW("Helmetgrp.dat") CreateFileW("HairAccessarygrp.dat") CreateFileW("EtcItemgrp.dat") CreateFileW("Armorgrp.dat") CreateFileW("Weapongrp.dat") CreateFileW("ItemName-e.dat") CreateFileW("Npcgrp.dat") CreateFileW("NpcName-e.dat") CreateFileW("Skillgrp.dat") CreateFileW("SkillName-e.dat") CreateFileW("ActionName-e.dat") CreateFileW("QuestName-e.dat") CreateFileW("SystemMsg-e.dat") CreateFileW("ServerName-e.dat") CreateFileW("IDCName-e.dat") CreateFileW("Creditgrp-e.dat") CreateFileW("SysString-e.dat") CreateFileW("ClassInfo-e.dat") CreateFileW("Recipe-c.dat") CreateFileW("Hennagrp-e.dat") CreateFileW("SkillSoundgrp.dat") CreateFileW("CastleName-e.dat") CreateFileW("SymbolName-e.dat") CreateFileW("EnterEventgrp.dat") CreateFileW("CommandName-e.dat") CreateFileW("Obscene-e.dat") CreateFileW("MusicInfo.dat") CreateFileW("MobSkillAnimgrp.dat") CreateFileW("StaticObject-e.dat") CreateFileW("ZoneName-e.dat") CreateFileW("Logongrp.dat") CreateFileW("Hairaccessorylocgrp.dat") CreateFileW("RaidData-e.dat") CreateFileW("HuntingZone-e.dat") CreateFileW("GameTip-e.dat") CreateFileW("optiondata_client-e.dat") CreateFileW("variationeffectgrp-e.dat")  
    • For Premium Pack you need to pay 1000€   Yikes lol
    • This is the first time I've heard of L2Tales but I'm really happy to hear this, anyway there are many servers that have similar files 🙂
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock