Jump to content

Elfo

Legendary Member
  • Posts

    2,009
  • Credits

  • Joined

  • Last visited

  • Days Won

    51
  • Feedback

    0%

Everything posted by Elfo

  1. Προφανώς ειναι bot, σιγά μην ήταν ο ίδιος τόσο active.
  2. "είναι φόρουμ τεχνολογίας" Χαζέψατε όλοι μου φαίνεται.
  3. Ααα ναι γιατι το όνειρο μου είναι να διαβάζω τα νέα μου για την τεχνολογία απο το Maxcheaters - The best cheating forum
  4. O Maxtoras με αυτες τι μαλακιες που ποστάρει δείχνει πόσο λίγο ξέρει το κοινο του
  5. I always felt like things like this have more of a place in the CommunityBoard, instead of the NpcHtml. You have more space and to add more things. Also previous/next pagination can get hectic without numbered pagination so I would add that. In terms of the code the following can be optimized: npc.getDropData().forEach(c -> list.add(c)); Collections.reverse(list); You can iterate over the getDropData() enumerable in a reverse fashion in order to prevent the reverse call. You just add the objects in reverse before hand. You can move "final int ITEMS_PER_LIST = 7;" outside of the static method to prevent the allocation to the object every time the method is called. You should chain sb.append within your sb.append calls. Strings are immutable so you're allocating more memory for no reason. You can change this: if (_ignored.contains(itemId)) _ignored.remove(itemId); else _ignored.add(itemId); To this: var existed = _ignored.remove(itemId); if(!existed) _ignored.add(itemId); You also should rename the public methods "ignoredDropContain" and "ignored" in Player.java. They are really bad names and they don't imply what they do. They also don't belong in the Player class. There are other small things as well but too nit picky to mention.
  6. Pretty much every server has fake players nowadays and I have a fair share of blame to take on that. However, do you want pvp with healers even though they are bots or without healers? I would personally go with the first but you have the danger of not having action at all which leads to players leaving. There is an argument to be made on both sides.
  7. As the title suggests I am looking for someone that can take a PSD and create the appropriate L2-flavored HTML for that image. This is interlude specific. Send me pms with examples of your work and I will choose the best one.
  8. Yeah it's possible. I use Wine to run it and it works like a charm. https://www.winehq.org/
  9. Ο Μήτσος για μισό κιλό φέτα και 4 ελιές πουλάει και την μάνα του.
  10. This server has an expiry date (like pretty much any other server) but it is pretty fun while it lasts. Sign me up
  11. Hahahha I just noticed it's you, sorry
×
×
  • Create New...