# hkrpg-server **Repository Path**: hoilai/hkrpg-server ## Basic Information - **Project Name**: hkrpg-server - **Description**: hkrpg-server - **Primary Language**: Unknown - **License**: AGPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-04-28 - **Last Updated**: 2025-04-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README __本项目正在开发中!部分游戏功能可能无法正常运行!__ [EN](README.md) | [简中](docs/README_zh-CN.md) | [繁中](docs/README_zh-TW.md) | [JP](docs/README_ja-JP.md) 💡 功能列表 • [√] 商店系统 • [√] 队伍编成 • [√] 抽卡系统 - 支持自定义概率 • [√] 战斗系统 - 部分场景技能存在错误 • [√] 场景交互 - 行走模拟、场景互动、实体加载 • [√] 基础角色培养 - 存在少量不影响体验的bug • [√] 任务系统 - 匹诺康尼前主线基本可玩,后续剧情存在较多bug • [√] 好友系统 • [√] 忘却之庭 & 虚构叙事 & 末日幻影 • [√] 模拟宇宙 & 黄金与机械 • [√] 成就系统 - 大部分成就可完成 • [ ] 更多功能 - 开发中 注意:新版本"某游戏"更新后部分功能可能需要时间适配,请关注我们的更新。自2.3版本起,我们建立了支持测试版的私有分支,将在稳定后尽快合并到主分支。 🍗 使用指南 快速开始 1. 从[Action](https://github.com/EggLink/DanhengServer-Public/actions)下载可执行文件 2. 解压`DanhengServer.zip`到任意目录(建议使用英文路径) (可选)从源代码WebServer文件夹下载`certificate.p12`以启用HTTPS模式 3. 下载资源文件: • 主资源:[https://github.com/Dimbreath/StarRailData](https://github.com/Dimbreath/StarRailData) 解压到`Resources`目录 • 额外配置:[https://github.com/EggLinks/DanhengServer-Resources](https://github.com/EggLinks/DanhengServer-Resources) 只需下载`Resources/Config`文件夹 • ExcelOutput等数据文件使用Dimbreath版本 4. 运行GameServer.exe 5. 启动代理,运行游戏即可体验 编译指南 本项目基于.NET Framework开发 环境要求: • [.NET](https://dotnet.microsoft.com/) • [Git](https://git-scm.com/downloads) Windows系统 ```shell git clone --recurse-submodules https://github.com/EggLink/DanhengServer-Public.git cd DanhengServer dotnet build # 编译项目 ``` Linux系统(Ubuntu 20.04) ```shell wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb sudo dpkg -i packages-microsoft-prod.deb rm packages-microsoft-prod.deb # 安装.NET SDK sudo apt-get update && \ sudo apt-get install -y dotnet-sdk-8.0 ``` • 编译运行命令 ```shell git clone --recurse-submodules https://github.com/EggLink/DanhengServer-Public.git cd DanhengServer .\dotnet build # 编译 ./Gameserver ``` ❓ 帮助中心 • 支持Android系统 ❕️ 常见问题 如需帮助或解决常见问题,请加入我们的Discord服务器:[https://discord.gg/xRtZsmHBVj](https://discord.gg/xRtZsmHBVj) 🙌 特别鸣谢 • Weedwacker - 提供kcp实现 • [SqlSugar](https://github.com/donet5/SqlSugar) - ORM框架 • [LunarCore](https://github.com/Melledy/LunarCore) - 部分数据结构与算法参考