Jump to content

vampir

Legendary Member
  • Posts

    1,899
  • Credits

  • Joined

  • Last visited

  • Days Won

    14
  • Feedback

    0%

Everything posted by vampir

  1. You mean to change the message to something different?
  2. First of all, those locations are going to be just loaded and stay the same until server or xml restart yes? Then you dont need to make them .shared(). If you dont need shared, why bother to use FastMap at all, it is better to use HashMap. Since you are querying the data by just .get(ID), map will be faster than list or set or other collections. You should notice that Map<Integer, something> creates Integer object for each record. Integer is not the same as int, it takes far more memory. If you have small collection, thats fine, why would we care. If you have big collection like all items, thats big deal. Also in getMapById(int) int is cast to Integer, it takes additional time, but thats fine. You might use .getOrDefault in there, takes just 1 line. ArrayList thing in MapData i skip.
  3. It really depends what you want to do. What should be taken into consideration: - If object will change in time or loaded just once - If it will be changed from multiple threads at the time - How long(size, length) is it going to be - What kind of access to it you want to have. It will be just fully iterated often, get(x), maybe you just want to take first index and then remove it? Don't use FastList just because it is "fast". If you want to load data from xml, i strongly suggest simple array(or obviously arrayList which might be later .trimToSize()). Don't make FastMap<Integer, FastMap<String, int[]>> Make: ArrayList<MyContainer>(); class MyContainer { private final int id; private final List<MySecondContainer> importantNameHere; } class MySecondContainer { private final int String nameMaybe; private final int[] someKindOfData; } Thats most secure way. - How long(size, length) is it going to be
  4. You could make original image invisible and make new window in interface.xdat in LoginState, similar to LoginMenuWnd but on the top. Then just put simple texture inside the window and it is done. Make sure window is not hidden and always full alpha.
  5. Check how it works from RequestAcquireSkill packet. It is run when player tries to learn any type of skill.
  6. Why not do it this way? long endDateMillis = System.currentTimeMillis() + TimeUnit.DAYS.toMillis(val);
  7. Interesting way of achieving that drop list :P
  8. Try it and see if bug persists
  9. Because guy who was adding events to this pack, didnt do it carefuly. Maybe fandc is still using them, but I dont really know. Player is considered dead if he has < 0.5 hp. In your code if he have got 1 HP and gets 0.7 damage, then condition will be: if(1 + 0.5 <= 0.7) - that's false
  10. This line: if(hp + 0.5 <= damage) should be: if(hp - damage < 0.5) Actually it took me a while to figure this out. I think this line is the only cause, not 100% sure though.
  11. Copy here Player#onReduceCurrentHp
  12. Snoopi made very good job of implementing Poll System to my website in PHP. Recommended
  13. Should be reworked imo, dirty class.
  14. CreatureSay packet = new CreatureSay(0, Say2.SHOUT, "Bug Report Manager", player.getName() + " sent a bug report."); World.getInstance().getAllPlayers().stream().filter(Player::isGM).forEach(p -> p.sendPacket(packet); Java 8 :P
  15. you can take original english systemMsg + sysstring and then add missing IDs
  16. I believe you can find it on l2europa.com
  17. This colors are hardcoded in Interface.u. You cannot change it so simple as dat files, make topic on marketplace and someone will do it for you.
  18. Yes, that can be done. For L2Tales in Clan Window i have added button which shows bars(similar to yours but vertical, not horizontal) with online time of each member. You should be aware that if you want to make it in completely new window, you dont have many options of who can make such thing and price will be a lot bigger than showing it in Npc Window or Community Board.
  19. I confirm. Client doesn't get info of damage of other players. Something like this https://typhoonandrew.files.wordpress.com/2013/09/5-4-dps-rank-553-gear.png you can easily make in Npc window or Community Board window.
  20. I found out that since one god chronicle, those can be changed from Interface.xdat. Oxygen under water is: L2UI_CT1.HeadDisplay_DF_Gage_Breathing I do not know how to change this in h5 though
  21. Oh, sorry. I though you wanted to change this: http://prnt.sc/d7kxr0 This bar is also not in Interace.xdat, but in dll files.
  22. You will not find links to those textures in Interface.xdat. You might change color or shape of the bar by editing ugx file.
  23. Ok i figured it out. I tested it on my High Five server and it seems i have got the same bug. Reason: In QuestList Server packet, server just sends active quests, for some reason it doesn't send info of completed Quest Solution: To the list you should add completed quests ids with state index = 0. Tested, it works
  24. Check QuestList packet. First you should inspect if for sure it is sending data of completed quest and check what state it sends then. Try to play with state, maybe -1 will work or setting it to 100 will work well.
  25. This looks like a client bug or something is wrong with data sent from server. First check if in h5 it works as it should and if it does, compare Server>Client packets related to quests. Ye there isn't much info about quests making in this forum, while making few for L2Raze server i had problem to make npc show that quest is available and it was pretty hard to find anything.
×
×
  • Create New...