Jump to content

Horus

Members
  • Posts

    888
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Horus

  1. Ofc.If not just change the functions its pretty much the same
  2. But whats the point of doing that if l2j is far more advanced? oO
  3. Whats the deal with this ? What makes it better then l2j which is far more advanced? oO
  4. L2Character or UseMagic,deppends.
  5. Dunno if I should add something as a recorder whilst the player is online,if he makes "X" attempts then he is punished or w/e. If you want anything else just request ^^
  6. Thats the intention. If there is a Party Member that has the same IP as the Buffer then Buffing is NOT Allowed.
  7. Today ,like most shares I make, a friend asked me to make him a small simple Script which I decided to share since its usefull and simple. Basically this Script makes sure that people do not use Healers, Buffers ,globally, AIOs outside towns on their own Characters.In other words,this prevents players from Dual Boxing with a Buffer / Healer within its party. if((skill.getSkillType() == L2SkillType.BUFF || skill.getSkillType() == L2SkillType.HEAL ||skill.getSkillType() == L2SkillType.HEAL_PERCENT ) && skill.getTargetType() == skill.getTargetType().TARGET_PARTY || skill.getTargetType() == skill.getTargetType().TARGET_ONE || skill.getTargetType() == skill.getTargetType().TARGET_PARTY_MEMBER && !isInsideZone(L2Zone.FLAG_PEACE)) { L2PcInstance player = ((L2PlayableInstance) this).getActingPlayer(); if(player.isInParty()) { for(L2PcInstance partymember : getParty().getPartyMembers()) { if(partymember.getClient().getHostAddress().equals(player.getClient().getHostAddress())) { player.sendMessage("You cannot Buff your own Character unless you are inside a Town Area."); return false; } } } } The code is pretty simple and self explanatory. Hope you find it usefull.
  8. Just so that you know, that is actually my work, I shared it on RZ and someone just copied over here and claimed it as their own. And yup I can do it, if you aint lazy just read through the code and you'll see that all you have to do is change the coordinates. Original Share was made "Here" .
  9. Yes its possible.
  10. For which bosses ?
  11. Waiting to be able to see it :P
  12. Cool,I'ma try this
×
×
  • Create New...