Jump to content

Rootware

Legendary Member
  • Posts

    1,370
  • Credits

  • Joined

  • Last visited

  • Days Won

    14
  • Feedback

    100%

Everything posted by Rootware

  1. How much the people is playing in Lineage 2 today? I think, Lineage 2 it past.
  2. Ask someone who can edit interface scripts, possible he can implement it with bypass command usage. Something like this - implement clickable function for all icons from AbnormalWnd and sending bypass like bypass -h cancel_buff effect_object_id
  3. No way. Alt + Click interface option uses the separated packet from client side and unique the native functions for interface scripts.
  4. http://svn.l2jserver.com/branches/L2_GameServer_c5/
  5. Sad story. This man don't want to know the purpose of the code, but he asking for help in correcting the methods while they was written in the FastMap style. Also it's was not the better solution for this, and not ArrayList story. I think this man will not be satisfed if we recommened him learn what this code doing. In this case, is not the help. It's work of other people - time, brains and hands. My opinion - wrong section for request.
  6. This dude want to moved all addons from Frozen to the aCis. :dat:
  7. Because your knowledge so sucks. You try to calling from a map the value as object, not like the variable. protected int getVoteWinner() { final HashMap<Integer, Integer> temp = new HashMap<>(); for (int vote : votes.values()) { if (!temp.containsKey(vote)) temp.put(vote, 1); int old = temp.get(vote); temp.put(vote, ++old); // If a record with this "vode" exists in Map then she will be rewrited with new value from "old" variable. } int max = 0; int result = 0; for (Map.Entry<Integer, Integer> entry : temp.entrySet()) { if (entry.getValue() > max) { max = entry.getValue(); result = entry.getKey(); } } return result; }
  8. I don't understand what you want, but this looks like better: protected int getVoteWinner() { final HashMap<Integer, Integer> temp = new HashMap<>(); for (int vote : votes.values()) { if (!temp.containsKey(vote)) temp.put(vote, 1); int old = temp.get(vote); temp.getEntry(vote).setValue(++old); } int max = 0; int result = 0; for (Map.Entry<Integer, Integer> entry : temp.entrySet()) { if (entry.getValue() > max) { max = entry.getValue(); result = entry.getKey(); } } return result; }
  9. Don't build the full HTML code in java. Save HTML page as template and after replace dynamic data inside template.
  10. 1. Add rules for forwarding the ports 2106, 7777 in your router to your local machine IP. 2. Setup ExternalHostname as your external IP.
  11. If you want to fix it, then you need to get aCis source and compare olympiad system on both sources. Or replace fully this system from aCis.
  12. Don't use L2J Frozen if you want to fix this problem.
  13. Your knowledge is so small, that anyone who will help you will be like as your mother when she fed you from a spoon. Your main problem in solving the simple problem is that you know nothing about programming. I mean, what this topic have simple answer and it's not a reason for her creation.
  14. You are god of L2J. st.getPlayer().setTarget(st.getPlayer()) Getting self in target. What it this the sacred action? You want take yourself by the collar and throw out the window of the first floor? Good idea.
  15. What happens if i will use different databases for game and login server? Your code return a zero and spammed a log file. Better implementation when you uses LS <-> GS connection. In this case, it's useless shitcode.
  16. You need to search reverse engeener who can rework necessary native client functions. Login window and notification bar is hardcoded in DLL.
  17. As all others custom features - NPC with dialogues. :happyforever:
  18. Fake Armor style. It does not matter what is the trigger.
  19. If you need res w/o accept window, just use admin res action.
  20. As i understand, he wants what pet will be ressurect if master character has accepted the ressurection from a clan member.
  21. For blocking Exp gain a code was shared on this forum for HF5.
  22. You want customize Exp rate for everyone or blocking the gain Exp and SP?
×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock