B0nd Posted July 22, 2017 Posted July 22, 2017 Hello guys... i need to add skill or something like at RaidBosses and when hes take dmg from ppl to Flag all players near rb... if any1 can help me?? ty!! Quote
0 Θα Σπασω Κουπες Posted July 22, 2017 Posted July 22, 2017 go on L2RaidBossInstance.java add the @override method @Override public void doAttack(final L2Character attacker) { } And inside this add your code for (L2PcInstance player : getKnownList().getKnownPlayers()) { player.setPvPFlag(1); } or something like that... But consider that you need to add a threadpool or a check to avoid this to be happen on every hit cause is useless flame. Quote
0 Tryskell Posted July 22, 2017 Posted July 22, 2017 You must override onEvtAttacked. Flagging all people is "costy" since you mustn't control who is actually flagged and it's anyway part of the flag effect (refresh), but flagging only the attacker is easy. Quote
0 B0nd Posted July 23, 2017 Author Posted July 23, 2017 go on L2RaidBossInstance.java add the @override method And inside this add your code or something like that... But consider that you need to add a threadpool or a check to avoid this to be happen on every hit cause is useless flame. i need more help :) You must override onEvtAttacked. Flagging all people is "costy" since you mustn't control who is actually flagged and it's anyway part of the flag effect (refresh), but flagging only the attacker is easy. you can help me more?? i dont understand you.... :( Quote
Question
B0nd
Hello guys... i need to add skill or something like at RaidBosses and when hes take dmg from ppl to Flag all players near rb...
if any1 can help me?? ty!!
3 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.