Jump to content
  • 0

Tattoos updater


Question

Posted

Hello, I need your help. I need to create NPC that will check lvl tattoo (7 lvl tattoo), and depending on what lvl you, when you click "Upgrade", gets some reward and your tattoo, and then gives the better tattoo. Please tell me at least a template script or function to give, take, check.

Script in JAVA!

Recommended Posts

  • 0
Guest Elfocrash
Posted

check the bank .deposit command , the way it gets and gives and item. Then it is simple t make what you need with just a bypass

  • 0
Posted

dont need to be like the .deposit command. Just create a simple multisell and for the consuming item id put the id of the old tattoo. Just simple as that:

<?xml version="1.0" encoding="UTF-8" ?> 
<list>
<item id="1">
  <ingredient id="<old tattoo id here" count="1" /> 
  <production id="<Upgraded Tattoo id here" count="1" /> 
  </item>
</list>

  • 0
Posted

dont need to be like the .deposit command. Just create a simple multisell and for the consuming item id put the id of the old tattoo. Just simple as that:

<?xml version="1.0" encoding="UTF-8" ?> 
<list>
<item id="1">
  <ingredient id="<old tattoo id here" count="1" /> 
  <production id="<Upgraded Tattoo id here" count="1" /> 
  </item>
</list>

I wrote, I do not have a trader! I need NPC, when pressing a button, change old tdttoo to a new tattoo! On JAVA! Need functions in Java to add, take items, see items from inventory

 

  • 0
Posted

Try this one:

if (command.eqals("upgradetattoo"))
{
		if (activeChar.getInventory().getInventoryItemCount(<old tatto id, 0) >= 1)
		{
			if (!activeChar.reduceAdena("UpgradedTattoo", 1, activeChar, false))
			{
				return false;
			}
			activeChar.getInventory().addItem("<tattoo name>", <tattoo id>, 1, activeChar, null);
			activeChar.getInventory().updateDatabase();
			activeChar.sendMessage("Your tattoo has been upgraded");
		}
		else
		{
			activeChar.sendMessage("Please get a normal tattoo first");
		}
	}

 

or you can replace your banking.java with this one:

import com.l2jserver.Config;
import com.l2jserver.gameserver.handler.IVoicedCommandHandler;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;

