Jump to content

vampir

Legendary Member
  • Posts

    1,899
  • Credits

  • Joined

  • Last visited

  • Days Won

    14
  • Feedback

    0%

Everything posted by vampir

  1. First take a look at https://developer.paypal.com/ because writing bullshit :)
  2. Very nice job! You are getting those packets from client directly?
  3. I can see on the image, that user just sends ID of the transaction. I think it's better to check it by the Email name though, easier for the user.
  4. Dorn seems dead already, from those 2 i would choose Hel
  5. Hi I am wondering, are there any Private Korean Servers of L2? Is there any toplist? I couldnt find anything
  6. You might try either: if(target.isMonster())//If target is null, this will throw NullPointerException { something; } or if(target instanceof L2MonsterInstance)//Name of the class might be different(depends on your pack), like MonsterInstance, L2Monster { something; }
  7. LightFusion will help me for a reasonable price. Topic can be locked.
  8. Hi I would like to hire someone who can adapt to my H5 system: 1 Suit(1 Item part * 6 Races * 2 Class Types(Mage + Fighter) 2 Armor Types(4 Parts * 6 Races * 2 Class Types, helmet in .dat is not needed) 4 Cloaks 23 Weapons(This includes few Duals, no glows) By Adapting i mean: - Adding animations, textures to .u files(If you don't know how to make .u, i will tell you, its very easy) - Adding each of them to .dats - Adding Icon of each item - I will add them to server files by myself, so this is not required If you are interested, let me know how much it will cost me. You can do it by: - Posting in here - Sending me PM here(on MXC) - Talking to me on skype - niedziolek50
  9. Even if you can do everything alone, you might save a lot of time by working with someone else
  10. Epic Promo Video https://youtu.be/2tn-Q-mUDgw
  11. list = list.replace("%clanskills%", "<td align=center><button width=32 height=32 back=\"Icon.skill" + (largo.length() > 3 ? largo : largo3) + "\" fore=\"Icon.skill" + (largo.length() > 3 ? largo : largo3) + "\"></td>"); This seems wrong You should use StringBuilder to add next TDs. For example: StringBuilder builder = new StringBuilder(); for(L2Skill s : skills.values()) builder.append("<td blabla"); content = content.replace("%clanskills%, builder.toString()); You also should replace "break" in the loop with builder.append("</tr><tr>");
  12. You are looking for Packet ExGetPremiumItemList
  13. Check in html-en/scripts/services/Community/
  14. Are you 13 years old?
  15. I believe you can change default position of the windows by editing Inteface.xdat file. You can do it with XDAT Editor program, check out "wndDefPos" tab.
  16. That's how it is. If you want to make them look different, you will need to create completely new models of armors.
  17. That would cause all of those useless drops to exist in the memory and be sorted out every time monster drops the item.
  18. You should look for the class which is loading the drop lists. I have got NpcParser. In there you should just make check like this: if(!ArrayUtils.contains(Config.POSSIBLE_DROP_IDS, itemId)) continue;
  19. I was using cracked adrenaline on L2Redemption that uses SmartGuard without any difficulties
  20. You could take a look at Siege Zone, when player leaves the zone he is getting PvP Flag automatically.
  21. So i can suggest you to start with some smaller modifications. If you will spend some time on learning how everything works, you will be able to do a lot better things than just pages inside html :)
  22. Have you got the right to sell acis? I don't think so http://www.maxcheaters.com/topic/164529-acis-how-to-get-access/
  23. Have you got patched system? I also suggest to download and use latest fileedit.
  24. If you are server developer, thats not good way of doing it. As a player: K - this tellls how character moves during the skill usage - put 0 to disable 1231 - this tells how skill effect has to look like(so thats white effect of aura flash) - set is as empty text to disable.
×
×
  • Create New...