Jump to content

down

Members
  • Posts

    448
  • Credits

  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    0%

Everything posted by down

  1. if u put ArcherVsHeavy = 0.x they'll have bigger dmg
  2. Im not sure dude, but i think that problem is here if (Rnd.get(100) < chance) { synchronized(item) { if (item.getOwnerId() != activeChar.getObjectId() // has just lost the item || (item.getEnchantLevel() >= maxEnchantLevel && maxEnchantLevel != 0)) { activeChar.sendPacket(new SystemMessage(SystemMessageId.INAPPROPRIATE_ENCHANT_CONDITION)); return; } Since u got a check for max enchant on a wep/armor for a successful enchant, but not if wasn't successful. So try to delete check from there and put it above. as i have said before.. if (item.getEnchantLevel() >= maxEnchantLevel && maxEnchantLevel != 0) { activeChar.sendPacket(new SystemMessage(SystemMessageId.INAPPROPRIATE_ENCHANT_CONDITION)); return; } if (Rnd.get(100) < chance) { synchronized(item) { if (item.getOwnerId() != activeChar.getObjectId() // has just lost the item) { activeChar.sendPacket(new SystemMessage(SystemMessageId.INAPPROPRIATE_ENCHANT_CONDITION)); return; }
  3. check accesslevel properties. GMAccess.properties
  4. mb this: activeChar.getCharRecommendationStatus().setRecomHave(255);
  5. RequestEnchantItem.java find this: else // its an armor { maxEnchantLevel = Config.ENCHANT_MAX_ARMOR; for (int scrollId : ENCHANT_SCROLLS) if(scroll.getItemId() == scrollId) { chance = Config.ENCHANT_CHANCE_ARMOR; enchantBreak = Config.ENCHANT_BREAK_ARMOR; break; } for (int scrollId : CRYSTAL_SCROLLS) if(scroll.getItemId() == scrollId) { chance = Config.ENCHANT_CHANCE_ARMOR_CRYSTAL; enchantBreak = Config.ENCHANT_BREAK_ARMOR_CRYSTAL; break; } for (int scrollId : BLESSED_SCROLLS) if(scroll.getItemId() == scrollId) { chance = Config.ENCHANT_CHANCE_ARMOR_BLESSED; enchantBreak = Config.ENCHANT_BREAK_ARMOR_BLESSED; break; } } and paste the code below
  6. add this if (item.getEnchantLevel() >= maxEnchantLevel && maxEnchantLevel != 0) { activeChar.sendPacket(new SystemMessage(SystemMessageId.INAPPROPRIATE_ENCHANT_CONDITION)); return; }
  7. Dont know if mysql has a date of spawned/killed rbs u can edit updateDb void in RaidBossSpawnManager.java, to add date of spawning rb, and in doDie void in L2RaidBossInstance.java and L2BossInstance.java to add date in mysql when rb died.
  8. It's http://www.maxcheaters.com/forum/index.php?topic=117153.0 or http://www.maxcheaters.com/forum/index.php?topic=109383.0
  9. It's not attacker.. thats l2phx i think try this http://www.maxcheaters.com/forum/index.php?topic=109485.0
  10. it seems that Mana pot skills is on the same place as it was in Interlude.. What pack u use?
  11. w8 a sec than... i dont have gracia epilogue dp..
  12. with l2encdec.bat? @echo off l2encdec -d lineageeffect.u result :) :
  13. search in dp for 2000-2099.xml skills go to 2005th skill and change <set name="power" val="250.0"/>
  14. lol, cant understand shit, how this thing works... only managed to make dec-lineageeffect.u dont know what to do next
  15. i think it encrypts only .dat files
  16. what do i need to encrypt that file? nah, i cant find effects there :)
  17. kk. thx for help, mate. ^^ Anyway do u known where can i find skill effects?
  18. he can write in mysql console delete from character_skills where skill_level > 100;
×
×
  • Create New...