Jump to content

Recommended Posts

Posted

broadcastUserInfo();

is pointless.

 

sendPacket(new PlaySound(1, "d08_f.ogg", 0, 0, 0, 0, 0));

is only sent to the killer, not the victim. Be sure you send it to the good guy (in case you want to put it for victim also).

 

Broadcasting the packet is pointless until you want anyone hear the sound, which gonna be fast annoying in a big pvp.

Posted

broadcastUserInfo();

is pointless.

 

sendPacket(new PlaySound(1, "d08_f.ogg", 0, 0, 0, 0, 0));

is only sent to the killer, not the victim. Be sure you send it to the good guy (in case you want to put it for victim also).

 

Broadcasting the packet is pointless until you want anyone hear the sound, which gonna be fast annoying in a big pvp.

Posted

 

Broadcasting the packet is pointless until you want anyone hear the sound, which gonna be fast annoying in a big pvp.

its what he wants.
Posted

 

Broadcasting the packet is pointless until you want anyone hear the sound, which gonna be fast annoying in a big pvp.

its what he wants.
Posted

 

Broadcasting the packet is pointless until you want anyone hear the sound, which gonna be fast annoying in a big pvp.

its what he wants.
Posted

broadcastuserinfo; lol,why;

 

it won't work like that.

 

### Eclipse Workspace Patch 1.0
#P L2_GameServer_It
Index: java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java
===================================================================
--- java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java	(revision 5585)
+++ java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java	(working copy)
@@ -36,6 +36,7 @@

import net.sf.l2j.Config;
import net.sf.l2j.L2DatabaseFactory;
import net.sf.l2j.gameserver.GameTimeController;
import net.sf.l2j.gameserver.GeoData;
import net.sf.l2j.gameserver.GmListTable;
@@ -159,6 +160,7 @@
import net.sf.l2j.gameserver.serverpackets.ObservationReturn;
import net.sf.l2j.gameserver.serverpackets.PartySmallWindowUpdate;
import net.sf.l2j.gameserver.serverpackets.PetInventoryUpdate;
+import net.sf.l2j.gameserver.serverpackets.PlaySound;
import net.sf.l2j.gameserver.serverpackets.PledgeShowInfoUpdate;
import net.sf.l2j.gameserver.serverpackets.PledgeShowMemberListDelete;
import net.sf.l2j.gameserver.serverpackets.PledgeShowMemberListUpdate;
@@ -5484,7 +5486,10 @@
	{
		// Add karma to attacker and increase its PK counter
		setPvpKills(getPvpKills() + 1);
-		
+
+		        PlaySound _snd = new PlaySound(1, "d08_f.ogg", 0, 0, 0, 0, 0);
+		        sendPacket(_snd);
+		        broadcastPacket(_snd); 
		// Send a Server->Client UserInfo packet to attacker with its Karma and PK Counter
		sendPacket(new UserInfo(this));
	}
@@ -9985,6 +9990,35 @@
		return _duelState;
	}

 

try this.

 

I delete the .ogg and now it works fine with enemy down from counter strike.

 

        PlaySound _snd = new PlaySound(1, "enemydown", 0, 0, 0, 0, 0);

        sendPacket(_snd);

        broadcastPacket(_snd);

Posted

broadcastuserinfo; lol,why;

 

it won't work like that.

 

### Eclipse Workspace Patch 1.0
#P L2_GameServer_It
Index: java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java
===================================================================
--- java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java	(revision 5585)
+++ java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java	(working copy)
@@ -36,6 +36,7 @@

