-
Posts
1,741 -
Joined
-
Last visited
-
Days Won
8 -
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by DrenepiaWorld
-
Request Fake Players System For Interlude
DrenepiaWorld replied to LightWarden's question in Request Server Development Help [L2J]
buy?.. R.I.P. English. -
καλημερα μαν
-
with a shared (and outdated i guess) precompiled pack ;p
-
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
-
Discussion Lunar Revel Shop - Share Your Shops!
DrenepiaWorld replied to Katherine's topic in General Discussion [English]
-
Discussion Npc Preview & Question
DrenepiaWorld replied to DownUnder's topic in General Discussion [English]
lel didn't know that.. so, great work le memer xD -
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
-
Discussion Npc Preview & Question
DrenepiaWorld replied to DownUnder's topic in General Discussion [English]
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. -
https://www.youtube.com/watch?v=dnAcpaHkr5I
-
ολα μπορω να τα ανεχτω αλλα Κατερινα Στικουδη;
-
sure. εγω παντως το εχω ;p
-
Discussion Joke Private Servers
DrenepiaWorld replied to IpotoniC's topic in General Discussion [English]
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. -
I don't know what happened mate, i'm just saying that if you made spam this could be the reason of your ban
-
I guess it was counted as spam and not trolling and spam is not allowed everywhere. Only on spam topics ofc
-
Discussion So Boorinio Joined L2Jfrozen
DrenepiaWorld replied to Elfo's topic in Server Development Discussion [L2J]
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. -
Discussion So Boorinio Joined L2Jfrozen
DrenepiaWorld replied to Elfo's topic in Server Development Discussion [L2J]
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. -
Discussion So Boorinio Joined L2Jfrozen
DrenepiaWorld replied to Elfo's topic in Server Development Discussion [L2J]
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) -
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.
-
Help Can Someone Please Help Me With A Simple Logo?
DrenepiaWorld replied to doctoras2's topic in Requests & Help
Please re-read the rules and edit your topic. -
Code Noblesse Killing Barakiel L2Jacis
DrenepiaWorld replied to Reborn12's topic in Server Shares & Files [L2J]
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)); -
Discussion So Boorinio Joined L2Jfrozen
DrenepiaWorld replied to Elfo's topic in Server Development Discussion [L2J]
lel xd xdem will never stop working on aCis ;p -
cancel cost of your Engagement/Marriage is 5.000.000 Adena retail cost (20% of wedding price) so gimme my money!
-
gimme your 20% of your adena since you divorce me ;p
-
i'm w/o sleep mate didn't get it right i guess ;p
