Jump to content
  • 0

Question

12 answers to this question

Recommended Posts

  • 0
Posted

Bump with a question.

 

I've made the files to create a new channel but there is a problem :

 

How can i bind a button to this channel? (Example : ! for shout, $ for my channel.)

  • 0
Posted

I've modified the Say2.java and add the 2 handlers that i want to create.

After i've create the 2 handler in data/handlers/chathandlers

 

The core part is over now? Do you know where is clientcoded?

  • 0
Posted

I've modified the Say2.java and add the 2 handlers that i want to create.

After i've create the 2 handler in data/handlers/chathandlers

 

The core part is over now? Do you know where is clientcoded?

 

About core, you're ok once you created handlers and registered them in master handler.

 

About client, got no clue - not my cup of tea ;D.

  • 0
Posted

Just modify ChatAll.java.. Make a boolean, and if text begins with your prefix, for example ~ say the text in the way you want(your channel) and set the boolean to false. Then say the text normally if the boolean is true and not false. I hope you get me.

  • 0
Posted

                         if ((text.charAt(0) == ':') && activeChar.isVIP())
		{
			CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getAppearance().getVisibleName(), "[VIP] "+text);
                                Collection<L2PcInstance> plrs = activeChar.getKnownList().getKnownPlayers().values();

			for (L2PcInstance player : plrs)
				{
					if (player.isVIP())
					{
						player.sendPacket(cs);
					}
				}
			        activeChar.sendPacket(cs);
                          }

 

Work for this L2Pcinstance but not for others players.

  • 0
Posted

if ((text.charAt(0) == ':') && activeChar.isVIP())
		{
			CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getAppearance().getVisibleName(), "[VIP] "+text);
                              for (L2PcInstance player : L2World.getInstance().getAllPlayersArray())
				{
					if (player.isVIP())
					{
						player.sendPacket(cs);
					}
				}
			        
                          }

 

Working.

Thanks both to you.

 

Edit : I guess colors for chat are in client?

 

Edit 2 :

 

if ((text.charAt(0) == ':') && activeChar.isVIP())
		{
			StringBuffer temptext = new StringBuffer(text);
			temptext.deleteCharAt(0);
			String text2 = "";
			text2 = text2+ temptext.toString();
			text2 = ':' + ' ' + text; // For an easy read.
			CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getAppearance().getVisibleName(), "[VIP Channel] "+text2);

 

I want to delete the character ':' from the string. INGAME it's look like : Pseudo: [VIP Channel] 122:test

Why 122 and not : "Pseudo: [VIP Channel] : text" ?

  • 0
Posted

                         if ((text.startsWith(":") && activeChar.isVIP())
		{
			CreatureSay cs = new CreatureSay(activeChar.getObjectId(), 15, activeChar.getName(), "[VIP] "+text.substring(1));
                                Collection<L2PcInstance> plrs = L2World.getInstance().getAllPlayers().values();

			for (L2PcInstance player : plrs)
				{
					if (player.isVIP())
					{
						player.sendPacket(cs);
					}
				}
			        activeChar.sendPacket(cs);
                          }

Like this it should work fine. The 15 i put is a red color of text. Try the types in Say2, for example Say2.TRADE and choose the one you like.

  • 0
Posted

if ((text.startsWith(":") && activeChar.isVIP()))
		{
			CreatureSay cs = new CreatureSay(activeChar.getObjectId(), Say2.PARTYROOM_ALL, activeChar.getName(), "[Demon Channel] "+text.substring(1));
			for (L2PcInstance player : L2World.getInstance().getAllPlayersArray())
				{
					if (player.isVIP())
					{
						player.sendPacket(cs);
					}
				}
			        
            }

 

Is finally the good code. Thanks An4rchy.

Guest
This topic is now closed to further replies.


  • Posts

    • Hello everyone, Lineage II clan MightyTeam is reopening recruitment and looking for ambitious, active players who want to compete seriously and grow together. We are building a disciplined and organized environment focused on teamwork, strategy, and long-term success. What we offer: Strong and experienced leadership, Fair and respectful treatment for every member, Organized clan structure and tactical gameplay, Competitive mentality with clear goals, Stable and drama-free environment, What we expect: Activity and willingness to improve, Teamplay and communication, Respect toward clan members, Motivation to compete and dominate, No politics. No toxicity. Only focused players with the right mentality.   If you are interested in joining MightyTeam, contact on Discord: tzelal.  <-- there is a dot  or Telegram tz3gg. 
    • Lol thanks no l better get Acis /Lucera/Mobius and will squeeze more profit that your crazy ass price files for fucks know what. Even Reborn was smart enough use Acis after Lucera to squeeze shit a lot of money 😁 Fucking hell 15 grants lol 😂 
    • It seems the SkyLord is simply not familiar with what l2-scripts and Bonux represents today. His opinion is likely based on our older materials — which is understandable. We haven't been standing still. Over the years, the studio has moved to a fundamentally different level of development. Our early builds are still available on the legacy site at very accessible prices — and they remain entirely viable for launching a project. As practice shows, solid servers can still be built on them, albeit with greater effort. As for the market — Classic, Essence, and Main have long been running on l2-scripts engines, and the majority of successful servers have, at one stage or another, used our source code as their foundation. This isn't self-promotion — it's the history of the industry. Today, for established projects with a reputation, we offer a different format: private partnership with individual terms tailored to your business goals. If you're interested in long-term collaboration — we're open to the conversation. We have solutions for every level — from newcomers to top-tier projects. Feel free to reach out, and we'll be happy to discuss.
    • implemented Black Market NPC that can copy and make discount on desired multisells , spawns despawns and fully configurable with schedule and random timer   implemented Dungeon Finder , fully configurable for custom dungeons and can be accessed from 2-9 party size. Your choice! 
    • https://en.l2oops.com/chronicle/lineage-2-essence   almost all the servers on here are using l2scripts or bonux files..
  • 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..