Jump to content

Recommended Posts

Posted

Hello people.

 

Since i helped a guy here  "http://www.maxcheaters.com/forum/index.php?topic=126391.0" with the same issue, i decided to share

the admin command //mass_create. How it works? You type //mass_create itemID amount (e.g //mass_create 57 1 -> This will add 1 adena to every online player)

 

Tested in L2J Interlude and works fine.

 

package net.sf.l2j.gameserver.handler.admincommandhandlers;

import java.util.StringTokenizer;

import net.sf.l2j.Config;
import net.sf.l2j.gameserver.datatables.ItemTable;
import net.sf.l2j.gameserver.handler.IAdminCommandHandler;
import net.sf.l2j.gameserver.model.GMAudit;
import net.sf.l2j.gameserver.model.L2World;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
import net.sf.l2j.gameserver.serverpackets.ItemList;
import net.sf.l2j.gameserver.templates.L2Item;



public class AdminMassCreate implements IAdminCommandHandler {
private static final String[] ADMIN_COMMANDS = { "admin_mass_create" };
private static final int REQUIRED_LEVEL = Config.GM_CREATE_ITEM; // you need the same access level as create_item.

public boolean useAdminCommand(String command, L2PcInstance activeChar) {
	if (!Config.ALT_PRIVILEGES_ADMIN) {
		if (!(checkLevel(activeChar.getAccessLevel()) && activeChar.isGM()))
			return false;
	}

	GMAudit.auditGMAction(activeChar.getName(), command, (activeChar.getTarget() != null?activeChar.getTarget().getName():"no-target"), "");

	if (command.startsWith("admin_mass_create")) {
		try {
			String val = command.substring(17);
			StringTokenizer st = new StringTokenizer(val);
			if (st.countTokens() == 2) {
				String id = st.nextToken();
				int idval = Integer.parseInt(id);
				String num = st.nextToken();
				int numval = Integer.parseInt(num);
				massCreate(activeChar, idval, numval);
			} else if (st.countTokens() == 1) {
				String id = st.nextToken();
				int idval = Integer.parseInt(id);
				massCreate(activeChar, idval, 1);
			}
		} catch (StringIndexOutOfBoundsException e) {
			activeChar.sendMessage("Usage: //itemcreate <itemId> [amount]");
		} catch (NumberFormatException nfe) {
			activeChar.sendMessage("Specify a valid number.");
		}
	}
	return true;
}

private void massCreate(L2PcInstance activeChar, int idval, int numval) {
	for (L2PcInstance _players : L2World.getInstance().getAllPlayers()) {
		if (_players == activeChar)
			continue;

		_players.getInventory().addItem("Admin", idval, numval, _players,
				null);

		ItemList il = new ItemList(_players, true);
		_players.sendPacket(il);
		_players.sendMessage("Admin award you " + numval
				+ " item(s) number " + idval);

		activeChar.sendMessage("You have spawned " + numval
				+ " item(s) number " + idval + " in all chars inventory.");
	}

}

public String[] getAdminCommandList() {
	return ADMIN_COMMANDS;
}

private boolean checkLevel(int level) {
	return (level >= REQUIRED_LEVEL);
}
}

 

 

Posted

its not your work ...

its shared by down !

 

Please give me a link or something so i can know if i'll lock this topic or not.

Posted

Hello people.

 

Since i helped a guy here  "http://www.maxcheaters.com/forum/index.php?topic=126391.0" with the same issue, i decided to share

the admin command //mass_create. How it works? You type //mass_create itemID amount (e.g //mass_create 57 1 -> This will add 1 adena to every online player)

 

Tested in L2J Interlude and works fine.

 

package net.sf.l2j.gameserver.handler.admincommandhandlers;

 

import java.util.StringTokenizer;

 

import net.sf.l2j.Config;

import net.sf.l2j.gameserver.datatables.ItemTable;

import net.sf.l2j.gameserver.handler.IAdminCommandHandler;

import net.sf.l2j.gameserver.model.GMAudit;

import net.sf.l2j.gameserver.model.L2World;

import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;

import net.sf.l2j.gameserver.serverpackets.ItemList;

import net.sf.l2j.gameserver.templates.L2Item;

 

 

 

