Jump to content

down

Members
  • Posts

    448
  • Credits

  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    0%

Everything posted by down

  1. Config.java, l2jmods.properties, EnterWorld.java, L2PcInstance.java
  2. Also try to lower ur Max ppl online cap, and check if its still lagging...
  3. just change this number :) broadcastPacket(new SocialAction(this.getObjectId(), 16)); Log in with gm char and try effects with //social # #- it should be the same as effect number 1-17 i think
  4. Maybe cuz Cat buffs and Chants r TARGET_ALLY / TARGET_CLAN / TARGET_PARTY..
  5. try this for(L2Skill skill: HeroSkillTable.getHeroSkills()) { player.addSkill(skill,false); } and the glow broadcastPacket(new SocialAction(this.getObjectId(), 16)); broadcastUserInfo();
  6. You gotta add them to skill_trees so players will learn them automatically...
  7. u didnt close it with '}' ? public void increasePvpKills() { // Add karma to attacker and increase its PK counter setPvpKills(getPvpKills() + 1); // Increase the kill count for a special hero aura heroConsecutiveKillCount++; // If heroConsecutiveKillCount > 4 (5+ kills) give hero aura if(heroConsecutiveKillCount > 29) switch(heroConsecutiveKillCount){ case 30: setHeroAura(true); Announcements.getInstance().announceToAll("" + this.getName()+ " went on a Killing Spree with 30 kills in row."); break; case 60: Announcements.getInstance().announceToAll("" + this.getName()+ " is Dominating with 60 kills in row, somebody kill him! "); default: ; } // Send a Server->Client UserInfo packet to attacker with its Karma and PK Counter sendPacket(new UserInfo(this)); sendPacket(new ExBrExtraUserInfo(this)); } /** * Increase pk count, karma and send the info to the player * * @param targLVL : level of the killed player * @param increasePk : true if PK counter should be increased too */
  8. mb i shouldnt bump this.. some1 correct me if im wrong :) i've used this at L2AttackableAI.java / private boolean autoAttackCondition(L2Character target) from this --> if (!(me instanceof L2RaidBossInstance) && player.isSilentMoving() && !player.isCastingNow() && !player.isAttackingNow()) to this --> if (!(me instanceof L2RaidBossInstance) && !(me instanceof L2GuardInstance) && player.isSilentMoving() && !player.isCastingNow() && !player.isAttackingNow()) Its working quite good.. Can i use it like this? I won't have any troubles?
  9. Sry just saw that... Dont know mate, never been faced this problem.
  10. maybe u didnt change ur l2.ini or sth like this
  11. He can move those chars on his server, but not on that 'alive' server, since he doesnt have access to db :P
  12. L2Character/doAttack.java if (this instanceof L2PcInstance && target instanceof L2PcInstance) { if (((L2PcInstance)target).getInPvpZone() && !((L2PcInstance)this).getInPvpZone()) return; else if (!((L2PcInstance)target).getInPvpZone() && ((L2PcInstance)this).getInPvpZone()) return; }
  13. i find 1server pack of 1server but server stil alive i need find password....of account ppls or password account admin I think he might wants to attack some1...
  14. U didnt set email's default value in MySQL, account table. Post here ur account table from your MySQL.
  15. Should that be in the Exploit section?
  16. Thanks for sharing this dude.. Not hard but still useful :P
  17. I was asking for my home pc.. :) Changed to windows 7 64-bit. I didnt rent a server yet. I asked how much upload speed i gotta have with this components and windows 7 64-bit to handle 50 ppl on. :P
×
×
  • Create New...