跳转到帖子
Facebook Instagram Twitter Youtube

杀气丶

VIP
  • 帖子数

    90
  • 注册日期

  • 上次访问

关于杀气丶

最近的访问者

访问者区块已禁用,不会显示给其他人。

杀气丶的成就

奇岩商贾

奇岩商贾 (7/14)

  • 登录社区满一年
  • 反响热烈
  • 第一次回复
  • 社区入门
  • 登录满三十天

最近的徽章

0

声誉

  1. 版本 1.0.0

    1次下载

    L2JETERNITY-2201-main 服务端【无源码-转自MXC】 口碑很好的项目组,无源码,服务端有人数限制【非本人限制】 项目组官网 https://l2jeternity.com # L2JETERNITY-2201 https://l2jeternity.com/index.php?/topic/193-revision-2201/ 布告栏系统-功能多 出售BUFF,类似离线商店 多功能服务-传送-buff-纹身-商店-等 排行榜 buff 狩猎信息 掉落查询 命令 商店 部分功能NPC截图
    免费
  2. 血玫瑰天堂2,2022年3月份更新 此次更新为内核更新,无需更新登陆器 1,加入布告栏拍卖系统,玩家可使用金币进行购买和自行拍卖多余道具! 2,加入.dressme 命令换装系统,功能如截图所示,可变换:武器,装备,盾牌,斗篷及头饰外观。 仅变换外观,属性不变! 游戏内输入 .dressme 打开换装系统界面!~ 可保存到 按键宏内 !~ 3,加入 智能AI 假人, 假人不定期出售及购买高级装备及有趣头饰道具等! 能捡大漏哦
  3. 摘自: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 行,一切正常)
  4. 来源: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 }
  5. AuctionHouseItem.java 搜索: SELECT object_id, item_id, count, enchant_level, loc, loc_data, custom_type1, custom_type2, mana_left, time FROM items WHERE owner_id=? AND loc=? 改为: SELECT object_id, item_id, count, enchant_level, loc, loc_data, custom_type1, custom_type2, mana_left, time, visual_item_id FROM items WHERE owner_id=? AND loc=?
  6. 版本 1.0.0

    1次下载

    软件是几年前自己汉化的,现更新了新章节的DAT和连接! DAT新章节源码来源于L2MIKO的GitHub 地址 https://github.com/L2Miko/L2FileEdit 在使用过程中遇到的bug,可反馈到血玫瑰社区!www.l2fater.cn!~
    免费
  7. 版本 1.0.0

    1次下载

    PS DDS插件 v8.55.0109.1800 汉化版_ 使用PS修改dds文件会用到此插件,汉化版, 将Plug-ins文件夹解压到PS目录下覆盖完成汉化
    免费
  8. 进入 血玫瑰社区 注册了会员 就已经是大家庭的一员啦, 如果有QQ.可以加我QQ51605539 社区QQ群 262814036 血玫瑰社区开放的 血玫瑰天堂2 芙蕾雅H5伺服器 www.xmgtt2.top 血玫瑰天堂2Q群 48856842
  9. 血玫瑰天堂2 ,2022年2月份更新 新年伊始,血玫瑰天堂2也换新界面啦 界面UI更改位置,无额外失效扩展 字体更改,由Mingliu字体更改为Oppo字体 背景贴图改动,由H5芙蕾雅第五季血雾版更改为启航记-风云再起登录背景 引入 作者 NevesOma 的新角色动画[暂不使用] 人类 其它职业也有微调动画,游戏内体验 更新5个血玫瑰天堂登录溅射动画 更新游戏内载入界面,暂定版本画面为矮人和兽人掰手腕这张原画,以及minilogo加入血玫瑰天堂
  10. 转自:l2jbrasil 原作者:Nezuko GM可使用 //classbalance 打开职业平衡性管理界面进行相关操作 Balancer Lire L2JBrasil.rar
  11. 版本 1.0.0

    3次下载

    WOTgreal Package Exporter 解密 .u 文件工具 解密system内 u文件工具,如 interface 等!
    免费
  12. 首先,准备一份编译好的build文件(源码编译出来的)随便解压到哪个盘里! 以l2j开源的为例(一般l2j源编译出来的基本如下图) 接下来就是安装数据库了 复制一份大家之前使用的免导版服务端数据库 主要复制上图的三个文件!复制到第一步你解压出来的文件夹 然后打开 启动2 MySQL数据库启动.bat 接下来就是 安装服务端的数据库了 在tools文件夹里面有 datainstall.bat (大同小异) 打开dataintall.bat 在继续的时候会出现数据库地址错误 需要手动指定数据库位置 现在复制我们刚刚复制过来的mysql位置 E:\adfadfaf\mysql\bin 然后在datainstall.bat里面粘贴(鼠标右键粘贴) 回车 会出现下图 接下来就是输入数据库的账号密码了 这个账号密码就是我们之前复制过来的免导版的那个数据库账号密码 一般默认的都是root 当然自己建立的数据和密码就另说了 注意:部分l2j数据库密码那里默认密码为空,需要手动输入root 接下来就一路回车就行了 直到它提示你 还是回车或者按y 接下来就按回车吧等待安装完毕 这样一个免导版就安装完了 不同的源码会有不同的安装方式,这个教程仅适用于部分L2J源码 杀气手打教程2018.11.1
  13. 以下内容搜集于互联网 前言最近几年兴起的项目构建插件层出不穷,但总的来说 gradle 和maven 的市场使用份额最大,maven出现的早 好多人也比较喜欢,gradle是后来出现的,但是gradle 的功能个人感觉很强大。下面我简易的说下步骤。1.下载并安装gradle 并解压至如下目录 2.配置gradle环境 3 验证配置是否正确 4. 再eclipse 中下载插件gradle 插件并配置 5. 重启eclipse 新建项目就可以看见gradle 选项 注意事项: 新建项目时gradle 的设置要注意 下图二 2.gradle 插件为我们提供了一个常用的task列表,便于我们加快我们开发速度。

天堂2中文开源社区L2FATER.CN

专注于玩家游戏体验的交流社区.

血玫瑰社区bbs.l2fater.cn

关于血玫瑰社区

Important Links

×
×
  • 创建新的...