Jump to content

SweeTs

Legendary Member
  • Posts

    8,941
  • Credits

  • Joined

  • Last visited

  • Days Won

    25
  • Feedback

    0%

Community Answers

  1. SweeTs's post in Auction House was marked as the answer   
    Check for Crystal type.
  2. SweeTs's post in L2 Day Scrolls was marked as the answer   
    Simply change the stackType, they have to differ. Call it anyhow you like.
  3. SweeTs's post in Vote Buff was marked as the answer   
    Lmao.. Reading the godamn config you should know it's amount... Plus, you can replace the naming with whatever you like, so..
  4. SweeTs's post in Acis questions was marked as the answer   
    Frozen as any pack has issues. It's kinda messy, but still works.
    Disadvantage, it's not developed since years, but it's perfect for newbies as it has all customs.
  5. SweeTs's post in Price edit was marked as the answer   
    Blind?
     
        public static void augments(L2PcInstance activeChar, int ammount, int attributes, int idaugment, int levelaugment)
     
    public static void clanReward(L2PcInstance activeChar, int ammount)
     
    "ammount", it's hard-coded on the method call > clanReward(activeChar, 20)
  6. SweeTs's post in fucking search on eclipse was marked as the answer   
    Make sure case sensitive is not selected. Otherwsie, letters must match - lower case, upper case, must be exactly 100%.
  7. SweeTs's post in Server build was marked as the answer   
    So, how can you have an error while you didn't build it yet? 
     
    Pretty much the same if you have svn, except java version, I believe. 
    https://youtu.be/Vz7oAcpBOd4
  8. SweeTs's post in db error was marked as the answer   
    Compare it with another shield xml, you should be able to notice difference, what's missing. 
  9. SweeTs's post in Npc was marked as the answer   
    I already told you where to put htm. Also the npc type must be L2DonateShop as it's an instance npc not script as you said. 

  10. SweeTs's post in Change fighter to mage was marked as the answer   
    ClassID.java change the ClassType.FIGHTER  to MYSTIC.
  11. SweeTs's post in Icons was marked as the answer   
    Seriously.. All you need is the getIcon mechanism and the sql file with icon path. 
     
    Lazy people. 
     
    http://letmegooglethat.com/?q=Droplist+icons+maxcheaters.com
  12. SweeTs's post in Olympiad teleport was marked as the answer   
    Wrong file, still. Read again what I said above. But ok, this time I will use bold' font with color.
     
    I said first and you opened file .. no8. Well, not bad. Here is a picture with order.
     

     
    Now, you know where to dig. All you have to do is to READ methods names and replace it with old code - from free svn. Profit.
  13. SweeTs's post in Custom Enchant System. was marked as the answer   
    item.setEnchantLevel(item.getEnchantLevel())  
    or simply do nothing inside brackets, no code, no actions.
  14. SweeTs's post in I have problem here was marked as the answer   
    Compare with L2jserver code and edit if necessary.
  15. SweeTs's post in GameServer error was marked as the answer   
    Error is clear and you could Google it. Number format exception, your config is "10." while it's supposed to be an int and not a double. So, remove the dot, it must be "10".
  16. SweeTs's post in announcement problem was marked as the answer   
    It could be  edited client message or message from EnterWorld.java
  17. SweeTs's post in Itens ++ Shoping L2jacis was marked as the answer   
    You didn't get the point. Like set.getInteger("enchantmentLevel", 0); Second parameter is the default value. So, you add the enchantmentLevel value where you need.
  18. SweeTs's post in NPC Buffs was marked as the answer   
    Your question isn't clear. 
    It's bypass related the the instance type. Npcs with such instance, L2BufferInstance / Buffer, can use the bypass. Check the core, working npc what type its using. 
  19. SweeTs's post in Little Problem On Compilation Vipitem was marked as the answer   
    Read, error look code.. You miss one }
  20. SweeTs's post in Armor's was marked as the answer   
    http://www.maxcheaters.com/topic/176091-custom-armors/
  21. SweeTs's post in Servername Edit was marked as the answer   
    Download l2fileedit.
  22. SweeTs's post in Show Npc Crest - Acys 368 was marked as the answer   
    Npcs are registered under castle.xml or so, if that npc is not registered as giran castle, then.. Shit happens.
     
    And ffs, it's acis.
  23. SweeTs's post in [Interlude]Name Colors was marked as the answer   
    The code color is also reverted.
  24. SweeTs's post in Automatic Potions When Activechar.isstunned was marked as the answer   
    if (activeChar.isStunned() || activeChar.isConfused() || activeChar.isAway() || activeChar.isParalyzed() || activeChar.isSleeping() || activeChar.isDead()) { activeChar.sendMessage("You Cannot Use Items Right Now."); activeChar.sendPacket(new ExAutoSoulShot(id, 0)); activeChar.setAutoPot(id, null, false); return; } The check already exists, simply remove two/three lines (return is a must) and voila. 
    AutoPot runnable method.
  25. SweeTs's post in Path was marked as the answer   
    You need SVN, then changes will be visible (a black *). Right click on project, team, create patch.
×
×
  • Create New...