Jump to content

SweeTs

Legendary Member
  • Posts

    8,941
  • Credits

  • Joined

  • Last visited

  • Days Won

    25
  • Feedback

    0%

Everything posted by SweeTs

  1. Client related, if im not wrong it was about Option.ini
  2. So called starters are not able to 'work' on this pack or fix anything :P
  3. armorgrp.dat
  4. Changeset 328 "Stat" classes, Misc "Stat" classes - Reworked HP/MP/CP players calculation, dropping 3 Func and overriding existing methods. - Random cleanup (drop null checks, use getActiveChar() directly, and other misc). - getPhysicalAttackRange() : range isn't calculated anymore for NPCs (template value is final value), and default value for players follows WeaponType (drop bow range Func). Misc - Cleanup L2MultiSell, splitting it in different classes : MultisellData, and a model package holding few models. - Fix a ClassCastException, and rework Raid Boss Curse on skill cast. - Fix a NPE on L2PcInstance.doDie( : it wasn't verifying pk clan status. - Edit some values which got no use to be long (avoid some int > long casts). - getClosestTown() : added a Race check for teleport (D.Elf / L.Elf). - Fix FuncEnchant for S grade weapons, BigBlunt/BigSword types and drop NONE type - Ty Hasha.
  5. You should move it to gr section :x
  6. 1st of all, you wont reach such a number. Secondly, yup you will be protected well. No worries.
  7. You can do it even with 100-150 euro. Let's say dedi from any OVH reseller (which included basic ddos prot, good enough), 50 euro from someone (check the dedicated section for powersupport or how it was called) or you can buy from HostChefs for 65+ with support and such and microprotection from HyperFilter for some $$ http://hostchefs.eu/lineage2.php http://www.hyperfilter.com/micro-protection/ Seriously, you don't need much when it's about dedi.
  8. As I told, just drop the zone check and leave return false;
  9. Cool story brah.
  10. And what is your problem, cuz I don't get it.. ? Just add this check @ L2NpcInstance.java . With that, you won't be able to hit npcs inside a town zone. Drop the check or leave, make a config or w/e :P @Override public boolean isAttackable() { if(isInsideZone(ZoneId.TOWN)) return false; return true; }
  11. Yup. Just change the name of property to w/e you want.
  12. That's.. sad.. I gave you example on HOW TO create "new property". So.. do like that.
  13. Still, you don't. Hopzone getVote method is enough huehue :P
  14. What for you need it ? Ohh wait.. you don't. :troll:
  15. public static final String CLANS_FILE = "./config/clans.properties"; // Clans settings ExProperties clans = load(CLANS_FILE); That's it.
  16. Check the file (Config.java) how the properties file is separated. You don't need this.
  17. Talking about karma < 0
  18. > 0 you mean.
  19. Yup, I know that.. Anyway.
  20. You rly expect me to c/p rdy code cuz someone wants it ? :troll: Btw, he was asking only for that and it's obvious to check if the party is not null, so well.. :)
  21. L2Party party = player.getParty(); if (party.getMemberCount() < 3) { player.sendMessage("You need a party with at least 3 members."); return; }
  22. This. If you have no clue how to add such things, just don't add. Start from begining, I mean, from adding simple usercommandhandlers like those you mentioned.. Start from lvl 1, do not skip them.
×
×
  • Create New...