搜索论坛
显示结果为标签'l2jsunrise'。
-
摘自:l2jbrazil 作者:Nezuko [L2jSunrise] Sistema buff SHOP 玩家使用过 .buffshop 命令 摆摊出售自己的BUFF, https://prnt.sc/tdagvs https://prnt.sc/tdah21 https://prnt.sc/tdah9t https://prnt.sc/tdahil https://prnt.sc/tdahpg https://prnt.sc/tdahx4 https://prnt.sc/tdai6w https://prnt.sc/tdaid2 https://prnt.sc/tdaik3 https://prnt.sc/tdaiyj 下载地址 https://www.mediafire.com/file/zmmm75q8rn6i90c/Improved+Buff+shop+falta.rar/file (记得注释掉 BuffShopManager.java 文件的第 217 行,一切正常)
-
来源:l2jbrazil 将两个相同属性的护身符合并成时间更长的护身符 /* * Copyright (C) 2004-2015 L2J DataPack * * This file is part of L2J DataPack. * * L2J DataPack is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * L2J DataPack is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package handlers.voicedcommandhandlers; import java.util.Arrays; import java.util.Date; import java.util.HashMap; import java.util.Map; import java.util.Objects; import l2r.gameserver.handler.IVoicedCommandHandler; import l2r.gameserver.model.actor.instance.L2PcInstance; import l2r.gameserver.model.items.instance.L2ItemInstance; import l2r.gameserver.util.Util; /** * This is a clean version of my original idea back in 2012. * @author Nik */ public class CombineTalismans implements IVoicedCommandHandler { private static final String[] VOICED_COMMANDS = { "combinetalismans" }; @Override public boolean useVoicedCommand(String command, L2PcInstance activeChar, String params) { if (VOICED_COMMANDS[0].equalsIgnoreCase(command)) { final Map<Integer, L2ItemInstance> talismans = new HashMap<>(); activeChar.sendMessage("Combining talismans..."); try { //@formatter:off Arrays.stream(activeChar.getInventory().getItems()) .filter(Objects::nonNull) .filter(L2ItemInstance::isShadowItem) .filter(i -> Util.contains(TALISMAN_IDS, i.getId())) // Filter that only talismans go through. .sorted((i1, i2) -> Boolean.compare(i2.isEquipped(), i1.isEquipped())) // Equipped talismans first (so we can then pick equipped first for charging). .forEach(item -> { final L2ItemInstance talismanToCharge = talismans.putIfAbsent(item.getId(), item); if ((talismanToCharge != null) && activeChar.destroyItem(VOICED_COMMANDS[0], item, activeChar, false)) { talismanToCharge.decreaseMana(false, -item.getMana()); // Minus in decrease = increase :P } }); //@formatter:on activeChar.sendMessage(talismans.isEmpty() ? "...there were no combined talismans." : "...results:"); talismans.values().forEach(i -> activeChar.sendMessage(i.getName() + " has been successfully combined.")); } catch (Exception e) { activeChar.sendMessage("There was a problem while combining your talismans, please consult with an admin, and tell him this date: " + Util.getDateString(new Date(System.currentTimeMillis()))); _log.warn("Error while combining talismans: " + e); } } return true; } @Override public String[] getVoicedCommandList() { return VOICED_COMMANDS; } //@formatter:off // All talismans inside high five client. public static final int[] TALISMAN_IDS = { 9914, // Blue Talisman of Power Increases P. Atk. when in use. Effect does not stack with additional Talismans of the same type. Shadow Item that cannot be traded or dropped. 9915, // Blue Talisman of Wild Magic Increases Critical Rate of magic attacks temporarily. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9916, // Blue Talisman of Defense Temporarily decreases P. Def./M. Def./Evasion and increases P. Atk./M. Atk./Atk. Spd./Casting Spd./speed. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9917, // Red Talisman of Minimum Clarity Decreases skill MP consumption when used. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9918, // Red Talisman of Maximum Clarity Temporarily greatly decreases skill MP consumption when used. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9919, // Blue Talisman of Reflection When used, grants a skill whereby any physical melee damage received will be reflected back onto your attacker. Effect does not stack with additional talismans of the same type. This item cannot be traded or dropped. 9920, // Blue Talisman of Invisibility Makes you invisible for a while, so you cannot be attacked by enemies. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9921, // Blue Talisman - Shield Protection When used, increases the protection power of a shield. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9922, // Black Talisman - Mending When used, it cures bleeding. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9923, // Black Talisman - Escape When used, it cancels all Movement Inability States. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9924, // Blue Talisman of Healing It increases HP Recovery Magic temporarily. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9925, // Red Talisman of Recovery It recovers HP/CP. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9926, // Blue Talisman of Defense When used, increases P. Def. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9927, // Blue Talisman of Magic Defense When used, increases magic P. Def. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9928, // Red Talisman of Mental Regeneration When used, it speeds up MP recovery. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9929, // Blue Talisman of Protection When used, increases the protection power of a shield. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9930, // Blue Talisman of Evasion When used, increases evasion and reduces Critical Damage possibilities. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9931, // Red Talisman of Meditation When used, it greatly increases MP Recovery Rate. You cannot move during recovery. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9932, // Blue Talisman - Divine Protection When used, P. Def. and M. Def. greatly increase momentarily. Only one effect is applied when you wear the same two talismans. Shadow Item with no exchange/drop available 9933, // Yellow Talisman of Power Increases P. Atk. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9934, // Yellow Talisman of Violent Haste Increases Atk. Spd. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9935, // Yellow Talisman of Arcane Defense Increases Magic Defense. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9936, // Yellow Talisman of Arcane Power Increases M. Atk. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9937, // Yellow Talisman of Arcane Haste Increases Casting Spd. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9938, // Yellow Talisman of Accuracy Increases Accuracy. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9939, // Yellow Talisman of Defense Increases Defense. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9940, // Yellow Talisman of Alacrity Increases P. Atk., M. Atk., and Speed. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9941, // Yellow Talisman of Speed Increases Speed. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9942, // Yellow Talisman of Critical Reduction When used, it decreases damages from physical critical attacks. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9943, // Yellow Talisman of Critical Damage Increases Critical P. Atk. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9944, // Yellow Talisman of Critical Dodging When used, it decreases physical Critical Damage possibility. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9945, // Yellow Talisman of Evasion Increases Evasion. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9946, // Yellow Talisman of Healing Increases HP Recovery Magic temporarily. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9947, // Yellow Talisman of CP Regeneration Increases CP recovery. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9948, // Yellow Talisman of Physical Regeneration Increases HP recovery. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9949, // Yellow Talisman of Mental Regeneration Increases MP recovery. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9950, // Grey Talisman of Weight Training Increases weapon Weight Limit. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9951, // Grey Talisman of Mid-Grade Fishing Obtains Mid-Grade Fishing Mastery Level (Lv 18). Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9952, // Orange Talisman - Hot Springs CP Potion Create 1 Hot Springs CP Potion following the consumption of 16 Soul Ore. Effect does not stack with additional Talismans of the same type. Shadow Item that cannot be traded or dropped. 9953, // Orange Talisman - Elixir of Life Consumes 50 Soul Ore to create an A-Grade Elixir of Life. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9954, // Orange Talisman - Elixir of Mental Strength Consumes 57 Soul Ore to create an A-Grade Elixir of Mental Strength. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9955, // Black Talisman - Vocalization Breaks magic silence. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9956, // Black Talisman - Arcane Freedom When used, it cancels Magical Movement Inability States. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9957, // Black Talisman - Physical Freedom When used, it cancels Physical Movement Inability States. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9958, // Black Talisman - Rescue When used, it cancels Physical Skill Inability States. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9959, // Black Talisman - Free Speech Breaks silence. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9960, // White Talisman of Bravery Increases Resistance to mental attacks. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9961, // White Talisman of Motion When equipped, Resistance to Paralysis increases. Only one effect is applied when you wear the same two talismans. Shadow Item with no exchange/drop available 9962, // White Talisman of Grounding When equipped, Resistance to Shock attacks increases. Only one effect is applied when you wear the same two talismans. Shadow Item with no exchange/drop available 9963, // White Talisman of Attention When equipped, Resistance to sleep attacks increases. Only one effect is applied when you wear the same two talismans. Shadow Item with no exchange/drop available 9964, // White Talisman of Bandages When equipped, Resistance to bleed attacks increases. Only one effect is applied when you wear the same two talismans. Shadow Item with no exchange/drop available 9965, // White Talisman of Protection Increases Resistance to buff disarming magic. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 9966, // White Talisman of Freedom When equipped, Resistance to Hold increases. Only one effect is applied when you wear the same two talismans. Shadow Item with no exchange/drop available 10141, // Grey Talisman - Yeti Transform Can be transformed into a Yeti for a certain amount of time. Transformation is cancelled if unequipped. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 10142, // Grey Talisman - Buffalo Transform Can be transformed into a Buffalo for a certain amount of time. Transformation is cancelled if unequipped. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 10158, // Grey Talisman of Upper Grade Fishing Obtains Upper-Grade Fishing Mastery Level (Lv 24). Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 10416, // Blue Talisman - Explosion Increases P. Atk./Atk. Spd. Effect does not stack with additional Talismans of the same type. This item cannot be exchanged or dropped. 10417, // Blue Talisman - Magic Explosion Increases M. Atk. and M. Critical Rate . Effect does not stack with additional Talismans of the same type. This item cannot be exchanged or dropped. 10418, // White Talisman - Storm Increases Wind attribute. Effect does not stack with additional Talismans of the same type. This item cannot be exchanged or dropped. 10419, // White Talisman - Darkness Increases Dark attribute. Effect does not stack with additional Talismans of the same type. This item cannot be exchanged or dropped. 10420, // White Talisman - Water Increases Water attribute. Effect does not stack with additional Talismans of the same type. This item cannot be exchanged or dropped. 10421, // White Talisman - Fire Instantly increases fire elemental. Only one effect is applied when you wear the same two talismans. Projection Weapons with no exchange/drop available 10422, // White Talisman - Light Increases holy attribute. Effect does not stack with additional Talismans of the same type. This item cannot be exchanged or dropped. 10423, // Blue Talisman - Self-Destruction Damages a nearby enemy with a powerful explosion. Effect does not stack with additional Talismans of the same type. This item cannot be exchanged or dropped. 10424, // Blue Talisman - Greater Healing Increases heal power. Effect does not stack with additional Talismans of the same type. This item cannot be exchanged or dropped. 10518, // Red Talisman - Life Force Completely restores MP/HP when used. Effect does not stack with additional Talismans of the same type. This item cannot be exchanged or dropped. 10519, // White Talisman - Earth Increases Earth attribute defense by 50 when used. Effect does not stack with additional Talismans of the same type. This item cannot be exchanged or dropped. 10533, // Blue Talisman - P. Atk. Increases P. Atk. when used. Effect does not stack with additional Talismans of the same type. A Shadow Item which cannot be exchanged or dropped. 10534, // Blue Talisman - Shield Defense Shield Def. increases when used. Effect does not stack with additional Talismans of the same type. A Shadow Item which cannot be exchanged or dropped. 10535, // Yellow Talisman - P. Def. P. Def. increases when equipped. Effect does not stack with additional Talismans of the same type. A Shadow Item which cannot be exchanged or dropped. 10536, // Yellow Talisman - M. Atk. Increases M. Atk. when equipped. Effect does not stack with additional Talismans of the same type. A Shadow Item which cannot be exchanged or dropped. 10537, // Yellow Talisman - Evasion Increases Evasion when equipped. Effect does not stack with additional Talismans of the same type. A Shadow Item which cannot be exchanged or dropped. 10538, // Yellow Talisman - Healing Power HP recovery M. Atk. increases when equipped. Effect does not stack with additional Talismans of the same type. A Shadow Item which cannot be exchanged or dropped. 10539, // Yellow Talisman - CP Recovery Rate CP recovery rate increases when equipped. Effect does not stack with additional Talismans of the same type. A Shadow Item which cannot be exchanged or dropped. 10540, // Yellow Talisman - HP Recovery Rate Increases HP Recovery Rate. Effect does not stack with additional Talismans of the same type. A Shadow Item which cannot be exchanged or dropped. 10541, // Yellow Talisman - Low Grade MP Recovery Rate Increases MP Recovery Rate. Effect does not stack with additional Talismans of the same type. This item cannot be exchanged or dropped. 10542, // Red Talisman - HP/CP Recovery HP/CP are recovered when equipped. Effect does not stack with additional Talismans of the same type. A Shadow Item which cannot be exchanged or dropped. 10543, // Yellow Talisman - Speed Speed increases when equipped. Effect does not stack with additional Talismans of the same type. A Shadow Item which cannot be exchanged or dropped. 12815, // Red Talisman - Max CP Increases Max CP when equipped. Effect does not stack with additional Talismans of the same type. Shadow Item that cannot be exchanged or dropped. 12816, // Red Talisman - CP Regeneration Increases CP regeneration rate when equipped. Effect does not stack with additional Talismans of the same type. Shadow Item that cannot be exchanged or dropped. 12817, // Yellow Talisman - Increase Force Increases your Force Level when attacked while equipped. Effect does not stack with additional Talismans of the same type. Shadow Item that cannot be exchanged or dropped. 12818, // Yellow Talisman - Damage Transition Transfers a portion of damage you take onto your servitor while equipped. Effect does not stack with additional Talismans of the same type. Shadow Item that cannot be exchanged or dropped. 14604, // Red Talisman - Territory Guardian When used, Max CP is greatly increased and a certain amount of CP is greatly recovered. Only one effect is applied when you wear the same two talismans. Shadow Item with no exchange/drop available 14605, // Red Talisman - Territory Guard When used, Max CP is increased and a certain amount of CP is recovered. Only one effect is applied when you wear the same two talismans. Shadow Item with no exchange/drop available 14810, // Blue Talisman - Buff Cancel Cancels the buffs of nearby enemies upon use. Only one effect is applied when you wear the same two talismans. Shadow Item with no exchange/drop available 14811, // Blue Talisman - Buff Steal Steals the target's abnormal status upon use. Only one effect is applied when you wear the same two talismans. Shadow Item with no exchange/drop available 14812, // Red Talisman - Territory Guard When used, Max CP is greatly increased and a certain amount of CP is greatly recovered. Only one effect is applied when you wear the same two talismans. Shadow Item with no exchange/drop available 14813, // Blue Talisman - Lord's Divine Protection Upon use, greatly decreases the damage received during PvP. Only one effect is applied when you wear the same two talismans. Shadow Item with no exchange/drop available 14814, // White Talisman - All Resistance Increases Resistance to all elements. Effect does not stack with additional Talismans of the same type. This item cannot be traded or dropped. 17051, // Talisman - STR Event item. STR +2 when equipped. Cannot be traded, dropped, destroyed, or used in the Olympiad. \\nThis item will be deleted in bulk after the regular maintenance time on Jul. 7. 17052, // Talisman - DEX Event item. DEX +2 when equipped. Cannot be traded, dropped, destroyed, or used in the Olympiad. \\nThis item will be deleted in bulk after the regular maintenance time on Jul. 7. 17053, // Talisman - CON Event item. CON +2 when equipped. Cannot be traded, dropped, destroyed, or used in the Olympiad. \\nThis item will be deleted in bulk after the regular maintenance time on Jul. 7. 17054, // Talisman - WIT Event item. WIT +2 when equipped. Cannot be traded, dropped, destroyed, or used in the Olympiad. \\nThis item will be deleted in bulk after the regular maintenance time on Jul. 7. 17055, // Talisman - INT Event item. INT +2 when equipped. Cannot be traded, dropped, destroyed, or used in the Olympiad. \\nThis item will be deleted in bulk after the regular maintenance time on Jul. 7. 17056, // Talisman - MEN Event item. MEN +2 when equipped. Cannot be traded, dropped, destroyed, or used in the Olympiad. \\nThis item will be deleted in bulk after the regular maintenance time on Jul. 7. 17057, // Talisman - Resistance to Stun Event item. Resistance to Stun +15 when equipped. Cannot be traded, dropped, destroyed, or used in the Olympiad. \\nThis item will be deleted in bulk after the regular maintenance time on Jul. 7. 17058, // Talisman - Resistance to Sleep Event item. Resistance to Sleep +15 when equipped. Cannot be traded, dropped, destroyed, or used in the Olympiad. \\nThis item will be deleted in bulk after the regular maintenance time on Jul. 7. 17059, // Talisman - Resistance to Hold Event item. Resistance to Hold +15 when equipped. Cannot be traded, dropped, destroyed, or used in the Olympiad. \\nThis item will be deleted in bulk after the regular maintenance time on Jul. 7. 17060, // Talisman - Paralyze Resistance Event item. Paralysis resistance +15 when equipped. Cannot be traded, dropped, destroyed, or used in the Olympiad. \\nThis item will be deleted in bulk after the regular maintenance time on Jul. 7. 17061, // Talisman - ALL STAT Event item. All stats increase by 1 when equipped. Cannot be traded, dropped, destroyed, or used in the Olympiad. \\nThis item will be deleted after the regular maintenance on July 7th. 22326, // Blue Talisman - Buff Cancel Cancels the buffs of nearby enemies upon use. Only one effect is applies when you wear two of the same talismans. Cannot be exchanged or dropped. Can be destroyed. Can be stored in a private warehouse. 22327 // Blue Talisman - Buff Steal Stealsthe target's abnormal status upon use. Only one effect is applies when you wear two of the same talismans. Cannot be exchanged or dropped. Can be destroyed. Can be stored in a private warehouse. }; //@formatter:on }
-
转自:l2jbrasil 原作者:Nezuko 原文地址:https://www.l2jbrasil.com/topic/139243-museum-manager-h5-l2jsunrise/#comment-830520 玩家可查看各类排行,如金币,职业,道具,在线时间等(l2jsunrise自带布告栏也有排行榜功能哦) 适用于L2JSUNRISE,需手动校正部分源码 使用前请做好备份!~ 附件下载:【失效请回复,管理第一时间更新】 Museum Manager Lire L2JBrasil.zip
-
转自:l2jbrasil 原文地址:https://www.l2jbrasil.com/topic/140881-l2jsunrise-drop-calculator/#comment-831685 玩家可通过查询道具或者怪物,查看掉落 适用于L2JSUNRISE,需手动校正部分源码 使用前请做好备份!~ 附件下载:【失效请回复,管理第一时间更新】 Drop calculator.rar
-
【转自:l2jbrasil】可用于HF5,L2JSUNRISE源码,需手动校正部分源码 原文地址: https://www.l2jbrasil.com/topic/139645-dressme-100-try-skins-exclusive-l2jsunrise/ 玩家使用 .dressme 命令可进行实时换装 下载地址Advanced Dressme Engine [EPIC] v3.2 Lire.rar 温馨提示:改动较多,建议先备份好源码再开始加入该扩展!~
-
转自:l2jbrasil 原文地址:https://www.l2jbrasil.com/topic/140882-l2jsunrise-rebirth-engine/#comment-830530 重生系统 适用于L2JSUNRISE,需手动校正部分源码 使用前请做好备份!~ 附件下载:【失效请回复,管理第一时间更新】 Rebirth Engine.rar
-
源码功能: 可扩展性强!~ - 98% of high five skills - 98% of high five quests and instances - Fully working world grand bosses - Fully working instanced grand bosses - Fully working high five instances - Fully working Castle dungeon instances - Fully working quests - scripts in java - Fully working high five quests - Fully working territory war - Fully working sieges - Fully working fortresses - Fully working destruction bosses - Fully working prime shop - Fully working npc routes - Fully working antharas lair - Fully working dragon valley - Fully working monsters mage - fighter AIs - Fully working fisherman tournament - Fully working secondary password system - Fully working kamaloka instance Grandbosses: - Fully working freya normal/hard mode - Fully working zaken all modes - Fully working frintezza - Fully working antharas - Fully working baium - Fully working valakas - Fully working orfen - Fully working core Geo engine: - Reworked geo engine, movement Miscellaneous: - Reworked network controller (mmocore) - Reworked monsters behavior for better performance - Custom features: - Community board with top lists, shops, teleports etc - User commands (exp, trade, buff block etc) - Npc - item - voiced buffer - Npc - voiced services npc - Premium service - Backup manager - Leaderboards - Pvp zones - Vote system - Champion mobs - Pvp - pk color system - Fake npcs look like players - In game simple antibot system - Configurable formulas - Auto restart - Alternative payment system - Custom announce system - Advanced configurable enchant scrolls https://www.mediafire.com/file/k9ix4w7628an9js/sunrise_full.rar/file
-
[L2JSunrise] Congfig关闭精炼发光 现在大部分武器补丁光效都是那种绑定武器的特效,如果精炼了一般会被覆盖特效 如果想像我一样想关闭精炼特效,就像我这么设置即可【HF测试有效】 修改game\config\main 中的 Character.ini 搜索AugmentationNGGlowChance 修改为0 AugmentationNGGlowChance = 0 AugmentationMidGlowChance = 0 AugmentationHighGlowChance = 0 AugmentationTopGlowChance = 0 适用 普通精炼 不适用定向精炼
-
L2JSunrise 开源介绍及相关源码地址 L2Jsunrise可能是扩展H5最多的源了, 布告栏功能多而且花哨, 不足:网上能找到的L2jsunrise开源,基本都是收费购买后,二次发布的,部分缺少关键文件,而且其源本身也有外网验证! 总结:单机可以,外网自重! 官网地址