Jump to content

Williams

Members
  • Posts

    239
  • Credits

  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    0%

Everything posted by Williams

  1. as the tiulo already says is just a setting for the buffs of the Olympics. aCis/java/net/sf/l2j/gameserver/model/olympiad/AbstractOlympiadGame.java @@ -4,6 +4,7 @@ import net.sf.l2j.commons.logging.CLogger; + import net.sf.l2j.Config; import net.sf.l2j.gameserver.data.SkillTable; import net.sf.l2j.gameserver.data.xml.MapRegionData; import net.sf.l2j.gameserver.enums.MessageType; @@ -360,21 +371,11 @@ protected static final void removals(Player player, boolean removeParty) */ protected static final void buffPlayer(Player player) { - L2Skill skill = SkillTable.getInstance().getInfo(1204, 2); // Windwalk 2 - if (skill != null) - { - skill.getEffects(player, player); - player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.YOU_FEEL_S1_EFFECT).addSkillName(1204)); - } - - if (!player.isMageClass()) + for (IntIntHolder buffs : player.isMageClass() ? Config.OLY_BUFF_MAGE : Config.OLY_BUFF_WARRIOR) { - skill = SkillTable.getInstance().getInfo(1086, 1); // Haste 1 + final L2Skill skill = buffs.getSkill(); if (skill != null) - { skill.getEffects(player, player); - player.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.YOU_FEEL_S1_EFFECT).addSkillName(1086)); - } } } aCis/java/net/sf/l2j/Config.java @@ -145,6 +150,19 @@ public static boolean OLY_ANNOUNCE_GAMES; + public static IntIntHolder[] OLY_BUFF_MAGE; + public static IntIntHolder[] OLY_BUFF_WARRIOR; + @@ -756,6 +924,8 @@ private static final void loadEvents() OLY_ANNOUNCE_GAMES = events.getProperty("OlyAnnounceGames", true); + OLY_BUFF_WARRIOR = events.parseIntIntList("OlyWarriorBuffs", "0-0"); + OLY_BUFF_MAGE = events.parseIntIntList("OlyMageBuffs", "0-0"); + aCis/config/events.properties @@ -84,6 +84,82 @@ OlyAnnounceGames = True OlyDividerClassed = 3 OlyDividerNonClassed = 5 + + # Configure buff for olympiad participants. Format= BuffId-BuffLevel; + OlyWarriorBuffs = 1204-2;1086-1 + OlyMageBuffs = 1204-2;1085-1
  2. aCis - Changesets - Announcements - MaxCheaters.com | Lineage 2 Development Marketplace Bots and Cheats draw your conclusions.
  3. lucera is a waste of time and is not as well built as MASTER @Tryskell aCIs does a great job.
  4. Good morning I come to make available a system that I made for my project I hope you enjoy. Code
  5. Hello, I'm updating the entire paging system of my Npcs adding the system recommended by master TK I come across a problem, is not generating a new page, and my command was broken. https://i.imgur.com/PZ1aOrH.mp4 Fixed!! Fixed
  6. Which class of the interlude interface modifies the adena limit? I want to change it to long.
  7. Everything that @Tryskell cited has not been done yet, I organized a few things and redid AuctionTable, I still need to paginate the pages and optimize the AuctionManager. AuctionManager - https://pastebin.com/YGmT4Uv2 AuctionTable - https://pastebin.com/TnXjWFdi
  8. I researching cloak for interlude I came across this I looked for them and did not find anyone has any news on this topic? Is it really impossible to cloak in the interlude?
  9. Hi resentment I added the option to increase for the Armor but the information does not appear in the same way as the weapon, which system class needs to be changed? how should it be
  10. which would be the best option? I'm saving in memo character, the character level
  11. Hello, I searched for my source and I couldn't find where the class that gives the glow of the weapons is. And I would like to know where the class that activates the soulshot effect is. sorted out
  12. I didn’t ignore Stinky helped me improve the code and now it’s working perfectly look the code is a new method
  13. here is the corrected version thanks a lot to the @StinkyMadnessfor the great help. https://pastebin.pl/view/61885863
  14. Add Time for Skin I added the time in memo, if you know any shorter method leaves here, about the crash I will redo the part of charInfo and UserInfo, soon I will be updating long remainingTime = player.getMemos().getLong("dressTime", 0); if (remainingTime > 0) player.getMemos().set("dressTime", remainingTime + TimeUnit.HOURS.toMillis(dress.getDressTime())); else { player.getMemos().set("dressTime", System.currentTimeMillis() + TimeUnit.HOURS.toMillis(dress.getDressTime())); set up your dressme in hours. <dressme itemId="9245"> <appearance chestId="15000" hairId="15001" dressTime="1"/> </dressme> which points are wrong can you tell me to fix it?
  15. I'm sorry I'm going to redo it, I didn't notice it, because I did it on prices
  16. Configure your Skin your way. code : Skin Code (github.com Updated topic for aCis 401.
  17. Good afternoon I come to make available a mod I made, it rewards players who reach a certain level. https://pastebin.com/raw/gPJt4kzs
  18. would anyone have vorpal armor for interlude? The ones I found are all with textural errors.
  19. I did not find it. is it shared?
  20. I would like to know where I change the level and the amount of exp on the client. level 81: level 85: I want to leave the bar 100% at lvl 85 where do I change the client?
×
×
  • Create New...