Jump to content

DrenepiaWorld

Members
  • Posts

    1,741
  • Joined

  • Last visited

  • Days Won

    8
  • Feedback

    0%

Everything posted by DrenepiaWorld

  1. καλημερα μαν
  2. with a shared (and outdated i guess) precompiled pack ;p
  3. L2JFrozen got already option about scrolls stuckable, here is a code for ls and bogs as well ### Eclipse Workspace Patch 1.0 #P L2jFrozen_GameServer Index: head-src/com/l2jfrozen/Config.java =================================================================== --- head-src/com/l2jfrozen/Config.java (revision 938) +++ head-src/com/l2jfrozen/Config.java (working copy) @@ -2343,6 +2343,8 @@ public static int MONSTER_RETURN_DELAY; public static boolean SCROLL_STACKABLE; + public static boolean LS_STACKABLE; + public static boolean BOG_STACKABLE; public static boolean ALLOW_VERSION_COMMAND; public static boolean ALLOW_CHAR_KILL_PROTECT; @@ -2469,6 +2471,8 @@ ALT_PLAYER_PROTECTION_LEVEL = Integer.parseInt(L2JFrozenSettings.getProperty("AltPlayerProtectionLevel", "0")); MONSTER_RETURN_DELAY = Integer.parseInt(L2JFrozenSettings.getProperty("MonsterReturnDelay", "0")); SCROLL_STACKABLE = Boolean.parseBoolean(L2JFrozenSettings.getProperty("ScrollStackable", "False")); + LS_STACKABLE = Boolean.parseBoolean(L2JFrozenSettings.getProperty("LSStackable", "False")); + BOG_STACKABLE = Boolean.parseBoolean(L2JFrozenSettings.getProperty("BOGStackable", "False")); ALLOW_CHAR_KILL_PROTECT = Boolean.parseBoolean(L2JFrozenSettings.getProperty("AllowLowLvlProtect", "False")); CLAN_LEADER_COLOR_ENABLED = Boolean.parseBoolean(L2JFrozenSettings.getProperty("ClanLeaderNameColorEnabled", "true")); CLAN_LEADER_COLORED = Integer.parseInt(L2JFrozenSettings.getProperty("ClanLeaderColored", "1")); Index: head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestRefine.java =================================================================== --- head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestRefine.java (revision 938) +++ head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestRefine.java (working copy) @@ -246,7 +246,12 @@ } // consume the life stone - if(!player.destroyItem("RequestRefine", refinerItem, null, false)) + if (Config.LS_STACKABLE) + { + if(!player.destroyItem("RequestRefine", refinerItem.getObjectId(), 1, null, false)) + return false; + } + else if(!player.destroyItem("RequestRefine", refinerItem, null, false)) return false; // consume the gemstones Index: config/functions/l2jfrozen.properties =================================================================== --- config/functions/l2jfrozen.properties (revision 938) +++ config/functions/l2jfrozen.properties (working copy) @@ -188,6 +188,8 @@ # Scroll is Stackable? (default = false) ScrollStackable = false +LSStackable = false +BOGStackable = false # ------------------------------------------- # Clan Leader Color Config - Index: head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestExEnchantSkill.java =================================================================== --- head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestExEnchantSkill.java (revision 938) +++ head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestExEnchantSkill.java (working copy) @@ -135,7 +135,10 @@ return; } // ok - player.destroyItem("Consume", spb, trainer, true); + if (Config.BOG_STACKABLE) + player.destroyItem("Consume", spbId, 1, trainer, true); + else + player.destroyItem("Consume", spb, trainer, true); } } else and also you will need client side edits BoGs etcitemgrp 2 6622 0 0 2 5 0 dropitems.drop_sack_m00 dropitemstex.drop_sack_t00 icon.etc_codex_of_giant_i00 0 10 18 0 0 1 1 ItemSound.itemdrop_sack 2 0 0 LS etcitemgrp 2 8723 0 3 3 3 0 dropitems.drop_mineral_general_m00 dropitemstex.drop_mineral_general_t00 icon.etc_mineral_general_i00 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8724 0 3 3 3 0 dropitems.drop_mineral_general_m00 dropitemstex.drop_mineral_general_t00 icon.etc_mineral_general_i00 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8725 0 3 3 3 0 dropitems.drop_mineral_general_m00 dropitemstex.drop_mineral_general_t00 icon.etc_mineral_general_i00 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8726 0 3 3 3 0 dropitems.drop_mineral_general_m00 dropitemstex.drop_mineral_general_t00 icon.etc_mineral_general_i00 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8727 0 3 3 3 0 dropitems.drop_mineral_general_m00 dropitemstex.drop_mineral_general_t00 icon.etc_mineral_general_i01 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8728 0 3 3 3 0 dropitems.drop_mineral_general_m00 dropitemstex.drop_mineral_general_t00 icon.etc_mineral_general_i01 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8729 0 3 3 3 0 dropitems.drop_mineral_general_m00 dropitemstex.drop_mineral_general_t00 icon.etc_mineral_general_i02 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8730 0 3 3 3 0 dropitems.drop_mineral_general_m00 dropitemstex.drop_mineral_general_t00 icon.etc_mineral_general_i02 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8731 0 3 3 3 0 dropitems.drop_mineral_general_m00 dropitemstex.drop_mineral_general_t00 icon.etc_mineral_general_i02 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8732 0 3 3 3 0 dropitems.drop_mineral_general_m00 dropitemstex.drop_mineral_general_t00 icon.etc_mineral_general_i03 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8733 0 3 3 3 0 dropitems.drop_mineral_general_m00 dropitemstex.drop_mineral_special_t00 icon.etc_mineral_special_i00 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8734 0 3 3 3 0 dropitems.drop_mineral_general_m00 dropitemstex.drop_mineral_special_t00 icon.etc_mineral_special_i00 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8735 0 3 3 3 0 dropitems.drop_mineral_general_m00 dropitemstex.drop_mineral_special_t00 icon.etc_mineral_special_i00 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8736 0 3 3 3 0 dropitems.drop_mineral_general_m00 dropitemstex.drop_mineral_special_t00 icon.etc_mineral_special_i00 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8737 0 3 3 3 0 dropitems.drop_mineral_general_m00 dropitemstex.drop_mineral_special_t00 icon.etc_mineral_special_i01 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8738 0 3 3 3 0 dropitems.drop_mineral_general_m00 dropitemstex.drop_mineral_special_t00 icon.etc_mineral_special_i01 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8739 0 3 3 3 0 dropitems.drop_mineral_general_m00 dropitemstex.drop_mineral_special_t00 icon.etc_mineral_special_i02 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8740 0 3 3 3 0 dropitems.drop_mineral_general_m00 dropitemstex.drop_mineral_special_t00 icon.etc_mineral_special_i02 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8741 0 3 3 3 0 dropitems.drop_mineral_general_m00 dropitemstex.drop_mineral_special_t00 icon.etc_mineral_special_i02 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8742 0 3 3 3 0 dropitems.drop_mineral_general_m00 dropitemstex.drop_mineral_special_t00 icon.etc_mineral_special_i03 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8743 0 3 3 3 0 dropitems.drop_mineral_rare_m00 dropitemstex.drop_mineral_rare_t00 icon.etc_mineral_rare_i00 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8744 0 3 3 3 0 dropitems.drop_mineral_rare_m00 dropitemstex.drop_mineral_rare_t00 icon.etc_mineral_rare_i00 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8745 0 3 3 3 0 dropitems.drop_mineral_rare_m00 dropitemstex.drop_mineral_rare_t00 icon.etc_mineral_rare_i00 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8746 0 3 3 3 0 dropitems.drop_mineral_rare_m00 dropitemstex.drop_mineral_rare_t00 icon.etc_mineral_rare_i00 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8747 0 3 3 3 0 dropitems.drop_mineral_rare_m00 dropitemstex.drop_mineral_rare_t00 icon.etc_mineral_rare_i01 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8748 0 3 3 3 0 dropitems.drop_mineral_rare_m00 dropitemstex.drop_mineral_rare_t00 icon.etc_mineral_rare_i01 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8749 0 3 3 3 0 dropitems.drop_mineral_rare_m00 dropitemstex.drop_mineral_rare_t00 icon.etc_mineral_rare_i02 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8750 0 3 3 3 0 dropitems.drop_mineral_rare_m00 dropitemstex.drop_mineral_rare_t00 icon.etc_mineral_rare_i02 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8751 0 3 3 3 0 dropitems.drop_mineral_rare_m00 dropitemstex.drop_mineral_rare_t00 icon.etc_mineral_rare_i02 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8752 0 3 3 3 0 dropitems.drop_mineral_rare_m00 dropitemstex.drop_mineral_rare_t00 icon.etc_mineral_rare_i03 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8753 0 3 3 3 0 dropitems.drop_mineral_unique_m00 dropitemstex.drop_mineral_unique_t00 icon.etc_mineral_unique_i00 0 2 53 0 1769984 1 1 ItemSound.itemdrop_mold 2 0 0 2 8754 0 3 3 3 0 dropitems.drop_mineral_unique_m00 dropitemstex.drop_mineral_unique_t00 icon.etc_mineral_unique_i00 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8755 0 3 3 3 0 dropitems.drop_mineral_unique_m00 dropitemstex.drop_mineral_unique_t00 icon.etc_mineral_unique_i00 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8756 0 3 3 3 0 dropitems.drop_mineral_unique_m00 dropitemstex.drop_mineral_unique_t00 icon.etc_mineral_unique_i00 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8757 0 3 3 3 0 dropitems.drop_mineral_unique_m00 dropitemstex.drop_mineral_unique_t00 icon.etc_mineral_unique_i01 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8758 0 3 3 3 0 dropitems.drop_mineral_unique_m00 dropitemstex.drop_mineral_unique_t00 icon.etc_mineral_unique_i01 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8759 0 3 3 3 0 dropitems.drop_mineral_unique_m00 dropitemstex.drop_mineral_unique_t00 icon.etc_mineral_unique_i02 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8760 0 3 3 3 0 dropitems.drop_mineral_unique_m00 dropitemstex.drop_mineral_unique_t00 icon.etc_mineral_unique_i02 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8761 0 3 3 3 0 dropitems.drop_mineral_unique_m00 dropitemstex.drop_mineral_unique_t00 icon.etc_mineral_unique_i02 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 2 8762 0 3 3 3 0 dropitems.drop_mineral_unique_m00 dropitemstex.drop_mineral_unique_t00 icon.etc_mineral_unique_i03 0 2 53 0 0 1 1 ItemSound.itemdrop_mold 2 0 0 Scrolls etcitemgrp 2 729 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_scroll_of_enchant_weapon_i04 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 730 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_scroll_of_enchant_armor_i04 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 731 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_scroll_of_enchant_weapon_i01 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 1 0 2 732 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_scroll_of_enchant_armor_i01 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 1 0 2 947 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_scroll_of_enchant_weapon_i03 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 948 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_scroll_of_enchant_armor_i03 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 949 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_scroll_of_enchant_weapon_i01 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 950 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_scroll_of_enchant_armor_i01 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 951 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_scroll_of_enchant_weapon_i02 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 952 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_scroll_of_enchant_armor_i02 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 953 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_scroll_of_enchant_weapon_i01 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 954 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_scroll_of_enchant_armor_i01 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 955 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_scroll_of_enchant_weapon_i01 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 956 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_scroll_of_enchant_armor_i01 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 957 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_scroll_of_enchant_weapon_i01 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 958 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_scroll_of_enchant_armor_i01 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 959 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_scroll_of_enchant_weapon_i05 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 960 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_scroll_of_enchant_armor_i05 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 961 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_scroll_of_enchant_weapon_i01 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 962 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_scroll_of_enchant_armor_i01 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 6569 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_blessed_scrl_of_ench_wp_a_i04 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 6570 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_blessed_scrl_of_ench_am_a_i04 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 6571 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_blessed_scrl_of_ench_wp_b_i03 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 6572 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_blessed_scrl_of_ench_am_b_i03 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 6573 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_blessed_scrl_of_ench_wp_c_i02 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 6574 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_blessed_scrl_of_ench_am_c_i02 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 6575 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_blessed_scrl_of_ench_wp_d_i01 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 6576 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_blessed_scrl_of_ench_am_d_i01 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 6577 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_blessed_scrl_of_ench_wp_s_i05 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0 2 6578 0 3 6 3 0 dropitems.drop_scroll_m00 dropitemstex.drop_scroll_t00 icon.etc_blessed_scrl_of_ench_am_s_i05 0 120 18 0 0 1 1 ItemSound.itemdrop_scroll 2 0 0
  4. lel didn't know that.. so, great work le memer xD
  5. I'm noob on AE but for me from what i've seen, it's nice one for a first try but you could make it kinda darker, i can't read the sub text cause it's too bright. But for first time work, it's good! Nice work mate
  6. I like this HTML build you've done for a Custom Server it's a nice idea, i prefer more "clean" and "retail" HTMLs but this one is really cool! Nice work mate.
  7. https://www.youtube.com/watch?v=dnAcpaHkr5I
  8. ολα μπορω να τα ανεχτω αλλα Κατερινα Στικουδη;
  9. sure. εγω παντως το εχω ;p
  10. That's a great idea. It's not about money 5,10 euro it's not that much, but as IpotoniC says only serious server owners will do this, kids which opens with a free shared pack from 2k10 with a rename and a free shared website won't do this for sure and we won't join these servers as well, so this will be something good for the begin in order to see something interesting. Still there will be some trash servers for sure, but at least this will increase the serious servers count than the trash servers.
  11. I don't know what happened mate, i'm just saying that if you made spam this could be the reason of your ban
  12. I guess it was counted as spam and not trolling and spam is not allowed everywhere. Only on spam topics ofc
  13. I will totally agree with this. Can't be more true.. And that's why in order to get a decent balance (ofc will never be "Full balanced" as many server owners says) you have to edit skills, formulas, etc based on the high enchants, the amount of buffs, the duration of buffs, the full enchantment and so on.
  14. Yeap that's true. It's not about which project you use, but the work you put on it. Ofc if you get a well developed project you will need less work on some things and you got a change to build something better but still you need to work a lot. The bad thing with the most "admins" on l2 scene is that they will always look for a project with 0 bugs, 0 problems, full of balance, etc something that is not exist. From what i've seen the last years from admins which i helped on some things they get a pack and they will find one problem and they will start blame the project owner, the developer that build the server and he won't even think that he can't get files without problems,bugs,etc.
  15. I guess that will attract some devs to work on it, but if it will be an opensource project will die again soon. And i say this cause think about IL and H5, there are so many free/paid projects and check how many servers are opened. For example let's say about GF,Freya, there is only 1 or 2 projects which are currently no more working on them and look how many GF,Freya servers are out there online. L2Classic did a comeback and made some oldschool players to love it and start playing again but if it will be a public project imagine 3,4 L2Classic servers to be opened every week.. It will die very soon. (My Opinion ofc)
  16. And you still didn't answer on MeVsYou's question.. Just forget about if they respect you or not, you got a change here, answer on MeVsYou's question if you're about to respect rules or not, if you want to receive some help, give some help back to him otherwise you'll never get your change.
  17. Please re-read the rules and edit your topic.
  18. it can be much easier if you just add it on the L2RaidBossInstance.java like this if (player.isInParty()) { + if (getNpcId() == 25325 && !player.isNoble()) // barakielId = 25325; + { + + for(L2PcInstance newNoble : player.getParty().getPartyMembers()) + { + newNoble.setNoble(true, true); + newNoble.sendMessage("You Are Now a Noble, You Are Granted With Noblesse Status, And Noblesse Skills."); + } + + } for (L2PcInstance member : player.getParty().getPartyMembers()) { RaidBossPointsManager.getInstance().addPoints(member, getNpcId(), (getLevel() / 2) + Rnd.get(-5, 5));
  19. lel xd xdem will never stop working on aCis ;p
  20. cancel cost of your Engagement/Marriage is 5.000.000 Adena retail cost (20% of wedding price) so gimme my money!
  21. gimme your 20% of your adena since you divorce me ;p
  22. i'm w/o sleep mate didn't get it right i guess ;p
×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock