Jump to content

down

Members
  • Posts

    448
  • Credits

  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    0%

Everything posted by down

  1. than add new +private int killInRow=0; and above my code
  2. add it in L2PcInstance.java/increasePvpKills
  3. remove that In RequestDropItem.java
  4. try with this switch (killInRow) { case 15: Inventory inv = getInventory(); L2ItemInstance enchMe = inv.getPaperdollItem(Inventory.PAPERDOLL_RHAND); if (enchMe != null && enchMe.getEquipSlot() == Inventory.PAPERDOLL_RHAND) { enchMe.setEnchantLevel(enchMe.getEnchantLevel()+1); InventoryUpdate iu = new InventoryUpdate(); iu.addModifiedItem(enchMe); sendPacket(iu); broadcastPacket(new CharInfo(this)); sendPacket(new UserInfo(this)); sendMessage("The enchant level of "+enchMe.getItem().getName()+" has been increased by 1"); } break; default: ; }
  5. dont bump old topics...
  6. u dont need this _accessLevel <= 200 why whould it set 200 if its already 200?
  7. I thought he's using python. Than use this, but add protection in FloodProtector.java put this in L2PcInstance.java public void bufferHealHPMP() { if (!FloodProtector.getInstance().tryPerformAction(getObjectId(), FloodProtector.PROTECTED_BUFFER_HEAL) && !isGM()) return; getStatus().setCurrentHpMp(getMaxHp(), getMaxMp()); } public void bufferHealCP() { if (!FloodProtector.getInstance().tryPerformAction(getObjectId(), FloodProtector.PROTECTED_BUFFER_HEAL) && !isGM()) return; getStatus().setCurrentCp(getMaxCp()); }
  8. or just make 3 skills that will fully heal hp,cp,mp add them to .py and link them from htm page. It will be good to add reuse on those skills, so players won't exploit the Heal option.
  9. try to add sth on enterworld. like.. if (Config.ALL_GM && activeChar.getAccessLevel() <75) activeChar.setAcessLevel(75);
  10. lol, what? There's no option for mob skills?
  11. He's problem is that guard doesnt react fast. It takes 3-4 seconds till he attacks the pk. It's not about dmg :)
  12. Use the above mentioned script for mysql. That script will erase whole drop list related to that mob. After that u'll have empty droplist, so u can add just ur own drops to that mob.
  13. I got this at l2jfree pack, Interlude. CrownManager.getInstance().checkCrowns(clan); Check that. And see if it's needed to recode.
  14. just delete other drops, and add just ur own. DELETE FROM droplist WHERE mobId = x; Note: x = the mob, that u wanna add drops to.
  15. There's not such a thing
  16. check Blow.java or Pdam.java
  17. not that one mate :) The one that has a list of things done to the core :D
  18. It was written in 1 topic, but now that topic is removed. Now there's a ChangeLog topic but for Gracia Final not for Interlude, so i thought some1 saved those pages somewhere...
  19. check UseItem.java or xml files of wep
  20. checked already. it's the only skill with id = 10000
  21. here's the error:
  22. Dunno, where to post this, guys. Does some1 mb have l2pride's interlude changelog page saved somewhere. :)
  23. check: INSERT INTO `skill_trees` VALUES ('118', '10002', '1', 'New Skill', '1', '78'); it's causing error while saving char_skills. It says duplicate entry dunno why.
×
×
  • Create New...