martuxas1 Posted March 9, 2018 Posted March 9, 2018 Hello, i wanna do if killed like baium, give for all online players item, or for all players who do damage to npc. pack l2jfrozen Quote
0 Kara Posted March 9, 2018 Posted March 9, 2018 1 hour ago, SweeTs said: Unless you override it, then hell yeah, you have its own scenario. Actualy it's the correct way, you DO NOT mess core with stupid addition(s). You simply code your own script, keep it organized and clean. If you ask me. Also, WTF that frozen, there is no baium script?!?! o.O At least I can't find it. Bitch please, open L2J interlude files. If you find 1 gb script i'll quit for each one x 30 days maxcheaters Quote
0 SweeTs Posted March 9, 2018 Posted March 9, 2018 20 minutes ago, Evie Frye said: If you find 1 gb script i'll quit for each one x 30 days maxcheaters No idea what you are talking about, but it's OK. :D Quote
0 Kara Posted March 9, 2018 Posted March 9, 2018 5 minutes ago, SweeTs said: No idea what you are talking about, but it's OK. :D For some reason after i press Submit half of the text i wrote disappear. The complete text were: Get L2J Interlude source and if you find at least 1 Grandboss AI inside i'll wait maxcheaters. It doesn't even have Core AI Quote
0 SweeTs Posted March 9, 2018 Posted March 9, 2018 Ha! Clean L2J maybe not.. But checking frozen scripts, there are few AIs, so dunno why there is no GB AIs, else it's "hidden, dare you to find me!". Anyway.. It's frozen after all :D Quote
0 Kara Posted March 9, 2018 Posted March 9, 2018 6 minutes ago, SweeTs said: Ha! Clean L2J maybe not.. But checking frozen scripts, there are few AIs, so dunno why there is no GB AIs, else it's "hidden, dare you to find me!". Anyway.. It's frozen after all :D http://subversion.assembla.com/svn/L2jFrozenInterlude/trunk/gameserver/head-src/com/l2jfrozen/gameserver/ai/special/ Quote
0 camenomat0 Posted March 9, 2018 Posted March 9, 2018 9 minutes ago, Evie Frye said: them special ais for super devs 1 Quote
0 SweeTs Posted March 9, 2018 Posted March 9, 2018 God, "../ai/SPECIAL/" :D So, yeah. That's the place you should add your custom code, under doDie. Quote
0 camenomat0 Posted March 9, 2018 Posted March 9, 2018 20 minutes ago, SweeTs said: else it's "hidden, dare you to find me!". Anyway.. It's frozen after all :D unique way to be challenging for them superb devs in order to open same features serevrs :P 1 Quote
0 Mobius Posted March 9, 2018 Posted March 9, 2018 (edited) private static int MONSTER_ID = 11111; public RewardAllOnlineOnDeath(int questId, String name, String descr) { super(questId, name, descr); addKillId(MONSTER_ID); } @Override public String onKill(L2NpcInstance npc, L2PcInstance killer, boolean isPet) { for (L2PcInstance player : L2World.getInstance().getAllPlayers()) { player.addItem("RewardAllOnlineOnDeath", 50, 1, player, true); // Item id 50 and count 1. } return super.onKill(npc, killer, isPet); } public static void main(String[] args) { new RewardAllOnlineOnDeath(-1, "RewardAllOnlineOnDeath", "custom"); } This will work as long as you have Java scripts enabled. Edited March 9, 2018 by Mobius Quote
0 martuxas1 Posted March 9, 2018 Author Posted March 9, 2018 8 hours ago, melron said: You have to take a look in L2GrandBossInstance at doDie method.. You can use knownlist to reward all players with X distance from the raid instead of mesh with damages ... if (getNpcId() == baiumId) getKnownList().getKnownPlayersInRadius(3500).forEach(pl -> pl.getInventory().addItem("reward", 57, 5, pl, null)); in case you want all online players i wont help you.. You have admin rights so you can check how mass reward working when kill the boss all works and all get item, but don't show in systemsg and i wanna create the send massage but i get error [javac] activeChar.sendMessage("You get all raidboss coin [Event Ended]"); [javac] ^ [javac] symbol: variable activeChar [javac] location: class L2GrandBossInstance [javac] 1 error @Override public boolean doDie(final L2Character killer) { if (getNpcId() == 25158) { getKnownList().getKnownPlayersInRadius(3500).forEach(pl -> pl.getInventory().addItem("reward", 3481, 2, pl, null)); activeChar.sendMessage("You get all raidboss coin [Event Ended]"); } Quote
0 SweeTs Posted March 10, 2018 Posted March 10, 2018 if (getNpcId() == 25158) { getKnownList().getKnownPlayersInRadius(3500).forEach(pl -> { pl.getInventory().addItem("reward", 3481, 2, pl, null)); pl.sendMessage("You get all raidboss coin [Event Ended]"); }); } Quote
0 martuxas1 Posted March 10, 2018 Author Posted March 10, 2018 (edited) 59 minutes ago, SweeTs said: if (getNpcId() == 25158) { getKnownList().getKnownPlayersInRadius(3500).forEach(pl -> { pl.getInventory().addItem("reward", 3481, 2, pl, null)); pl.sendMessage("You get all raidboss coin [Event Ended]"); }); } like always thanks :) Edited March 10, 2018 by martuxas1 Quote
0 L2J NexuS Posted March 10, 2018 Posted March 10, 2018 13 hours ago, SweeTs said: Unless you override it, then hell yeah, you have its own scenario. Actualy it's the correct way, you DO NOT mess core with stupid addition(s). You simply code your own script, keep it organized and clean. If you ask me. Also, WTF that frozen, there is no baium script?!?! o.O At least I can't find it. Well i guess i was right from the first moment :P Quote
Question
martuxas1
Hello, i wanna do if killed like baium, give for all online players item, or for all players who do damage to npc. pack l2jfrozen
28 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.