/**
* This class trades Gold Bars for Adena and vice versa.
* @author Ahmed
*/
public class Banking implements IVoicedCommandHandler
{
private static final String[] _voicedCommands =
{
	"bank",
	"withdraw",
	"deposit",
"upgradetattoo"
};

@Override
public boolean useVoicedCommand(String command, L2PcInstance activeChar, String params)
{
	if (command.equals("bank"))
	{
		activeChar.sendMessage(".deposit (" + Config.BANKING_SYSTEM_ADENA + " Adena = " + Config.BANKING_SYSTEM_GOLDBARS + " Goldbar) / .withdraw (" + Config.BANKING_SYSTEM_GOLDBARS + " Goldbar = " + Config.BANKING_SYSTEM_ADENA + " Adena)");
	}
	else if (command.equals("deposit"))
	{
		if (activeChar.getInventory().getInventoryItemCount(57, 0) >= Config.BANKING_SYSTEM_ADENA)
		{
			if (!activeChar.reduceAdena("Goldbar", Config.BANKING_SYSTEM_ADENA, activeChar, false))
			{
				return false;
			}
			activeChar.getInventory().addItem("Goldbar", 3470, Config.BANKING_SYSTEM_GOLDBARS, activeChar, null);
			activeChar.getInventory().updateDatabase();
			activeChar.sendMessage("Thank you, you now have " + Config.BANKING_SYSTEM_GOLDBARS + " Goldbar(s), and " + Config.BANKING_SYSTEM_ADENA + " less adena.");
		}
		else
		{
			activeChar.sendMessage("You do not have enough Adena to convert to Goldbar(s), you need " + Config.BANKING_SYSTEM_ADENA + " Adena.");
		}
	}
else if (command.eqals("upgradetattoo"))
{
		if (activeChar.getInventory().getInventoryItemCount(<old tatto id, 0) >= 1)
		{
			if (!activeChar.reduceAdena("UpgradedTattoo", 1, activeChar, false))
			{
				return false;
			}
			activeChar.getInventory().addItem("<tattoo name>", <tattoo id>, 1, activeChar, null);
			activeChar.getInventory().updateDatabase();
			activeChar.sendMessage("Your tattoo has been upgraded");
		}
		else
		{
			activeChar.sendMessage("Please get a normal tattoo first");
		}
	}
	else if (command.equals("deposit"))
	{
		if (activeChar.getInventory().getInventoryItemCount(57, 0) >= Config.BANKING_SYSTEM_ADENA)
		{
			if (!activeChar.reduceAdena("Goldbar", Config.BANKING_SYSTEM_ADENA, activeChar, false))
			{
				return false;
			}
			activeChar.getInventory().addItem("Goldbar", 3470, Config.BANKING_SYSTEM_GOLDBARS, activeChar, null);
			activeChar.getInventory().updateDatabase();
			activeChar.sendMessage("Thank you, you now have " + Config.BANKING_SYSTEM_GOLDBARS + " Goldbar(s), and " + Config.BANKING_SYSTEM_ADENA + " less adena.");
		}
		else
		{
			activeChar.sendMessage("You do not have enough Adena to convert to Goldbar(s), you need " + Config.BANKING_SYSTEM_ADENA + " Adena.");
		}
	}
	else if (command.equals("withdraw"))
	{
		if (activeChar.getInventory().getInventoryItemCount(3470, 0) >= Config.BANKING_SYSTEM_GOLDBARS)
		{
			if (!activeChar.destroyItemByItemId("Adena", 3470, Config.BANKING_SYSTEM_GOLDBARS, activeChar, false))
			{
				return false;
			}
			activeChar.getInventory().addAdena("Adena", Config.BANKING_SYSTEM_ADENA, activeChar, null);
			activeChar.getInventory().updateDatabase();
			activeChar.sendMessage("Thank you, you now have " + Config.BANKING_SYSTEM_ADENA + " Adena, and " + Config.BANKING_SYSTEM_GOLDBARS + " less Goldbar(s).");
		}
		else
		{
			activeChar.sendMessage("You do not have any Goldbars to turn into " + Config.BANKING_SYSTEM_ADENA + " Adena.");
		}
	}
	return true;
}

@Override
public String[] getVoicedCommandList()
{
	return _voicedCommands;
}
}

  • 0
Posted

I do this:

 

package silentium.gameserver.model.actor.instance;

import gnu.trove.map.hash.TIntIntHashMap;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import silentium.gameserver.data.cache.HtmCache;
import silentium.gameserver.data.multilang.MultilangHtmPath;
import silentium.gameserver.model.L2ItemInstance;
import silentium.gameserver.model.L2Skill;
import silentium.gameserver.model.actor.L2Character;
import silentium.gameserver.model.actor.L2Summon;
import silentium.gameserver.network.SystemMessageId;
import silentium.gameserver.network.serverpackets.ActionFailed;
import silentium.gameserver.network.serverpackets.NpcHtmlMessage;
import silentium.gameserver.network.serverpackets.SystemMessage;
import silentium.gameserver.tables.NpcBufferTable;
import silentium.gameserver.tables.SkillTable;
import silentium.gameserver.taskmanager.AttackStanceTaskManager;
import silentium.gameserver.templates.chars.L2NpcTemplate;


