Jump to content

Question

12 answers to this question

Recommended Posts

  • 0
Posted (edited)

if you are using aCis:

 

pastebin

 

log with your gm and spawn fences , they will be stored to db.

(in case of delete some of them use //listfence and click the fence you want)

Edited by melron
  • Upvote 1
  • 0
Posted
27 minutes ago, Xenokage said:

how am i supposed to add a fence to a zone ? i use //spawnfence 2 2000 2000 but after restart it dissapears , anyway to save ?

You can save them in xml with a code...

  • 0
Posted (edited)
5 minutes ago, Reborn12 said:

You can save them in xml with a code...

can u be specific on wich xml i have to add the location values ? 

would it be on the zone xml like this ? 

<spawnfence 2 2000 2000 X="-119418" Y="-225003" Z="-3327" /> ????

Edited by Xenokage
  • 0
Posted
On 9/7/2018 at 2:19 PM, Reborn12 said:

You can save them in xml with a code...

Tell me the day SQL replaced with XML to store somethin cause im sure i was SLEEPING

  • 0
Posted
2 minutes ago, Kara` said:

Tell me the day SQL replaced with XML to store somethin cause im sure i was SLEEPING

 

νοτ σθρε ιφ ρεταρδεδ ορ...;

  • 0
Posted
22 minutes ago, xxdem said:

 

νοτ σθρε ιφ ρεταρδεδ ορ...;

[GR] ονε ηθνδρετ περψεντ ρεταρδεδ [/GR]

  • 0
Posted

crappy code but still u can see example:

fencetable.java

package com.l2jfrozen.gameserver.datatables;

import java.util.ArrayList;
import java.util.Collection;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;

import com.l2jfrozen.gameserver.model.L2Object;
import com.l2jfrozen.gameserver.model.actor.instance.L2FenceInstance;
import java.util.logging.Logger;
import com.l2jfrozen.util.database.L2DatabaseFactory;
import com.l2jfrozen.gameserver.idfactory.IdFactory;
import com.l2jfrozen.util.CloseUtil;

public class FenceTable
{
protected static Logger _log = Logger.getLogger(FenceTable.class.getName());

public static void fencedelsql(int type,int locx,int locy,int locz,int width,int length){
		Connection con;
		try 
		{
			con = L2DatabaseFactory.getInstance().getConnection();
			PreparedStatement statement = con.prepareStatement("DELETE FROM `fences` WHERE `type`='"+type+"' AND `locx`='"+locx+"' AND `locy`='"+locy+"' AND `locz`='"+locz+"' AND `width`='"+width+"' AND `length`='"+length+"'");
			statement.execute();
            statement.close(); 	
			CloseUtil.close(con);			
			   }
			    catch (Exception e)
               {
                       e.printStackTrace();
               }
}
public static void fencetogame(){
						  int g=0;
		Connection con = null;
		try 
		{
			con = L2DatabaseFactory.getInstance().getConnection();
                       ResultSet rset;
                       PreparedStatement statement = con.prepareStatement("SELECT * FROM `fences` WHERE 1");
                       rset = statement.executeQuery();
					  int type;
                      int width;
					  int length;
					  int height;
					  int locx;
					  int locy;
					  int locz;
					  String name;
                       while (rset.next())
                       {
						   g++;
						   type = rset.getInt("type");
						   width = rset.getInt("width");
						   length = rset.getInt("length");
						   height = rset.getInt("height");
						   locx = rset.getInt("locx");
						   locy = rset.getInt("locy");
						   locz = rset.getInt("locz");
						   name = rset.getString("name");


						// spawn fence
				for (int i = 0;i < height;i++)
				{
					L2FenceInstance fence = new L2FenceInstance(IdFactory.getInstance().getNextId(), type, width, length, locz, locy, name);
					fence.spawnMe(locx, locy, locz);
					addFence(fence);
				}
                        // spawn fence						
                       }
			   }
			    catch (Exception e)
               {
                       e.printStackTrace();
               }		finally
		{
			CloseUtil.close(con);
		}
			   _log.warning("Loaded "+g+" fences to world.");
}

 public static ArrayList<L2FenceInstance> fences = new ArrayList<>();
 
 public static void addFence(L2FenceInstance fence)
 {
     fences.add(fence);
 }

 public static ArrayList<L2FenceInstance> getAllFences()
 {
     return fences;
 }
 
 public static void removeFence(L2FenceInstance fence)
 {
     if (fences.contains(fence))
         fences.remove(fence);
 }
 
 public static boolean canSeeTarget(L2Object source, int x, int y)
 {
     Collection<L2Object> objects = source.getKnownList().getKnownObjects().values();
     
     for (L2Object obj : objects)
     {
         if (obj instanceof L2FenceInstance)
         {
             L2FenceInstance fence = (L2FenceInstance) obj;
             
             if (fence.isBetween(source.getX(), source.getY(), x, y))
                 return false;
         }
     }
     
     return true;
 }
 
 public static boolean canSeeTarget(int x, int y, int tx, int ty)
 {
     for (L2FenceInstance fence : fences)
     {
         if (fence.isBetween(x, y, tx, ty))
             return false;
     }
     
     return true;
 }
}

gameserver java

FenceTable.fencetogame();

admin command:

		else if (command.startsWith("admin_spawnfence"))
		{
			StringTokenizer st = new StringTokenizer(command, " ");
			try
			{
				st.nextToken();
				int type = Integer.parseInt(st.nextToken());
				int width = Integer.parseInt(st.nextToken());
				int length = Integer.parseInt(st.nextToken());
				int height = 1;
				String name = "";
				if (st.hasMoreTokens())
					height = Math.min(Integer.parseInt(st.nextToken()), 3);
				if (st.hasMoreTokens())
				name = st.nextToken();
				
				for (int i = 0;i < height;i++)
				{
					L2FenceInstance fence = new L2FenceInstance(IdFactory.getInstance().getNextId(), type, width, length, activeChar.getX(), activeChar.getY(), name);
					fence.spawnMe(activeChar.getX(), activeChar.getY(), activeChar.getZ());
					FenceTable.addFence(fence);
					fence.fencetosql(type,activeChar.getX(),activeChar.getY(),activeChar.getZ(),width,length, height,name);
				}
			}
			catch (Exception e)
			{
				activeChar.sendMessage("Usage: //spawnfence <type> <width> <length> [<height>]");
			}
		}
		else if (command.startsWith("admin_deletefence"))
		{
			StringTokenizer st = new StringTokenizer(command, " ");
			st.nextToken();
			int idas = Integer.parseInt(st.nextToken());
			for (L2FenceInstance fencex : FenceTable.getAllFences()) {
					if(fencex.getObjectId()==idas) {
					FenceTable.fencedelsql(fencex.getType(),fencex.getX(),fencex.getY(),fencex.getZ(),fencex.getWidth(),fencex.getLength());
					L2WorldRegion region = fencex.getWorldRegion();
					fencex.decayMe();
					region.removeVisibleObject(fencex);
					fencex.getKnownList().removeAllKnownObjects();
					L2World.getInstance().removeObject(fencex);
					FenceTable.removeFence(fencex);
					activeChar.sendMessage("Deleted fence " + fencex.getObjectId());
					listFences(activeChar);
					}
				}
		}
		else if (command.startsWith("admin_listfence"))
			listFences(activeChar);
                                              ....
    private static void listFences(L2PcInstance activeChar)
	{
		NpcHtmlMessage html = new NpcHtmlMessage(0);
		StringBuilder sb = new StringBuilder();
		
		sb.append("<html><body>Total Fences: " + FenceTable.getAllFences().size() + "<br><br>");
		for (L2FenceInstance fence : FenceTable.getAllFences())
			sb.append("<a action=\"bypass admin_deletefence " + fence.getObjectId() + " 1\">Fence: "+fence.getNamex()+" " + fence.getObjectId() + " [" + fence.getX() + " " + fence.getY() + " " + fence.getZ() + "]</a><br>");
		sb.append("</body></html>");
		
		html.setHtml(sb.toString());
		activeChar.sendPacket(html);
	}

 

  • Upvote 1
  • 0
Posted
On 10/14/2018 at 3:53 AM, melron said:

if you are using aCis:

 

pastebin

 

log with your gm and spawn fences , they will be stored to db.

(in case of delete some of them use //listfence and click the fence you want)

Thank you , Helpful as always :)) 
can lock ! 

Guest
This topic is now closed to further replies.


  • Posts

    • wtf is your website lol ai slop
    • who have this files? or info about cached packets?
    • Hi maxcheaters, i am trying to bring back an old server ( L2Revenge) but with my own ideas, i only liked how it was and made the gameplay based on that just putting my own ideas.   So practicly is a PTS C6 with an extender that i work lately    Exp / SP is x45 adena is x200 and drops x5  so safe is +3 , max is unlimited and rate is 65% for both mage and fighter weapons I created a system that you can get on the levels the gear you need based on farm but for S grade theres a little farm to get some armor Tokens to unseal them. As you remember L2Revenge had olympiad / Tournament gear. So people abused them and had S grades that way just couldnt enchant them. So i made to be wearable only if u are nobless. That way i cancel this "exploit".  The server gives opportunity to solo and clans , epic gear ( epic weapons) or armors can be bought with raid tokens and you can craft them or get them with various ways Regarding Buffs: 24 buff slots no changes asked. Cov/Pony/Cat , siren - renewal - champion out of buffer , if u make the char as main roll u can use them or use the offline buffer system to sell them and get adenas. their time is 20 mins so that way we see again the " 1kk for rene/siren" or rec = song  Regarding armors: they are dropped ( parts ) from 3 only raids , rest lvl 76+ raids drop recipes , so crafting takes place (so if u are solo u can craft them )  there are 3 armors each armor have its purpose: Revenge Armors - Example for light ( its a glass cannon , high damage , less atk speed and less pdef ) - they mostly modify your base stats, so useable on sieges or off tank chars Titanium Armors - A little bit of balanced of all  Epic Armor - Daggers/Enchanters/Healers mostly but u can always combine your build    Regarding weapons: can be dropped from Monastery of Silence monsters or get them from NPC with Raid Tokens its like a 5% better than S grades and the S/A Activates at +4  Regarding retail gear: you need to unseal only S grades for a great amount of armor tokens all weapons on any grade need Soul crystals that are sold for adenas  stage 13 crystals are expensive or dropped from raids Regarding fun: There is a squash event a Fortress vs Fortress pvp event an RB Event at weekends and from Monday - Wednesday Tournament ( Olympiad is closed monday/tuesday/wednesday)  at tournament you can practice 1vs1 like olympiad but pots/ss allowed , gear allowed is only olympiad or tournament , each win of match gives u 5 glits at 100 glits u can be hero till restart Olympiad works the same way regarding gear allowance but works only thursday to friday and you win monthly hero Auction with Raid Tokens is activated Event medals from events can be exchanged for various items i try to make the oldschool with a little bit of new school systems Not planing to open it anytime soon as i still develop and make corrections to extender , looking forward to meet people that actually played this and are hyped to help on testing / development   P.S is c5 into interlude ( theres no akamanah / nor PI aswell , no lifestones) forgot to mention
    • Announcement – L2 Relic Server Opening Soon! We’re excited to share some great news! Our team has been working hard behind the scenes, and we’re nearly ready to launch our brand-new Lineage server this winter. The journey is just about to begin – so prepare yourselves! Gather your friends, sharpen your skills, and get ready to experience an epic adventure. Stay tuned for more details, updates, and the official beta-opening date. This winter, history will be written once again… are you ready?   Developed by https://dailyhost.eu/
  • 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