Jump to content

vampir

Legendary Member
  • Posts

    1,899
  • Credits

  • Joined

  • Last visited

  • Days Won

    14
  • Feedback

    0%

Everything posted by vampir

  1. There is sense to get the protection anyway because: - You get HWID - Packets are encrypted, it's harder to manipulate them - Many older bot programs will not work
  2. As far as i know, stabguard is not finished, maybe also abandoned. If you want to choose lameguard vs smartguard i suggest you to use lameguard. I was using both of the protections in the past and when it comes to protection against Bots, none of them are good. Lameguard though, is a lot more stable and for sure you will not have any problems about it.
  3. You have got best looking auto updaters, good job :)
  4. wow, one of the best custom armors i have seen, good job
  5. As long as you like interface, graphics, mechanics of the game(like movements by mouse or keyboard), you can finish the things you like in the game and improve/completely change things you don't like. Same thing we do with L2 now, sticking on old & better chronicles and adding different sort of things to make it better. If you want to make something cool in L2, make perma death. I think tryskell talked about it someday. Cool idea.
  6. If i would like to make something not usefull, but fun to do, learn a lot but not really need this knowledge, i would find some cool new online game and start writing server for it. I wouldn't care about retail features, just writing everything from scratch and focusing on what i want to focus. Even what i would like a lot more, is to write Client and try to connect to existing game. I wouldn't have a clue where to start though, i would have to learn a lot before having anything done.
  7. What you can offer? Why somebody would want to open server with you?
  8. Because it's SweeTs, promoting tales :P
  9. It always looks like this: 1. 2.
  10. You can improve pvp color/skill thing with: - Gain item on x pvp points - Not only pvp, but x PK required for rewards - Hero glow You should make any of those: nameColor="FF9900" titleColor="FFFF77" skillId="3206" skillLv="10" as not required. Also before final L2Skill skill = SkillTable.getInstance().getInfo(pvpColor.getSkillId(), pvpColor.getSkillLv());, you should make if(pvpColor.getSkillId() > 0) In pvpColor() you should make broadcastUserInfo(); after the loop, so if someone gets many bonuses at once there will be no spam of that packet. _log.warning("Exception: PvpColorTable load: " + e); - you should always put also 2nd argument e. Like this: _log.warning("Some message about the error", e);. It's good to do this, because if exception will occur, your warning will not show line and stack trace of the error. I hope you don't mind, that i tell you code could be better.
  11. Really good thing to sell, if i wouldn't have a guy who translated a lot of HTMLs to Russian language, i would buy it from you. I suggest you to also work on the Client Side. How you are about to solve the problem, of completely different file names and locations on specific packs? That seems to be a lot of work. Games should be only in English? Looks like you didn't think it through...
  12. Easy to be done, you can go to the marketplace if you cannot do it by yourself.
  13. I think you can remove "compiler="javac1.8", my ant build doesn't have this part and works fine. Make sure you have got java 1.8 installed though, because most likely thats the issue.
  14. He wanted to remove it. It is not moving at all, after changing width values?
  15. Click on TargetStatusWnd[window], then Window on the bottom, then change value unk112 to -1
  16. Very nice guide, too bad it's in russian :(
  17. What is Core side in it? I think you just need to copy Env.int file that you can find in system folder.
  18. Hi I would like to find out, how to display text from systemmsg-e.dat(for example, id 4 = You cannot ask yourself to apply to a clan.) in HTML window(like Community Board, Tutorial, Npc Window). I know that i can display sysstring-e.dat text by &$ID; There is also possibility to display skill names, item names, residences, class names etc. Anyone knows how to display systemmsg text?
  19. You should download this logo from somewhere(you can do that by downloading kamael client, then exporting the logo from textures), later make new .utx(or .u) with this this image and change tha path to it in localization.ini
  20. Every Community Board page has been reworked. Every page is also translated to Russian language
  21. New Drop Calculator look: Credits: Me, Strain, MrZielsko & All Donators :)
  22. Log to Tales and check how it is done my way. Player just have to donate and later write his email address in game. If you will manage to get the coins without paying the required amount, i will send you 200e :) If you want to take the challenge, add me on skype: niedziolek50. I will show you the proof that i have the money, i can give you detailed information how my system works(similar way to what elfo did, but a lot easier and i believe better) and you can try to break it.
  23. Did you do Client Side part of http://gfycat.com/ClosedCarelessIncatern by yourself?
  24. All you have to do is: 1. add "implements LameClientV195" to L2GameClient 2. add somewhere at the end of the L2GameClient: private String _hwid; private int instances; private int patch; private boolean isProtected; @Override public String getHWID() { return _hwid; } @Override public int getInstanceCount() { return instances; } @Override public int getPatchVersion() { return patch; } @Override public boolean isProtected() { return isProtected; } @Override public void setHWID(String hwid) { this._hwid = hwid; } @Override public void setInstanceCount(int instances) { this.instances = instances; } @Override public void setPatchVersion(int patch) { this.patch = patch; } @Override public void setProtected(boolean isProtected) { this.isProtected = isProtected; } Then each L2GameClient will have its own HWID(set during passage from Selecting Server > Character Selection Screen). If you want to make some HWID restriction later, you do something like that: public static boolean containsSameHWID(Collection<L2PcInstance> groupOfPlayers, L2PcInstance newPlayer) { String newPlayerHWID = newPlayer.getGameClient().getHWID();//I am pretty sure getGameClient() will be wrong in your Pack, you should find what method returns L2GameClient) for(L2PcInstance playerInGroup : groupOfPlayers) { if(playerInGroup.getGameClient().getHWID().equals(newPlayerHWID)) { return true; } } return false; }
×
×
  • Create New...