Jump to content

Tessa

Members
  • Posts

    1,474
  • Credits

  • Joined

  • Last visited

  • Days Won

    4
  • Feedback

    0%

Everything posted by Tessa

  1. You should check for vip status first, and then add the skills as a reward skills, I think..
  2. Use Google AdWords and your ads will be on every site that uses AdSense.. ^^
  3. For being stalone's best dog, perhaps.. :lol:
  4. Poor achylek... :(
  5. Lol, where is achylek?
  6. Sorry for the double post, but I'm little stupid and didn't noticed that it can have more than one skill... synchronized (getAllSkills()) { for (final L2Skill oldSkill : getAllSkills()) { if (Config.ENABLE_VIP_SYSTEM && Config.VIP_SKILLS.contains(oldSkill.getId())) { continue; } super.removeSkill(oldSkill); } } // Yesod: Rebind CursedWeapon passive. if (isCursedWeaponEquiped()) This should be better... ^_^
  7. You should find this piece of code in head-src/com/l2jfrozen/gameserver/model/actor/instance/L2PcInstance.java synchronized (getAllSkills()) { for (final L2Skill oldSkill : getAllSkills()) { super.removeSkill(oldSkill); } } // Yesod: Rebind CursedWeapon passive. if (isCursedWeaponEquiped()) And then add something like this in the loop: synchronized (getAllSkills()) { for (final L2Skill oldSkill : getAllSkills()) { if (oldSkill.getId() == 395) { continue; } super.removeSkill(oldSkill); } } // Yesod: Rebind CursedWeapon passive. if (isCursedWeaponEquiped()) It's the ugliest way, but.. ^^
  8. Doesn't work or doesn't appear?
  9. That site branding is useless on 1280x960 screen... almost nothing is visible :lol:
  10. Damn google translator, I can't get anything... what about the sub class?
  11. I think he don't claim to be author of this code: (Nothing special i found this code and i share for help some people)
  12. Ah, I see now.. :lol:
  13. What does that means?
  14. Depends on what you want!
  15. I don't know how the web business works here, but in the reality for 100 euro you will get a basic template that works on a cms of your choice..
  16. It's a pleasure to see L2JServer's team working on Ertheia! ^^
  17. Does it return "============> Buffer Free: LOADED" in your console? I mean, when you start gameserver.bat, does it print this text?
  18. What problem?
  19. Try with Java8 then...
  20. Well... can you post a link to this buffer?
  21. Not that kind of info... the packet you using, the buffer code etc.
  22. You should provide more info...
  23. This check already exists few lines below.. if (startSkill.getId() == 1001 || startSkill.getId() == 1177) newChar.registerShortCut(new L2ShortCut(1, 0, 2, startSkill.getId(), 1, 1)); if (startSkill.getId() == 1216) newChar.registerShortCut(new L2ShortCut(10, 0, 2, startSkill.getId(), 1, 1)); If he wants, he should only change their positions.
  24. Lol, I don't understand why you have to do this?
  25. Here is the fastest way I can offer you... go to Navicat, find the table character_shortcuts, remove all the data, go back to the server, reorder the shortcut bar as you like, then go back to Navicat and you will see how to set up your bar... then use the description from my previous post and do it. :P EDIT: You should add these items on character creation, and for the different items create a check for mage.
×
×
  • 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