Jump to content

arm4729

Members
  • Posts

    231
  • Credits

  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by arm4729

  1. i would love to play on mxc server especially pvp high rate custom with raid loop maybe add server junction and new season feature
  2. Hey guys im spectating on this forum since DragonHunter exploits and magaki13 database password leak , i personally think this is best l2 forum .... there has to be a way to get new members and more activity if this is what this thread is about ....
  3. you did use best words to describe what im feeling , thats main reason why mid rate server fail , when you got a big map designated for x amount of players (3-5k at least active) and you don't have that players because you are not official , you have to think to work something out..... and l2extreme had the chance to be running a great formula for its community(economy/raids/etc) , i just can't say or do nothing more than hope it will be a better update.. for me personally l2extreme in last 2 years was only server where i played more than 2 days in a row
  4. Hey , first of all i'm not trying to be rude , effort is appreciated . by killing i mean there is no more same features that i used to like , because of this change old extreme is not existing anymore , if something does not exist how can be alive ? hope you got ideea
  5. Hey , i will be there for raid pvp
  6. GJ , you just killed my favorite pvp server Anyway wish you good luck with project hope will have better pvp time
  7. can you explain please why not to show ip on cb ?
  8. Hello guys , i need help in this problem , i have an Random Chest item , on item click , packet TutorialHtml is sent to client with a html , all good until here but when i try to use that tutorial html to do some bypass is not working buttons and nothing in console , anyone know something about this please ? i have for ex bp_dressme 1 -> bypass to get skin (1) / is working on community board , is working on .dressme menu (normal html window) , but the bypass in tutorial window wont work .. I MEAN NOT 1 SINGLE BYPASS IS WORKING FROM TUTORIALHTML WINDOW , THAT SMALL WINDOW ON RIGHT SIDE ... ///found on a forum search that RequestTutorialPassCmdToServer.java was what i need
  9. give this man a medal , i mean you can be best developer but we have to say the guy is ass slapping l2 community for some time bad news / good news i personaly hope this maybe get bigger and people come back to play l2 with the hype
  10. Maybe you code is working , and your zones work too , but you have ip protection to avoid players dual box get reward , did you try with other player / pc ?
  11. maybe you have same ip protection ?
  12. if(isInsideZone(ZoneId.CUSTOMPVP)&&(Config.ENABLE_PVP_FEATURES)) { pvpReward(); } else if (isInsideZone(ZoneId.CUSTOMPVP)&&(!Config.ENABLE_PVP_FEATURES)) { sendMessage("Reward Disabled"); return }
  13. Hey thank you for reply , hh for me was easier to move everything from my acis pack to tesla pack because autobots was there lol
  14. Anyway , there are 100% infected hardware of lineage 2 players , mining monero or whatever for some guys right ? :)
  15. yes this is what it does but you need to make it run when players get class changed , you need to search for "public boolean setActiveClass(int classIndex)" or something like this fiind exact moment when class is changed and after that add checkAllowedSkills(); or restoreSkills(); i try to help you but i have 0 experience in substack type servers
  16. Thank you all for help but Tryskell give me best hint / fact :D after a few hours (2 or 3) of looking to RewardInfo/Attackable/Aggro .. found that answer to my question , wich was how i can get the total amount of damage killer or other instance did to a monster was "damageMap.get(killer)"
  17. I dont have a .getDamage() method in Player instance i get this error where do i have to add this ? in player.java ? +public List<Player > Attacker = new ArrayList<>(); + public final Player getDamageDealer() + { + int dmg = 0; + Player DamageDealer = null; + for (Player p : Attacker) + { + if (p.getDamage() > dmg) + { + dmg = p.getDamage(); + DamageDealer = p; + } + } + return DamageDealer; + }
  18. look one way is go to player.java or pcisntance.java what you have and search for public boolean setActiveClass(int classIndex) search for restoreHenna(); or restoreSkills(); rewardSkills(); regiveTemporarySkills(); and try to add checkAllowedSkills(); or restoreSkills();
  19. public class Antharas extends CustomBoss { @Override public void onDie(Monster boss, Player killer) { Map<Player, Integer> damageMap = boss.getDamageMap(); List<Player> canGiveTo = new ArrayList<>(); for (Player p : damageMap.keySet()) { if (p.isOnline() && !p.isDead() && p.isInsideRadius(boss, 1200, false, false)) canGiveTo.add(p); } if (canGiveTo.isEmpty()) return; if (canGiveTo.size() < Config.SN_DROP.getValue()) { String names = ""; int avail = Config.SN_DROP.getValue(); for (Player p : canGiveTo) { p.addItem("drop", Config.SN_DROP.getId(), 1, null, true); avail--; names += p.getName()+", "; } for (int i = 0; i < avail; i++) canGiveTo.get(Rnd.get(canGiveTo.size())).addItem("drop", Config.SN_DROP.getId(), 1, null, true); Broadcast.announceToOnlinePlayers("[REBIRTH CHEST]Congratulations to the player "+names.substring(0, names.length()-2)+(" he obtained the Rebirth Chest from slaying grand boss "+boss.getName()+" !!")); } else { List<Player> given = new ArrayList<>(); for (int i = 0; i < Config.SN_DROP.getValue(); i++) { Player p = null; do { p = canGiveTo.get(Rnd.get(canGiveTo.size())); } while (given.contains(p)); if (p == null) return; p.addItem("drop", Config.SN_DROP.getId(), 1, null, true); given.add(p); } String names = ""; for (Player p : given) names += p.getName()+", "; Broadcast.announceToOnlinePlayers("[REBIRTH CHEST]Congratulations to the player "+names.substring(0, names.length()-2)+(" he obtained the Rebirth Chest from slaying grand boss "+boss.getName()+" !!")); } } hey , thanks for reply I think already i have an list of players that did dmg do boss , if im wrong correct me .. i need to know how to get like for each player the total dmg that dealt to boss
  20. player.giveAvailableSkills(); player.sendSkillList(); player.checkAllowedSkills(); maybe this will help you
  21. Hello guys , i need to know how you get value of how much dmg a player did to a raidboss/monster , or if i can get a list of players that dmg a monster/rb and how much they did , any hint please ?
  22. why? //edit: problem was i was using mysql service istead of maria service (ave marry)
  23. thank you ! //edit can anyone help me add this to acis ?
×
×
  • Create New...