public class L2TattooMenagerInstance extends L2NpcInstance
{
private static final Logger _log = LoggerFactory.getLogger(L2TattooMenagerInstance.class.getName());

private static TIntIntHashMap pageVal = new TIntIntHashMap();

public L2TattooMenagerInstance(int objectId, L2NpcTemplate template)
{
	super(objectId, template);
}
@Override
public void onBypassFeedback(L2PcInstance player, String command)
{
	if (player == null)
	{
		return;
	}

	L2Character target = player;
	int npcId = getNpcId();

                            if (command.startsWith("upgrade"))
	{
		if (player.getInventory().getInventoryItemCount(10041, 0) >= 1)
		{
			player.destroyItemByItemId("Toti Tattoo Level 1", 10041, 1, player, false);
			player.getInventory().addItem("Toti Tattoo Level 2", 10042, 1, player, null);
			player.getInventory().updateDatabase();
			player.sendMessage("3lvl");
		}
		else if (player.getInventory().getInventoryItemCount(10042, 0) >= 1)
		{
			player.destroyItemByItemId("Toti Tattoo Level 2", 10042, 1, player, false);
			player.getInventory().addItem("Toti Tattoo Level 3", 10043, 1, player, null);
			player.getInventory().updateDatabase();
			player.sendMessage("4lvl");
		}
		else if (player.getInventory().getInventoryItemCount(10043, 0) >= 1)
		{
			player.destroyItemByItemId("Toti Tattoo Level 3", 10043, 1, player, false);
			player.getInventory().addItem("Toti Tattoo Level 4", 10044, 1, player, null);
			player.getInventory().updateDatabase();
			player.sendMessage("4lvl");
		}
		else if (player.getInventory().getInventoryItemCount(10044, 0) >= 1)
		{
			player.destroyItemByItemId("Toti Tattoo Level 4", 10044, 1, player, false);
			player.getInventory().addItem("Toti Tattoo Level 5", 10045, 1, player, null);
			player.getInventory().updateDatabase();
			player.sendMessage("5lvl");
		}
		else if (player.getInventory().getInventoryItemCount(10045, 0) >= 1)
		{
			player.destroyItemByItemId("Toti Tattoo Level 5", 10045, 1, player, false);
			player.getInventory().addItem("Toti Tattoo Level 6", 10046, 1, player, null);
			player.getInventory().updateDatabase();
			player.sendMessage("6lvl");
		}
		else if (player.getInventory().getInventoryItemCount(10046, 0) >= 1)
		{
			player.destroyItemByItemId("Toti Tattoo Level 6", 10046, 1, player, false);
			player.getInventory().addItem("Toti Tattoo Level 7", 10047, 1, player, null);
			player.getInventory().updateDatabase();
			player.sendMessage("7lvl");
		}
		else if (player.getInventory().getInventoryItemCount(10047, 0) >= 1);
		{
			player.sendMessage("Maximum");
		}
	}
}
}

 

and in html:

<a action="bypass -h npc_%objectId%_upgrade">Update</a></br>

 