import net.sf.l2j.Config;
import net.sf.l2j.L2DatabaseFactory;
import net.sf.l2j.gameserver.GameTimeController;
import net.sf.l2j.gameserver.GeoData;
import net.sf.l2j.gameserver.GmListTable;
@@ -159,6 +160,7 @@
import net.sf.l2j.gameserver.serverpackets.ObservationReturn;
import net.sf.l2j.gameserver.serverpackets.PartySmallWindowUpdate;
import net.sf.l2j.gameserver.serverpackets.PetInventoryUpdate;
+import net.sf.l2j.gameserver.serverpackets.PlaySound;
import net.sf.l2j.gameserver.serverpackets.PledgeShowInfoUpdate;
import net.sf.l2j.gameserver.serverpackets.PledgeShowMemberListDelete;
import net.sf.l2j.gameserver.serverpackets.PledgeShowMemberListUpdate;
@@ -5484,7 +5486,10 @@
	{
		// Add karma to attacker and increase its PK counter
		setPvpKills(getPvpKills() + 1);
-		
+
+		        PlaySound _snd = new PlaySound(1, "d08_f.ogg", 0, 0, 0, 0, 0);
+		        sendPacket(_snd);
+		        broadcastPacket(_snd); 
		// Send a Server->Client UserInfo packet to attacker with its Karma and PK Counter
		sendPacket(new UserInfo(this));
	}
@@ -9985,6 +9990,35 @@
		return _duelState;
	}

 

try this.

 

I delete the .ogg and now it works fine with enemy down from counter strike.

 

        PlaySound _snd = new PlaySound(1, "enemydown", 0, 0, 0, 0, 0);

        sendPacket(_snd);

        broadcastPacket(_snd);

Posted

broadcastuserinfo; lol,why;

 

it won't work like that.

 

### Eclipse Workspace Patch 1.0
#P L2_GameServer_It
Index: java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java
===================================================================
--- java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java	(revision 5585)
+++ java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java	(working copy)
@@ -36,6 +36,7 @@

import net.sf.l2j.Config;
import net.sf.l2j.L2DatabaseFactory;
import net.sf.l2j.gameserver.GameTimeController;
import net.sf.l2j.gameserver.GeoData;
import net.sf.l2j.gameserver.GmListTable;
@@ -159,6 +160,7 @@
import net.sf.l2j.gameserver.serverpackets.ObservationReturn;
import net.sf.l2j.gameserver.serverpackets.PartySmallWindowUpdate;
import net.sf.l2j.gameserver.serverpackets.PetInventoryUpdate;
+import net.sf.l2j.gameserver.serverpackets.PlaySound;
import net.sf.l2j.gameserver.serverpackets.PledgeShowInfoUpdate;
import net.sf.l2j.gameserver.serverpackets.PledgeShowMemberListDelete;
import net.sf.l2j.gameserver.serverpackets.PledgeShowMemberListUpdate;
@@ -5484,7 +5486,10 @@
	{
		// Add karma to attacker and increase its PK counter
		setPvpKills(getPvpKills() + 1);
-		
+
+		        PlaySound _snd = new PlaySound(1, "d08_f.ogg", 0, 0, 0, 0, 0);
+		        sendPacket(_snd);
+		        broadcastPacket(_snd); 
		// Send a Server->Client UserInfo packet to attacker with its Karma and PK Counter
		sendPacket(new UserInfo(this));
	}
@@ -9985,6 +9990,35 @@
		return _duelState;
	}

 

try this.

 

I delete the .ogg and now it works fine with enemy down from counter strike.

 

        PlaySound _snd = new PlaySound(1, "enemydown", 0, 0, 0, 0, 0);

        sendPacket(_snd);

        broadcastPacket(_snd);

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

    • LF the following chars / items on chronos   Elf - with class Aeore's Shillen Saint - this is possible if you had done a class change with a ticket in the past. Dwarf - with class Mystic Muse - same as above   Any greater jewels / Radiant Circle Grace or Foresight +5 and above Cloak      
    • First, you need to understand what you're doing and what you want to achieve. You have to choose a server core. After that, decide what you want your server to include, code it, modify the client to fit your server, go public, and drink champagne.   If you know how to code, creating a server is relatively easy — a few months of work and you can make it happen. Modifying the client is a completely different story. There’s a lack of tutorials, tools, and source materials. I’m currently working on the client myself, and I’ve already spent over three weeks just trying to get started due to the lack of information. If you don’t have the knowledge and experience, you’ll need a team and a bag of money — but realistically, it just won’t succeed.
    • 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
  • 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..