Jump to content

'Baggos'

Legendary Member
  • Posts

    3,873
  • Credits

  • Joined

  • Last visited

  • Days Won

    27
  • Feedback

    100%

Everything posted by 'Baggos'

  1. Make sure your java file L2MultiFunctionZone.java it's right and in proper place. gameserver/model/zone/type/L2MultiFunctionZone...
  2. No. We must be psychic for this forum.. ::) Come on guys.. Give more informations.. If you're not able to write your problem, simply share a photo..
  3. If you want when a player dies in specific town areas, then you should edit your townzone spawn. gameserver/data/zones If you want for every areas in the world to do respawn in Giran for example, you should edit your Escape.java (Voicedcommand). _activeChar.teleToLocation(MapRegionTable.TeleportWhereType.Town);
  4. Ah.. You remind me an old L2World server C3(and C4 1.5 year before died. If died I don't remember). 2005-2008
  5. We are not 2006 anymore.. With proper knowledge you can run something good. Either if is l2off or l2j.
  6. Hope that you'll not have 10+ pms everyday for teamviewer help. :P Good luck buddy..
  7. Do not make double topics. http://www.maxcheaters.com/topic/213120-help-tutorial-guide-item/
  8. You want html designer? if yes, PM protoftw. Trusted guy
  9. Do you have access on her/his computer? If yes, there is 2-3 ways to view the password. But let's be realistic.. Everyone has the right for some "privacy". Respect that.. Ask what you want to learn.. true or lies, you'll discover it in time..
  10. Yep.. Replace this pastebin. Changes (hitTime): - player.broadcastPacket(new MagicSkillUse(this, player, 1218, 1, 5, 0)); + player.broadcastPacket(new MagicSkillUse(this, player, 1218, 1, 700, 0)); + player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.YOU_FEEL_S1_EFFECT).addSkillName(1218)); - player.broadcastPacket(new MagicSkillUse(this, player, buffid, buff.getLevel(), 0, 0)); + player.broadcastPacket(new MagicSkillUse(player, player, buffid, 1, 700, 0)); + player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.YOU_FEEL_S1_EFFECT).addSkillName(buffid)); - player.broadcastPacket(new MagicSkillUse(this, player, id, buff.getLevel(), 0, 0)); + player.broadcastPacket(new MagicSkillUse(player, player, id, 1, 700, 0)); + player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.YOU_FEEL_S1_EFFECT).addSkillName(id)); If you want a player to get buffs like prophet does in himself (I mean the player will use/cast the skill), you should change < this, > to < player, >
  11. Έφταιγε η φασολάδα απ΄την καθαρά δεύτερα.. :troll:
  12. Χαχαχα όχι ρε.. Πλάκα του κάνω. btw πήγαινε στο client section και ρώτα μπας και βρεις καμία λύση King.
  13. Άλλαξε τον καιρό να μην φυσάει..
  14. Already I gave you this.. Maybe you want to make buffs like prophet does in himself?
  15. When you get buffs, npc cast the skill, and you get the effect. You need both? Cast + effect for your player?
  16. As I said, just run Git repositories buddy.. You'll get clean files. I don't think there's something better than l2j c3.
  17. Keep this.. (No matters if you use this bypass or the old one. Now will work anyway). But for better "style" keep your change for all buffs. Go to L2BufferInstance and remove this: - showChatWindow(player, nextWindow);
  18. Use this http://pastebin.com/q5Z4ve9W The change for effect (Just to know): else if (actualCommand.equalsIgnoreCase("fighterset")) { for (int id : fighterbuffs) { - SkillTable.getInstance().getInfo(id, SkillTable.getInstance().getMaxLevel(id)).getEffects(this, player); + L2Skill buff = SkillTable.getInstance().getInfo(id, SkillTable.getInstance().getMaxLevel(id)); + buff.getEffects(this, player); + player.broadcastPacket(new MagicSkillUse(this, player, id, buff.getLevel(), 0, 0)); } showChatWindow(player); } and this: if (actualCommand.equalsIgnoreCase("getbuff")) { if (buffid != 0) { - MagicSkillUse mgc = new MagicSkillUse(this, player, buffid, bufflevel, -1, 0); - SkillTable.getInstance().getInfo(buffid, bufflevel).getEffects(this, player); - player.broadcastPacket(mgc); - showMessageWindow(player); + L2Skill buff = SkillTable.getInstance().getInfo(buffid, SkillTable.getInstance().getMaxLevel(buffid)); + buff.getEffects(this, player); + player.broadcastPacket(new MagicSkillUse(this, player, buffid, buff.getLevel(), 0, 0)); + showMessageWindow(player); showChatWindow(player, nextWindow); } }
  19. Run "Git Repositories" in your eclipse and use the bellow links: Core: https://bitbucket.org/l2jserver/l2j_server.git Datapack: https://bitbucket.org/l2jserver/l2j_datapack.git You can choose Chronicle from the list.. Take a look -> http://www.l2jserver.com/#getstarted-advanced || Get Started -> The hard way. Use this guide.
  20. Trusted guy.. Thanks for your exchange buddy..
  21. Topic locked. Thanks for report.
×
×
  • Create New...