Not working(

  • 0
Posted

where did you put that code? you tried the .upgrade voiced command?

I dont want voice command. I put in file L2TattooMenagerInstance.java, and file i put intro src\silentium\gameserver\model\actor\instance

I need: when in NPC dialog click button "Upgrade", event upgrade working and give my new tattoo

  • 0
Posted

you have to create a .py file for that like a scheme buffer or so. The one you created is just a simple voiced command

.py its a Pyton, i need a Java. And voiced command its a command in chat, no?

  • 0
Posted

But i need: when i click button "Update", in NPC dialog, my tattoo upgrade. Please help, maybe tutorial, how to do this

 

do a bypass of the voiced command they give you...

Guest
This topic is now closed to further replies.


  • Posts

    • The server has been online and stable for over 2 months now, and we’re still going strong! No wipes, no shortcuts ~ just continuous work, daily fixes, events, and improvements to ensure the best possible experience.   Great News! 🔥 CHAPTER II IS COMING — GRACIA FINAL 🔥 On February 16, L2Elixir enters a new era. The server will be officially updated to Gracia Final, opening Chapter II of our journey. Expect new content, improvements, and surprises that will refresh the gameplay while keeping the classic Gracia Final spirit alive.   More challenges, more competition, and more reasons to log in.   📅 Update Date: February 16 ⚔️ Chapter II: Gracia Final This is not a reset. This is evolution.   Prepare yourselves — Chapter II begins soon.   Website: https://l2elixir.org/ Discord: https://discord.gg/5ydPHvhbxs    
    • Server owners, Top.MaxCheaters.com is now live and accepting Lineage 2 server listings. There is no voting, no rankings manipulation, and no paid advantages. Visibility is clean and equal, and early listings naturally appear at the top while the platform grows. If your server is active, it should already be listed. Submit here 👉https://Top.MaxCheaters.com This platform is part of the MaxCheaters.com network and is being built as a long-term reference point for the Lineage 2 community. — MaxCheaters.com Team
    • Hello! We are Genesis, small team that works on new Lineage 2 project. Our goal with this project is to create a fresh new place to play — built around real community feedback, with no aggressive pay-to-win donations and with carefully thought-out quality-of-life improvements, balance changes etc. We believe that even tho we all love this game, everyone has at least one or two things they would like to change in the game to make it more enjoyable. Thats why we want the comunity feedback to shape our server. Main information about the server: • Interlude Classic version • Rates: EXP x4 SP x2 Loot x2, Spoil x2 (not set in stone, might be changed) • Local & Server-Side Dualbox Protection • Complete, Clear Website with Integrated Account Panel (Game account creation, direct communication with support, bug reporting, voting and reward system) • Launcher – External Game Login System: manage all your accounts inside the launcher, “Play” button logs you directly into the game server Here are list of few changes we already added/decided to add to the server: • Reworked Client to fit interlude Era with upgraded Classic Ui • Custom Antibot system • Custom AntiDualBox System • Offline shops • Offline shop with buffs (available only in towns) • Mass Sweeper added to the game • Newbie buffs available all the way to lvl 76 (nothing crazy, but its free) • Slight balance change to Destroyer damage with Polearm and Cancel spell from SPS • PvP zones on every Epic spawn spot • Overbuffing blocked • And more! Since we put big focus on community feedback and suggestions, we are looking for people for our internal tests, that will discuss whether current changes „fit” into the game and maybe suggest some changes themselves. If what you’ve just read sounds interesting to you, if you want to help creating server fitted for you, join our server Discord. Help us to understand what Lineage 2 players in 2026 actually expect and need — so we can meet those expectations and avoid becoming just another server that dies a natural death.     Even if you’re not interested in playing right now, but you are a long-time Lineage 2 player, feel free to join our community. We would greatly appreciate your experience and feedback to help us improve and develop our project. Join the growing L2Genesis community: https://discord.gg/mcuHsQzNCm Also check our website: https://l2genesis.com/
    • I messaged you privately. If you want me to help, message me privately.  
    • Hello guys I’m new here, also I’m new on those things I  don’t know anything about programming but I need some help about many things …I want to open a faction server  Firstly , I want to make a classic but with interlude staff like skills items level etc ..so is there any project server interlude -classic ..is there any interlude -classic client ?  what other server doing ?  can I go with interlude and add a patch-interface that will work for all people whos gonna join the server,  that will have inventory stats bars etc from classic , lobby create character ..etc and L2Fonts  for title and names also chat letters  like classic ?  I read about Lucera 2 has an interlude -classic client is it correct ? I also read about a multi protocol ..   also I saw that there is a lot of classic chronicles like 2.0 2.5 2.6 2.7 2.9.5 3.0  what are the differences    I know that the 3.0 add kamael which I don’t want    in conclusion.. I want full interlude staff but classic things    what should I do with client , server files  which is the way to go and with what files    if someone can answer me to all  sorry for my bad English 
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..