Jump to content

Matim

Legendary Member
  • Posts

    4,504
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by Matim

  1. Oh man... of cource Eclipse is better - but for Java .. this program provides opportunity for faster L2J Files Development, nothing more nothing less. + only the possibility of additional java files editing.
  2. I can understand what do you mean. Maybe You have to correct IP's etc from PHP file (responsible for server stats)
  3. 65.000 fonts? Lol, stupid idea, you're not able to check each.. (hm you're) But once again stupid..
  4. You have to buy domain.. and webstie hosting (its cheap) Use google, you can find XXX hosting company. Note, you can use free hosting too.
  5. You can Use This one (...)
  6. Double posting is not allowed.
  7. You have to edit java files - from source code. If You dont know how, check guide about how to compile.
  8. TvT is already adapted to normal L2J.
  9. Also take a look at this All in One NPC
  10. Its private - but private source, you can buy acces to SVN. Check it: L2Rus.Info & La2.100nt.ru
  11. Or lazy, You have few samples, what else do you need ..
  12. Russian L2JDream (private) project is very good. Try to find them in google.
  13. You need script. Hint: data\scripts\teleports check few of them and check how does it work.
  14. And what do you expect? Full Pack? Chronicle etc, post some information.
  15. If You need good pack and You dont have enough experience/time - You can buy it. Dont expect good pack from someone for free.
  16. Yes, its good idea, but also hard to do or maybe not. Thanx for another idea.
  17. Its joke? You cant find anything ? Click Here (...)
  18. hi
  19. down is right. It is in UseItem.java Take a look at this: // Don't allow other Race to Wear Kamael exclusive Weapons. if (!item.isEquipped() && item.getItem() instanceof L2Weapon && !activeChar.isGM()) { L2Weapon wpn = (L2Weapon)item.getItem(); switch (activeChar.getRace()) { case Kamael: { switch (wpn.getItemType()) { case NONE: activeChar.sendPacket(new SystemMessage(SystemMessageId.CANNOT_EQUIP_ITEM_DUE_TO_BAD_CONDITION)); return; } break; } case Human: case Dwarf: case Elf: case DarkElf: case Orc: { switch (wpn.getItemType()) { case RAPIER: case CROSSBOW: case ANCIENT_SWORD: activeChar.sendPacket(new SystemMessage(SystemMessageId.CANNOT_EQUIP_ITEM_DUE_TO_BAD_CONDITION)); return; } break; } } } break; } case L2Item.SLOT_CHEST: case L2Item.SLOT_BACK: case L2Item.SLOT_GLOVES: case L2Item.SLOT_FEET: case L2Item.SLOT_HEAD: case L2Item.SLOT_FULL_ARMOR: case L2Item.SLOT_LEGS: { if (activeChar.getRace() == Race.Kamael && (item.getItem().getItemType() == L2ArmorType.HEAVY ||item.getItem().getItemType() == L2ArmorType.MAGIC)) { activeChar.sendPacket(new SystemMessage(SystemMessageId.CANNOT_EQUIP_ITEM_DUE_TO_BAD_CONDITION)); return; } break; } case L2Item.SLOT_DECO: { if (!item.isEquipped() && activeChar.getInventory().getMaxTalismanCount() == 0) { activeChar.sendPacket(new SystemMessage(SystemMessageId.CANNOT_EQUIP_ITEM_DUE_TO_BAD_CONDITION)); return; } } } Line: ~272
  20. Everyone should respect rules before requesting for help.
  21. You can use L2JFree with TVT/CTF/DM and other. Or, check L2JFree SVN and try to sync these events with your project.
×
×
  • 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