Hi guys i need some java help so here we go:
reward players for a pvp kill in a related zone here is the code:
// pvp reward
if (isInsideZone(ZONE_PVP))
{
addItem("Loot", 8732, 1, this, true);
sendMessage("You won 1 lifestone for a pvp kill!");
}
How can i add 1 more zone?
Also About pvp counterstike sounds
code:
+ case 1:
+ PlaySound _snd1 = new PlaySound(1, "firstblood", 0, 0, 0, 0, 0);
+ sendPacket(_snd1);
+ break;
+
+ case 2:
+ PlaySound _snd2 = new PlaySound(1, "doublekill", 0, 0, 0, 0, 0);
+ sendPacket(_snd2);
+ break;
+
+ case 3:
+ PlaySound _snd3 = new PlaySound(1, "triplekill", 0, 0, 0, 0, 0);
+ sendPacket(_snd3);
+ break;
+
+ case 4:
+ PlaySound _snd4 = new PlaySound(1, "megakill", 0, 0, 0, 0, 0);
+ sendPacket(_snd4);
+ break;
+
+ case 5:
+ PlaySound _snd5 = new PlaySound(1, "ultrakill", 0, 0, 0, 0, 0);
+ sendPacket(_snd5);
+ break;
+
+ case 10:
+ PlaySound _snd10 = new PlaySound(1, "monsterkill", 0, 0, 0, 0, 0);
+ sendPacket(_snd10);
+ break;
+
+ case 15:
+ PlaySound _snd15 = new PlaySound(1, "killingspree", 0, 0, 0, 0, 0);
+ sendPacket(_snd15);
+ break;
+ default:
+ ;
+ }
+
how can i make it to play sound to all players in l2 world and not only to the killing spree person?