public class AdminMassCreate implements IAdminCommandHandler {

private static final String[] ADMIN_COMMANDS = { "admin_mass_create" };

private static final int REQUIRED_LEVEL = Config.GM_CREATE_ITEM; // you need the same access level as create_item.

 

public boolean useAdminCommand(String command, L2PcInstance activeChar) {

if (!Config.ALT_PRIVILEGES_ADMIN) {

if (!(checkLevel(activeChar.getAccessLevel()) && activeChar.isGM()))

return false;

}

 

GMAudit.auditGMAction(activeChar.getName(), command, (activeChar.getTarget() != null?activeChar.getTarget().getName():"no-target"), "");

 

if (command.startsWith("admin_mass_create")) {

try {

String val = command.substring(17);

StringTokenizer st = new StringTokenizer(val);

if (st.countTokens() == 2) {

String id = st.nextToken();

int idval = Integer.parseInt(id);

String num = st.nextToken();

int numval = Integer.parseInt(num);

massCreate(activeChar, idval, numval);

} else if (st.countTokens() == 1) {

String id = st.nextToken();

int idval = Integer.parseInt(id);

massCreate(activeChar, idval, 1);

}

} catch (StringIndexOutOfBoundsException e) {

activeChar.sendMessage("Usage: //itemcreate <itemId> [amount]");

} catch (NumberFormatException nfe) {

activeChar.sendMessage("Specify a valid number.");

}

}

return true;

}

 

private void massCreate(L2PcInstance activeChar, int idval, int numval) {

for (L2PcInstance _players : L2World.getInstance().getAllPlayers()) {

if (_players == activeChar)

continue;

 

_players.getInventory().addItem("Admin", idval, numval, _players,

null);

 

ItemList il = new ItemList(_players, true);

_players.sendPacket(il);

_players.sendMessage("Admin award you " + numval

+ " item(s) number " + idval);

 

activeChar.sendMessage("You have spawned " + numval

+ " item(s) number " + idval + " in all chars inventory.");

}

 

}

 

public String[] getAdminCommandList() {

return ADMIN_COMMANDS;

}

 

private boolean checkLevel(int level) {

return (level >= REQUIRED_LEVEL);

}

}

 

 

 

 

Fail

Posted

Well, are you stupid or something ? Lighto helped a guy in this topic and he just shared the full code here so anyone can use it! he didn't say, WHOA IT IS UNIQUE, YOU CAN'T FIND IT ANYWHERE!

 

 

Here is the link with the guy he helped http://www.maxcheaters.com/forum/index.php?topic=126391.0"

 

You people seriously are soo dumb. Before you post something, think. It isn't difficult nor painfull. Really :)

Guest
This topic is now closed to further replies.


  • Posts

    • any compiler for protocol 464 high elves? help please!
    • Running ads or working with voice verification? We provide the essential tools for arbitrage, marketing, e-commerce, and anonymous operations! Ready-to-use Google Ads and Google Voice accounts — verified, warmed up, with logs and full access. Perfect for: ✔ Media buyers launching campaigns via Google ✔ Agencies and PPC specialists ✔ Businesses needing fast and safe ad launches without bans ✔ Users working with Google Voice (2nd-step verification, US numbers, etc.) ✔ Google Ads: accounts with budgets from €10 to $1000+, with or without verification ✔ All come with 2FA, backup email, cookies, and UserAgent Promo code: GOOGLE10 (10% discount) Payment: bank cards · crypto · other popular methods How to buy: ➡ Online Store: Click ➡ Telegram Bot: Click Other services: ➡ SMM Panel: Click Assortment: ➡Google Voice Accounts (GMAIL US NEW) | Year: 2024 (random) | Phone Verified | Price from: $9.00 ➡Google Voice Accounts (GMAIL US OLD) | Year: 2006–2018 | Phone Verified | Price from: $14.00 ➡Google Ads Account USA/EUROPE (UK, Germany, France, etc.) | Manually farmed 7+ days | Created ad account | Includes 2FA, backup codes, backup email, UserAgent, Cookies | Price from: $13.00 ➡Google Ads Account USA/EUROPE | VERIFICATION COMPLETED – €10 BILL | Manually farmed 7+ days | Ad created | Includes 2FA, backup email, UserAgent, Cookies | Price from: $55.00 ➡Google Ads Account EUROPE/USA with ad campaigns and spend $100/$500/$1000+ | Verification not completed | Full access & setup | Price from: $200.00 ➡Google Ads Account EUROPE/USA with ad campaigns and spend $100/$500/$1000+ | Verification completed | Full access & setup | Price from: $400.00 Regular buyers get extra discounts and promo codes! Support: ➡ Telegram: https://t.me/solomon_bog ➡ Discord: https://discord.gg/y9AStFFsrh ➡ WhatsApp: https://wa.me/79051904467 ➡ ✉ Email: solomonbog@socnet.store ➡ Telegram Channel: https://t.me/accsforyou_shop You can also use these contacts to: — Discuss wholesale orders — Propose partnerships (current partners: https://socnet.bgng.io/partners ) — Become a supplier SocNet — Digital Goods & Premium Subscriptions 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