{bbname}

搬砖狐 | Alicia 发表于 2025-8-10 19:14:16

ServerReplay (ServerReplay)-MOD模组

ServerReplay (ServerReplay)Github |相关wiki |源站链接支持: fabricServerReplay 是一个完全服务器端实现的重放模组,可以记录服务器上在线的多名玩家或指定的区块区域,并生成可用于重放的重放文件。https://i.sodamc.com/modrinth/jckmgtrp2d.jpg

为什么使用服务器端重放?
与客户端的Replay Mod相比,服务器端录制具有许多优点:
可以记录静态区块可以指定精确的区块大小(不受服务器视距限制)记录的区块可以在不影响重放的情况下被卸载没有区块闪烁(由于卸载和加载区块导致的)不会被录制加载区块(例如:PCRC)记录者可以跳过区域卸载时间段可以记录个别玩家玩家不需要安装重放Mod可以同时记录所有玩家的视角可以使用配置自动记录可由操作员(或有权限的任何人)随时开始记录
然而,也存在一些缺点和已知问题:
某些功能不会被区块录制记录,例如自定义BOSS血条要观看重放,必须从服务器下载文件玩家录制与客户端Replay Mod可能不完全一致Mod兼容性,此Mod可能与其他干扰网络的Mod冲突,如果遇到任何兼容性问题,请提交错误。

使用
该模组需要 Fabric启动器、fabric-api、fabric-kotlin。
在服务器上有两种录制方式,可以配置为跟随并记录玩家视角,也可以记录静态区域的区块。
快速开始
本节将简要指导您进行基本设置,同时包含一些重要信息。
记录玩家
可以使用 `/replay start players` 命令在服务器上记录玩家,例如:
/replay start players senseiwells
/replay start players @a
/replay start players @aCopy已复制!
玩家记录器与玩家绑定,会根据服务器视距进行记录。如果玩家离开或服务器停止,则重放会自动停止并保存。或者,如果您希望手动停止录制,可以使用 `/replay stop players` 命令,例如:
/replay stop players senseiwells
/replay stop players @r
/replay stop players senseiwells falseCopy已复制!
然后,重放文件将保存到指定的`\"player_recording_path\"`位置,在玩家UUID的文件夹中,默认路径为`./recordings/players//.mcpr`。然后将此文件放入客户端的`./replay_recordings`文件夹中,并使用重放Mod打开。
记录区块
要在服务器上记录区块,可以使用 `/replay start chunks fromtoinnamed` 命令,例如:
/replay start chunks from -5 -5 to 5 5 in minecraft:overworld named MyChunkRecording
/replay start chunks from 54 67 to 109 124
/replay start chunks from 30 30 to 60 60 in minecraft:the_netherCopy已复制!
您还可以指定一个区块及其周围的半径被记录,使用`/replay start chunks aroundradiusinnamed` 命令,例如:
/replay start chunks around 0 0 radius 5
/replay start chunks around 67 12 radius 16 in minecraft:overworld named Perimeter RecorderCopy已复制!
区块记录器是静态的,无法移动,它们记录指定的区块。重放开始后,指定的区块将被加载(如果有必要则生成)。然后,记录器不会再加载这些区块。如果服务器停止,重放将自动停止并保存。以上述命令手动停止记录时,将会将重放保存到指定的`\"chunk_recording_path\"`路径中。
命令
所有命令的说明:
`/replay enable` - 启用重放模组自动记录玩家。`/replay disable` - 禁用重放模组自动记录玩家。`/replay start players` - 手动开始记录给定玩家的重放。`/replay stop players` - 手动停止记录给定玩家的重放,并可选择是否保存。`/replay start chunks ...` - 手动开始记录给定区块的重放。`/replay stop chunks ...` - 手动停止记录给定区块的重放,并可选择是否保存。`/replay stop all` - 手动停止所有区块或玩家的重放,并可选择是否保存。`/replay status` - 发送重放模组的状态消息。`/replay reload` - 重新加载重放模组的配置文件。
配置
在启动服务器后,路径`./config/ServerReplay/config.json`将生成一个新的配置文件,示例如下:
// 配置示例参见上述说明Copy已复制!
区块配置
定义服务器启动时自动记录的区块区域。每个区块定义必须包括`\"name\"`,`\"dimension\"`,`\"from_x\"`,`\"to_x\"`,`\"from_z\"`和`\"to_z\"。例如:
{
\"chunks\": [
    {
      \"name\": \"My Chunks\",
      \"dimension\": \"minecraft:overworld\",
      \"from_x\": -5,
      \"from_z\": -5,
      \"to_x\": 5,
      \"to_z\": 5
    },
    {
      \"name\": \"My Nether Chunks\",
      \"dimension\": \"minecraft:the_nether\",
      \"from_x\": 100,
      \"from_z\": 50,
      \"to_x\": 90,
      \"to_z\": 60
    }
]
}Copy已复制!
谓词配置
可以定义一个谓词,确定服务器上自动记录的玩家。例如:
记录所有玩家:`{\"type\": \"all\"}`。仅记录具有特定名称或UUID的玩家:`{\"type\": \"has_name\"}`、`{\"type\": \"has_uuid\"}`。仅记录操作员:`{\"type\": \"has_op\"}`。仅记录特定队伍的玩家:`{\"type\": \"in_team\"}`。排除虚假玩家:`{\"type\": \"not\", \"predicate\": {\"type\": \"is_fake\"}}`。
以上就是ServerReplay模组的详细介绍,包括其特性、用法和配置说明。希望能帮助您充分了解并有效使用该模组。
来自Modrinth所有游戏版本1.21.61.21.71.21.81.21.51.21.41.20.61.21.11.21.31.20.11.21.21.17.11.18.21.19.41.20.51.20.31.20.41.211.20.21.20所有类型fabricServerReplay 2.3.2 for 1.21.6ServerReplay-2.3.2+mc1.21.6.jar下载2.3.2+mc1.21.6#Release# ServerReplay 2.3.2- No longer recording waypoint packets, fixes replay playback on the client展开版本: 2.3.2+mc1.21.6支持游戏: 1.21.6, 1.21.7, 1.21.8类型:FabricRelease下载次数: 435ServerReplay 2.3.1 for 1.21.6ServerReplay-2.3.1+mc1.21.6.jar下载2.3.1+mc1.21.6#Release# ServerReplay 2.3.1- Updated to 1.21.6展开版本: 2.3.1+mc1.21.6支持游戏: 1.21.6, 1.21.7, 1.21.8类型:FabricRelease下载次数: 36ServerReplay 2.3.0 for 1.21.5ServerReplay-2.3.0+mc1.21.5.jar下载2.3.0+mc1.21.5#Release# ServerReplay 2.3.0- Implemented proper ReplayMod support for 1.21.5- Implemented `delete_replays_after_duration` and `log_deleted_replays` config options- Fixed a bug that caused signed chat messages to be recorded as signed- Fixed an incompatibility with krypton- Fixed an incompatibility with distant horizons- Fixed a bug with the flashback encoding not recording entity snapshots properly展开版本: 2.3.0+mc1.21.5支持游戏: 1.21.5类型:FabricRelease下载次数: 1,181ServerReplay 2.2.0-beta.2 for 1.21.5ServerReplay-2.2.0-beta.2+mc1.21.5.jar下载2.2.0-beta.2+mc1.21.5#Beta# ServerReplay 2.2.0-beta.2Fixed a bug where viewing replays don\'t pause when paused in singleplayer展开版本: 2.2.0-beta.2+mc1.21.5支持游戏: 1.21.5类型:FabricBeta下载次数: 1,370ServerReplay 2.2.0-beta.1 for 1.21.5ServerReplay-2.2.0-beta.1+mc1.21.5.jar下载2.2.0-beta.1+mc1.21.5#Beta# ServerReplay 2.2.0-beta.1Update to 1.21.5Due to replay mod not having a release yet the replay-mod format should be considered unstable. Any recordings using the replay-mod format may not work with the replay mod when it releases.展开版本: 2.2.0-beta.1+mc1.21.5支持游戏: 1.21.5类型:FabricBeta下载次数: 548ServerReplay 2.1.0 for 1.21.4ServerReplay-2.1.0+mc1.21.4.jar下载2.1.0+mc1.21.4#Release# ServerReplay 2.1.0Added support to view flashback replays展开版本: 2.1.0+mc1.21.4支持游戏: 1.21.4类型:FabricRelease下载次数: 1,141ServerReplay 2.0.0 for 1.21.4ServerReplay-2.0.0+mc1.21.4.jar下载2.0.0+mc1.21.4#Release# ServerReplay 2.0.0This is quite a big update to ServerReplay with lots of internalchanges. ServerReplay now supports recording to the flashbackformat! This support is experimental, and usage may result incorrupted recordings, please report any bugs you encounter to the github.Replay mod support will still be maintained for the foreseeable future,and remains the default recording method.To change the format to flashback you can run the `/replay encoding set flashback`,to change back to replay mod you can run `/replay encoding set replay-mod`.There are some features of flashback that aren\'t currently available:- No flashback voicechat support- No viewing flashback replays server-side- Flashback will not save resource packs, this is a limitation of flashback itself,resource packs in replays will still be loaded if the packs are still being hosted externally**Other changes this update:**- Fixed an issue where you couldn\'t use ServerReplay in Singleplayer- Fixed compatability with servux- Added config option `\"ignore_custom_payloads\"` which ignores custom payloadpackets, this may resolve compatability issues with some mods, but will break others- Deprecated `\"max_file_size\"` and `\"include_compressed_in_status\"`, for longer replaysthese options are just too expensive to feasibly use, these options do not work for thenew flashback format and will eventually be removed for replay mod replays. It\'s advisedto use `\"max_duration\"` instead.展开版本: 2.0.0+mc1.21.4支持游戏: 1.21.4类型:FabricRelease下载次数: 704ServerReplay 2.0.0-beta.2 for 1.21.4ServerReplay-2.0.0-beta.2+mc1.21.4.jar下载2.0.0-beta.2+mc1.21.4#Beta# ServerReplay 2.0.0-beta.2This is quite a big update to ServerReplay with lots of internalchanges. ServerReplay now supports recording to the flashbackformat! This support is experimental, and usage may result incorrupted recordings, please report any bugs you encounter to the github.Replay mod support will still be maintained for the foreseeable future,and remains the default recording method.To change the format to flashback you can run the `/replay encoding set flashback`,to change back to replay mod you can run `/replay encoding set replay-mod`.There are some features of flashback that aren\'t currently available:- No flashback voicechat support- No viewing flashback replays server-side- Flashback will not save resource packs, this is a limitation of flashback itself,resource packs in replays will still be loaded if the packs are still being hosted externally**Other changes this update:**- Fixed compatability with servux- Added config option `\"ignore_custom_payloads\"` which ignores custom payloadpackets, this may resolve compatability issues with some mods, but will break others- Deprecated `\"max_file_size\"` and `\"include_compressed_in_status\"`, for longer replaysthese options are just too expensive to feasibly use, these options do not work for thenew flashback format and will eventually be removed for replay mod replays. It\'s advisedto use `\"max_duration\"` instead.展开版本: 2.0.0-beta.2+mc1.21.4支持游戏: 1.21.4类型:FabricBeta下载次数: 519ServerReplay 1.2.12 for 1.21.4ServerReplay-1.2.12+mc1.21.4.jar下载1.2.12+mc1.21.4#Release- Fixes a crash when \"fixed_daylight_cycle\" is set to anything > 0展开版本: 1.2.12+mc1.21.4支持游戏: 1.21.4类型:FabricRelease下载次数: 502ServerReplay 1.2.10 for 1.20.6ServerReplay-1.2.10+mc1.20.6.jar下载1.2.10+mc1.20.6#Release- Fixes a compatability issue when recording polymer entities展开版本: 1.2.10+mc1.20.6支持游戏: 1.20.6类型:FabricRelease下载次数: 188ServerReplay 1.2.10 for 1.21.1ServerReplay-1.2.10+mc1.21.1.jar下载1.2.10+mc1.21.1#Release- Fixes a compatability issue when recording polymer entities展开版本: 1.2.10+mc1.21.1支持游戏: 1.21.1类型:FabricRelease下载次数: 1,863ServerReplay 1.2.10 for 1.21.3ServerReplay-1.2.10+mc1.21.3.jar下载1.2.10+mc1.21.3#Release- Fixes a compatability issue when recording polymer entities展开版本: 1.2.10+mc1.21.3支持游戏: 1.21.3类型:FabricRelease下载次数: 306ServerReplay 1.2.10 for 1.21.4ServerReplay-1.2.10+mc1.21.4.jar下载1.2.10+mc1.21.4#Release- Fixes a compatability issue when recording polymer entities展开版本: 1.2.10+mc1.21.4支持游戏: 1.21.4类型:FabricRelease下载次数: 755ServerReplay 1.2.7 for 1.21.4ServerReplay-1.2.7+mc1.21.4.jar下载1.2.7+mc1.21.4#Release- Updated ReplayStudio, with proper 1.21.4 protocol support## IMPORTANT NOTEAnything that was recorded with 1.21.4 ServerReplay has *invalid metadata*,which was an oversight on my behalf. All 1.21.4 replays recorded are thoughtto use the 1.21.2 protocol, meaning they won\'t load properly; You can fix thismanually by unzipping any .mcpr files (you may need to rename them to .zip) andmodifying the `\"metaData.json\"` file by setting `\"protocol\"` to `769`.Alternatively you can boot the new version of this mod and it will tryto fix any invalid replays automatically.展开版本: 1.2.7+mc1.21.4支持游戏: 1.21.4类型:FabricRelease下载次数: 110ServerReplay 1.2.2 for 1.20.1ServerReplay-1.2.2+mc1.20.1.jar下载1.2.2+mc1.20.1#Release- Update ServerReplay for 1.20.1展开版本: 1.2.2+mc1.20.1支持游戏: 1.20.1类型:FabricRelease下载次数: 1,912ServerReplay 1.2.5 for 1.21.4ServerReplay-1.2.5+mc1.21.4.jar下载1.2.5+mc1.21.4#Release- Updated to 1.21.4展开版本: 1.2.5+mc1.21.4支持游戏: 1.21.4类型:FabricRelease下载次数: 336ServerReplay 1.2.3 for 1.21.3ServerReplay-1.2.3+mc1.21.3.jar下载1.2.3+mc1.21.3#Release- Added `\"ignore_action_bar_packets\"` option展开版本: 1.2.3+mc1.21.3支持游戏: 1.21.3类型:FabricRelease下载次数: 258ServerReplay 1.2.2 for 1.21.3ServerReplay-1.2.2+mc1.21.3.jar下载1.2.2+mc1.21.3#Release- Fix a crash展开版本: 1.2.2+mc1.21.3支持游戏: 1.21.3类型:FabricRelease下载次数: 78ServerReplay 1.2.1 for 1.21.3ServerReplay-1.2.1+mc1.21.3.jar下载1.2.1+mc1.21.3#Release- Packet encoding now happens async- Now using injected http servers for downloading replays and packs- You no longer need to open additional ports for this展开版本: 1.2.1+mc1.21.3支持游戏: 1.21.3类型:FabricRelease下载次数: 82ServerReplay 1.1.5 for 1.21.3ServerReplay-1.1.5+mc1.21.3.jar下载1.1.5+mc1.21.3#Release- Updated to 1.21.3展开版本: 1.1.5+mc1.21.3支持游戏: 1.21.2, 1.21.3类型:FabricRelease下载次数: 146ServerReplay 1.1.5 for 1.17.1ServerReplay-1.1.5+mc1.17.1.jar下载1.1.5+mc1.17.1#Release- Added `\"include_resource_packs\"` config- Optimized resource pack hosting展开版本: 1.1.5+mc1.17.1支持游戏: 1.17.1类型:FabricRelease下载次数: 190ServerReplay 1.1.5 for 1.18.2ServerReplay-1.1.5+mc1.18.2.jar下载1.1.5+mc1.18.2#Release- Added `\"include_resource_packs\"` config- Optimized resource pack hosting展开版本: 1.1.5+mc1.18.2支持游戏: 1.18.2类型:FabricRelease下载次数: 202ServerReplay 1.1.5 for 1.19.4ServerReplay-1.1.5+mc1.19.4.jar下载1.1.5+mc1.19.4#Release- Added `\"include_resource_packs\"` config- Optimized resource pack hosting展开版本: 1.1.5+mc1.19.4支持游戏: 1.19.4类型:FabricRelease下载次数: 273ServerReplay 1.1.5 for 1.20.6ServerReplay-1.1.5+mc1.20.6.jar下载1.1.5+mc1.20.6#Release- Added `\"include_resource_packs\"` config- Optimized resource pack hosting展开版本: 1.1.5+mc1.20.6支持游戏: 1.20.5, 1.20.6类型:FabricRelease下载次数: 145ServerReplay 1.1.5 for 1.21.1ServerReplay-1.1.5+mc1.21.1.jar下载1.1.5+mc1.21.1#Release- Added `\"include_resource_packs\"` config- Optimized resource pack hosting展开版本: 1.1.5+mc1.21.1支持游戏: 1.21.1类型:FabricRelease下载次数: 939ServerReplay 1.1.4 for 1.21.1ServerReplay-1.1.4+mc1.21.1.jar下载1.1.4+mc1.21.1#Release- Fixed an incompatibility with VMP展开版本: 1.1.4+mc1.21.1支持游戏: 1.21.1类型:FabricRelease下载次数: 89ServerReplay 1.1.4 for 1.20.6ServerReplay-1.1.4+mc1.20.6.jar下载1.1.4+mc1.20.6#Release- Fixed an incompatibility with VMP展开版本: 1.1.4+mc1.20.6支持游戏: 1.20.6类型:FabricRelease下载次数: 63ServerReplay 1.1.4 for 1.19.4ServerReplay-1.1.4+mc1.19.4.jar下载1.1.4+mc1.19.4#Release- Fixed an incompatibility with VMP展开版本: 1.1.4+mc1.19.4支持游戏: 1.19.4类型:FabricRelease下载次数: 60ServerReplay 1.1.3 for 1.17.1ServerReplay-1.1.3+mc1.17.1.jar下载1.1.3+mc1.17.1#Release- Fixed an issue that caused players to not be able to join when auto recording展开版本: 1.1.3+mc1.17.1支持游戏: 1.17.1类型:FabricRelease下载次数: 56ServerReplay 1.1.3 for 1.18.2ServerReplay-1.1.3+mc1.18.2.jar下载1.1.3+mc1.18.2#Release- Fixed an issue that caused players to not be able to join when auto recording展开版本: 1.1.3+mc1.18.2支持游戏: 1.18.2类型:FabricRelease下载次数: 59ServerReplay 1.1.3 for 1.19.4ServerReplay-1.1.3+mc1.19.4.jar下载1.1.3+mc1.19.4#Release- Fixed an incompatibility with Servux- Fixed an incompatibility with C2ME- Fixed an issue that caused players to not be able to join when auto recording展开版本: 1.1.3+mc1.19.4支持游戏: 1.19.4类型:FabricRelease下载次数: 73ServerReplay 1.1.3 for 1.20.4ServerReplay-1.1.3+mc1.20.4.jar下载1.1.3+mc1.20.4#Release- Fixed an incompatibility with Servux- Fixed an incompatibility with C2ME- Fixed an issue that caused players to not be able to join when auto recording展开版本: 1.1.3+mc1.20.4支持游戏: 1.20.3, 1.20.4类型:FabricRelease下载次数: 953ServerReplay 1.1.3 for 1.20.6ServerReplay-1.1.3+mc1.20.6.jar下载1.1.3+mc1.20.6#Release- Fixed an incompatibility with Servux- Fixed an incompatibility with C2ME- Fixed an issue that caused players to not be able to join when auto recording展开版本: 1.1.3+mc1.20.6支持游戏: 1.20.6类型:FabricRelease下载次数: 57ServerReplay 1.1.3 for 1.21.1ServerReplay-1.1.3+mc1.21.1.jar下载1.1.3+mc1.21.1#Release- Fixed an incompatibility with Servux- Fixed an incompatibility with C2ME- Fixed an issue that caused players to not be able to join when auto recording展开版本: 1.1.3+mc1.21.1支持游戏: 1.21.1类型:FabricRelease下载次数: 147ServerReplay 1.1.2 for 1.20.4ServerReplay-1.1.2+mc1.20.4.jar下载1.1.2+mc1.20.4#Release- Fixed an issue with Carpet bots not recording entities properly- Fixed an issue with `/replay view`- Fixed an incompatibility with Syncmatica- Added the ability to change the player\'s recording directory name展开版本: 1.1.2+mc1.20.4支持游戏: 1.20.4类型:FabricRelease下载次数: 142ServerReplay 1.1.2 for 1.17.1ServerReplay-1.1.2+mc1.17.1.jar下载1.1.2+mc1.17.1#Release- Fixed an issue with `/replay view`- Added the ability to change the player\'s recording directory name展开版本: 1.1.2+mc1.17.1支持游戏: 1.17.1类型:FabricRelease下载次数: 57ServerReplay 1.1.2 for 1.18.2ServerReplay-1.1.2+mc1.18.2.jar下载1.1.2+mc1.18.2#Release- Fixed an issue with `/replay view`- Added the ability to change the player\'s recording directory name展开版本: 1.1.2+mc1.18.2支持游戏: 1.18.2类型:FabricRelease下载次数: 58ServerReplay 1.1.2 for 1.19.4ServerReplay-1.1.2+mc1.19.4.jar下载1.1.2+mc1.19.4#Release- Fixed an issue with Carpet bots not recording entities properly- Fixed an issue with `/replay view`- Fixed an incompatibility with Syncmatica- Added the ability to change the player\'s recording directory name展开版本: 1.1.2+mc1.19.4支持游戏: 1.19.4类型:FabricRelease下载次数: 83ServerReplay 1.1.2 for 1.20.6ServerReplay-1.1.2+mc1.20.6.jar下载1.1.2+mc1.20.6#Release- Fixed an issue with Carpet bots not recording entities properly- Fixed an issue with `/replay view`- Fixed an incompatibility with Syncmatica- Added the ability to change the player\'s recording directory name展开版本: 1.1.2+mc1.20.6支持游戏: 1.20.6类型:FabricRelease下载次数: 93ServerReplay 1.1.2 for 1.21ServerReplay-1.1.2+mc1.21.jar下载1.1.2+mc1.21#Release- Re-implement voicechat support (for 1.21)- Fixed an issue with Carpet bots not recording entities properly- Fixed an issue with `/replay view`- Fixed an incompatibility with Syncmatica- Added the ability to change the player\'s recording directory name展开版本: 1.1.2+mc1.21支持游戏: 1.21类型:FabricRelease下载次数: 2,099ServerReplay 1.1.1 for 1.17.1ServerReplay-1.1.1+mc1.17.1.jar下载1.1.1+mc1.17.1#Release- Backported some fixes from 1.20.6展开版本: 1.1.1+mc1.17.1支持游戏: 1.17.1类型:FabricRelease下载次数: 91ServerReplay 1.1.1 for 1.18.2ServerReplay-1.1.1+mc1.18.2.jar下载1.1.1+mc1.18.2#Release- Backported some fixes from 1.20.6展开版本: 1.1.1+mc1.18.2支持游戏: 1.18.2类型:FabricRelease下载次数: 111ServerReplay 1.1.1 for 1.19.4ServerReplay-1.1.1+mc1.19.4.jar下载1.1.1+mc1.19.4#Release- Backported some fixes from 1.20.6展开版本: 1.1.1+mc1.19.4支持游戏: 1.19.4类型:FabricRelease下载次数: 100ServerReplay 1.1.1 for 1.20.1ServerReplay-1.1.1+mc1.20.1.jar下载1.1.1+mc1.20.1#ReleaseServerReplay-1.1.1+mc1.20.1-java17.jar下载1.1.1+mc1.20.1#Release- Backported some fixes from 1.20.6- This is the final version for 1.20.1展开版本: 1.1.1+mc1.20.1支持游戏: 1.20.1类型:FabricRelease下载次数: 29,850ServerReplay 1.1.1 for 1.20.2ServerReplay-1.1.1+mc1.20.2.jar下载1.1.1+mc1.20.2#ReleaseServerReplay-1.1.1+mc1.20.2-java17.jar下载1.1.1+mc1.20.2#Release- Backported some fixes from 1.20.6- This is the final version for 1.20.2展开版本: 1.1.1+mc1.20.2支持游戏: 1.20.2类型:FabricRelease下载次数: 403ServerReplay 1.1.1 for 1.20.4ServerReplay-1.1.1+mc1.20.4.jar下载1.1.1+mc1.20.4#ReleaseServerReplay-1.1.1+mc1.20.4-java17.jar下载1.1.1+mc1.20.4#Release- Backported some fixes from 1.20.6- This is the final version for 1.20.4展开版本: 1.1.1+mc1.20.4支持游戏: 1.20.4类型:FabricRelease下载次数: 355ServerReplay 1.1.1 for 1.20.6ServerReplay-1.1.1+mc1.20.6.jar下载1.1.1+mc1.20.6#Release- Updated to 1.20.6- Removed voicechat support (voicechat is yet to support replay)展开版本: 1.1.1+mc1.20.6支持游戏: 1.20.6类型:FabricRelease下载次数: 97ServerReplay 1.1.1 for 1.21ServerReplay-1.1.1+mc1.21.jar下载1.1.1+mc1.21#Release- Updated to 1.21- Removed voicechat support (voicechat is yet to support replay)展开版本: 1.1.1+mc1.21支持游戏: 1.21类型:FabricRelease下载次数: 1,473ServerReplay 1.1.0 for 1.17.1ServerReplay-1.1.0+mc1.17.1.jar下载1.1.0+mc1.17.1#Release- Added new Server Side Replay Viewer- You can now view your replays completely server-side!- Added the `/replay view` command- When your replays finish saving a message will appear, if clicked you can view the replay- Added new config \"chunk_recorder_load_radius\" which allows you to specify a maximum radius that will be initially loaded- Fixes an error when VoiceChat was enabled- Fixes compatability with ViaVersion- Fixes compatability with VeryManyPlayers展开版本: 1.1.0+mc1.17.1支持游戏: 1.17.1类型:FabricRelease下载次数: 53ServerReplay 1.1.0 for 1.18.2ServerReplay-1.1.0+mc1.18.2.jar下载1.1.0+mc1.18.2#Release- Added new Server Side Replay Viewer- You can now view your replays completely server-side!- Added the `/replay view` command- When your replays finish saving a message will appear, if clicked you can view the replay- Added new config \"chunk_recorder_load_radius\" which allows you to specify a maximum radius that will be initially loaded- Fixes an error when VoiceChat was enabled- Fixes compatability with ViaVersion- Fixes compatability with VeryManyPlayers展开版本: 1.1.0+mc1.18.2支持游戏: 1.18.2类型:FabricRelease下载次数: 69ServerReplay 1.1.0 for 1.19.4ServerReplay-1.1.0+mc1.19.4.jar下载1.1.0+mc1.19.4#Release- Added new Server Side Replay Viewer- You can now view your replays completely server-side!- Added the `/replay view` command- When your replays finish saving a message will appear, if clicked you can view the replay- Added new config \"chunk_recorder_load_radius\" which allows you to specify a maximum radius that will be initially loaded- Fixes an error when VoiceChat was enabled- Fixes compatability with ViaVersion- Fixes compatability with VeryManyPlayers展开版本: 1.1.0+mc1.19.4支持游戏: 1.19.4类型:FabricRelease下载次数: 67ServerReplay 1.1.0 for 1.20.1ServerReplay-1.1.0+mc1.20.1.jar下载1.1.0+mc1.20.1#Release- Added new Server Side Replay Viewer- You can now view your replays completely server-side!- Added the `/replay view` command- When your replays finish saving a message will appear, if clicked you can view the replay- Added new config \"chunk_recorder_load_radius\" which allows you to specify a maximum radius that will be initially loaded- Fixes an error when VoiceChat was enabled- Fixes compatability with ViaVersion- Fixes compatability with VeryManyPlayers展开版本: 1.1.0+mc1.20.1支持游戏: 1.20.1类型:FabricRelease下载次数: 484ServerReplay 1.1.0 for 1.20.2ServerReplay-1.1.0+mc1.20.2.jar下载1.1.0+mc1.20.2#Release- Added new Server Side Replay Viewer- You can now view your replays completely server-side!- Added the `/replay view` command- When your replays finish saving a message will appear, if clicked you can view the replay- Added new config \"chunk_recorder_load_radius\" which allows you to specify a maximum radius that will be initially loaded- Fixes an error when VoiceChat was enabled- Fixes compatability with ViaVersion- Fixes compatability with VeryManyPlayers展开版本: 1.1.0+mc1.20.2支持游戏: 1.20.2类型:FabricRelease下载次数: 64ServerReplay 1.1.0 for 1.20.4ServerReplay-1.1.0+mc1.20.4.jar下载1.1.0+mc1.20.4#Release- Added new Server Side Replay Viewer- You can now view your replays completely server-side!- Added the `/replay view` command- When your replays finish saving a message will appear, if clicked you can view the replay- Added new config \"chunk_recorder_load_radius\" which allows you to specify a maximum radius that will be initially loaded- Fixes an error when VoiceChat was enabled- Fixes compatability with ViaVersion- Fixes compatability with VeryManyPlayers展开版本: 1.1.0+mc1.20.4支持游戏: 1.20.4类型:FabricRelease下载次数: 291ServerReplay 1.0.8 for 1.17.1ServerReplay-1.0.8+mc1.17.1.jar下载1.0.8+mc1.17.1#Release- Fixed a bug that would cause ServerReplay to crash in singleplayer展开版本: 1.0.8+mc1.17.1支持游戏: 1.17.1类型:FabricRelease下载次数: 57ServerReplay 1.0.8 for 1.18.2ServerReplay-1.0.8+mc1.18.2.jar下载1.0.8+mc1.18.2#Release- Fixed a bug that would cause ServerReplay to crash in singleplayer展开版本: 1.0.8+mc1.18.2支持游戏: 1.18.2类型:FabricRelease下载次数: 83ServerReplay 1.0.8 for 1.19.4ServerReplay-1.0.8+mc1.19.4.jar下载1.0.8+mc1.19.4#Release- Fixed a bug that would cause ServerReplay to crash in singleplayer展开版本: 1.0.8+mc1.19.4支持游戏: 1.19.4类型:FabricRelease下载次数: 88ServerReplay 1.0.8 for 1.20.1ServerReplay-1.0.8+mc1.20.1.jar下载1.0.8+mc1.20.1#Release- Fixed a bug that would cause ServerReplay to crash in singleplayer展开版本: 1.0.8+mc1.20.1支持游戏: 1.20.1类型:FabricRelease下载次数: 621ServerReplay 1.0.8 for 1.20.2ServerReplay-1.0.8+mc1.20.2.jar下载1.0.8+mc1.20.2#Release- Fixed a bug that would cause ServerReplay to crash in singleplayer展开版本: 1.0.8+mc1.20.2支持游戏: 1.20.2类型:FabricRelease下载次数: 105ServerReplay 1.0.8 for 1.20.4ServerReplay-1.0.8+mc1.20.4.jar下载1.0.8+mc1.20.4#Release- Fixed a bug that would cause ServerReplay to crash in singleplayer展开版本: 1.0.8+mc1.20.4支持游戏: 1.20.4类型:FabricRelease下载次数: 634ServerReplay 1.0.7 for 1.17.1ServerReplay-1.0.7+mc1.17.1.jar下载1.0.7+mc1.17.1#Release- Added support for (https://github.com/henkelmax/simple-voice-chat)- Added new player predicate `\"type\": \"is_fake\"` to check whether a player is not a real player (e.g. carpet bot)- Added `max_duration` that lets you specify a maximum duration for your replay- Added `restart_after_max_duration` that lets you automatically restart the replay if the max duration limit is met- Fixed a bug that would cause gradual server lag if `max_file_size` was set展开版本: 1.0.7+mc1.17.1支持游戏: 1.17.1类型:FabricRelease下载次数: 47ServerReplay 1.0.7 for 1.18.2ServerReplay-1.0.7+mc1.18.2.jar下载1.0.7+mc1.18.2#Release- Added support for (https://github.com/henkelmax/simple-voice-chat)- Added new player predicate `\"type\": \"is_fake\"` to check whether a player is not a real player (e.g. carpet bot)- Added `max_duration` that lets you specify a maximum duration for your replay- Added `restart_after_max_duration` that lets you automatically restart the replay if the max duration limit is met- Fixed a bug that would cause gradual server lag if `max_file_size` was set展开版本: 1.0.7+mc1.18.2支持游戏: 1.18.2类型:FabricRelease下载次数: 60ServerReplay 1.0.7 for 1.20.1ServerReplay-1.0.7+mc1.20.1.jar下载1.0.7+mc1.20.1#Release- Added support for (https://github.com/henkelmax/simple-voice-chat)- Added new player predicate `\"type\": \"is_fake\"` to check whether a player is not a real player (e.g. carpet bot)- Added `max_duration` that lets you specify a maximum duration for your replay- Added `restart_after_max_duration` that lets you automatically restart the replay if the max duration limit is met- Fixed a bug that would cause gradual server lag if `max_file_size` was set展开版本: 1.0.7+mc1.20.1支持游戏: 1.20, 1.20.1类型:FabricRelease下载次数: 315ServerReplay 1.0.7 for 1.19.4ServerReplay-1.0.7+mc1.19.4.jar下载1.0.7+mc1.19.4#Release- Added support for (https://github.com/henkelmax/simple-voice-chat)- Added new player predicate `\"type\": \"is_fake\"` to check whether a player is not a real player (e.g. carpet bot)- Added `max_duration` that lets you specify a maximum duration for your replay- Added `restart_after_max_duration` that lets you automatically restart the replay if the max duration limit is met- Fixed a bug that would cause gradual server lag if `max_file_size` was set展开版本: 1.0.7+mc1.19.4支持游戏: 1.19.4类型:FabricRelease下载次数: 74ServerReplay 1.0.7 for 1.20.2ServerReplay-1.0.7+mc1.20.2.jar下载1.0.7+mc1.20.2#Release- Added support for (https://github.com/henkelmax/simple-voice-chat)- Added new player predicate `\"type\": \"is_fake\"` to check whether a player is not a real player (e.g. carpet bot)- Added `max_duration` that lets you specify a maximum duration for your replay- Added `restart_after_max_duration` that lets you automatically restart the replay if the max duration limit is met- Fixed a bug that would cause gradual server lag if `max_file_size` was set展开版本: 1.0.7+mc1.20.2支持游戏: 1.20.2类型:FabricRelease下载次数: 70ServerReplay 1.0.7 for 1.20.4ServerReplay-1.0.7+mc1.20.4.jar下载1.0.7+mc1.20.4#Release- Added support for (https://github.com/henkelmax/simple-voice-chat)- Added new player predicate `\"type\": \"is_fake\"` to check whether a player is not a real player (e.g. carpet bot)- Added `max_duration` that lets you specify a maximum duration for your replay- Added `restart_after_max_duration` that lets you automatically restart the replay if the max duration limit is met- Fixed a bug that would cause gradual server lag if `max_file_size` was set展开版本: 1.0.7+mc1.20.4支持游戏: 1.20.4类型:FabricRelease下载次数: 322ServerReplay 1.0.6 for 1.20.4ServerReplay-1.0.6+mc1.20.4.jar下载1.0.6+mc1.20.4#Release- Added `recover_unsaved_replays` - tries to recover any unsaved replays if the server stopped or crashed- Added `notify_admin_of_status` - notifies admins when replays start, stop, save, and any errors while saving- Fixed a bug that would cause the server to be unresponsive if you stopped a large recording and restarted it before it finished saving- Fixed a bug that would not allow players to join if they met the conditions for recording- Added the currently saving replays to the `/replay status` response展开版本: 1.0.6+mc1.20.4支持游戏: 1.20.4类型:FabricRelease下载次数: 132ServerReplay 1.0.6 for 1.20.2ServerReplay-1.0.6+mc1.20.2.jar下载1.0.6+mc1.20.2#Release- Added `recover_unsaved_replays` - tries to recover any unsaved replays if the server stopped or crashed- Added `notify_admin_of_status` - notifies admins when replays start, stop, save, and any errors while saving- Fixed a bug that would cause the server to be unresponsive if you stopped a large recording and restarted it before it finished saving- Fixed a bug that would not allow players to join if they met the conditions for recording- Added the currently saving replays to the `/replay status` response展开版本: 1.0.6+mc1.20.2支持游戏: 1.20.2类型:FabricRelease下载次数: 69ServerReplay 1.0.6 for 1.20.1ServerReplay-1.0.6+mc1.20.1.jar下载1.0.6+mc1.20.1#Release- Added `recover_unsaved_replays` - tries to recover any unsaved replays if the server stopped or crashed- Added `notify_admin_of_status` - notifies admins when replays start, stop, save, and any errors while saving- Fixed a bug that would cause the server to be unresponsive if you stopped a large recording and restarted it before it finished saving- Added the currently saving replays to the `/replay status` response- Fixed a bug that would not allow players to join if they met the conditions for recording展开版本: 1.0.6+mc1.20.1支持游戏: 1.20.1类型:FabricRelease下载次数: 99ServerReplay 1.0.6 for 1.19.4ServerReplay-1.0.6+mc1.19.4.jar下载1.0.6+mc1.19.4#Release- Added `recover_unsaved_replays` - tries to recover any unsaved replays if the server stopped or crashed- Added `notify_admin_of_status` - notifies admins when replays start, stop, save, and any errors while saving- Fixed a bug that would cause the server to be unresponsive if you stopped a large recording and restarted it before it finished saving- Added the currently saving replays to the `/replay status` response- Fixed a bug that would not allow players to join if they met the conditions for recording展开版本: 1.0.6+mc1.19.4支持游戏: 1.19.4类型:FabricRelease下载次数: 54ServerReplay 1.0.6 for 1.18.2ServerReplay-1.0.6+mc1.18.2.jar下载1.0.6+mc1.18.2#Release- Added `recover_unsaved_replays` - tries to recover any unsaved replays if the server stopped or crashed- Added `notify_admin_of_status` - notifies admins when replays start, stop, save, and any errors while saving- Fixed a bug that would cause the server to be unresponsive if you stopped a large recording and restarted it before it finished saving- Added the currently saving replays to the `/replay status` response- Fixed a bug that would not allow players to join if they met the conditions for recording展开版本: 1.0.6+mc1.18.2支持游戏: 1.18.2类型:FabricRelease下载次数: 47ServerReplay 1.0.6 for 1.17.1ServerReplay-1.0.6+mc1.17.1.jar下载1.0.6+mc1.17.1#Release- Added `recover_unsaved_replays` - tries to recover any unsaved replays if the server stopped or crashed- Added `notify_admin_of_status` - notifies admins when replays start, stop, save, and any errors while saving- Fixed a bug that would cause the server to be unresponsive if you stopped a large recording and restarted it before it finished saving- Fixed a bug that would not allow players to join if they met the conditions for recording- Added the currently saving replays to the `/replay status` response展开版本: 1.0.6+mc1.17.1支持游戏: 1.17.1类型:FabricRelease下载次数: 57ServerReplay 1.0.5 for 1.18.2ServerReplay-1.0.5+mc1.18.2.jar下载1.0.5+mc1.18.2#Release- Added some extra meta-data to replay files (to help with debugging)- Fixed conflict with GeyserMC (some issues may persist, but it will not crash on launch now)- Fixed an issue where players were not being added to the metadata correctly- Added extra configurations:- `fixed_daylight_cycle` - allows you to set a fixed time of day for the recording- `ignore_chat_packets` - ignore all chat packets- `ignore_scoreboard_packets` - ignore all scoreboard packets展开版本: 1.0.5+mc1.18.2支持游戏: 1.18.2类型:FabricRelease下载次数: 56ServerReplay 1.0.5 for 1.17.1ServerReplay-1.0.5+mc1.17.1.jar下载1.0.5+mc1.17.1#Release- Added some extra meta-data to replay files (to help with debugging)- Fixed conflict with GeyserMC (some issues may persist, but it will not crash on launch now)- Fixed an issue where players were not being added to the metadata correctly- Added extra configurations:- `fixed_daylight_cycle` - allows you to set a fixed time of day for the recording- `ignore_chat_packets` - ignore all chat packets- `ignore_scoreboard_packets` - ignore all scoreboard packets展开版本: 1.0.5+mc1.17.1支持游戏: 1.17.1类型:FabricRelease下载次数: 61ServerReplay 1.0.5 for 1.19.4ServerReplay-1.0.5+mc1.19.4.jar下载1.0.5+mc1.19.4#Release- Added some extra meta-data to replay files (to help with debugging)- Fixed conflict with GeyserMC (some issues may persist, but it will not crash on launch now)- Fixed an issue where players were not being added to the metadata correctly- Added extra configurations:- `fixed_daylight_cycle` - allows you to set a fixed time of day for the recording- `ignore_chat_packets` - ignore all chat packets- `ignore_scoreboard_packets` - ignore all scoreboard packets展开版本: 1.0.5+mc1.19.4支持游戏: 1.19.4类型:FabricRelease下载次数: 37ServerReplay 1.0.5 for 1.20.1ServerReplay-1.0.5+mc1.20.1.jar下载1.0.5+mc1.20.1#Release- Added some extra meta-data to replay files (to help with debugging)- Fixed conflict with GeyserMC (some issues may persist, but it will not crash on launch now)- Fixed an issue where players were not being added to the metadata correctly- Added extra configurations:- `fixed_daylight_cycle` - allows you to set a fixed time of day for the recording- `ignore_chat_packets` - ignore all chat packets- `ignore_scoreboard_packets` - ignore all scoreboard packets展开版本: 1.0.5+mc1.20.1支持游戏: 1.20.1类型:FabricRelease下载次数: 73ServerReplay 1.0.5 for 1.20.2ServerReplay-1.0.5+mc1.20.2.jar下载1.0.5+mc1.20.2#Release- Added some extra meta-data to replay files (to help with debugging)- Fixed conflict with GeyserMC (some issues may persist, but it will not crash on launch now)- Added extra configurations:- `fixed_daylight_cycle` - allows you to set a fixed time of day for the recording- `ignore_chat_packets` - ignore all chat packets- `ignore_scoreboard_packets` - ignore all scoreboard packets展开版本: 1.0.5+mc1.20.2支持游戏: 1.20.2类型:FabricRelease下载次数: 67ServerReplay 1.0.5 for 1.20.4ServerReplay-1.0.5+mc1.20.4.jar下载1.0.5+mc1.20.4#Release- Added some extra meta-data to replay files (to help with debugging)- Fixed conflict with GeyserMC (some issues may persist, but it will not crash on launch now)- Added extra configurations:- `fixed_daylight_cycle` - allows you to set a fixed time of day for the recording- `ignore_chat_packets` - ignore all chat packets- `ignore_scoreboard_packets` - ignore all scoreboard packets展开版本: 1.0.5+mc1.20.4支持游戏: 1.20.4类型:FabricRelease下载次数: 101ServerReplay 1.0.3 for 1.17.1ServerReplay-1.0.3+mc1.17.1.jar下载1.0.3+mc1.17.1#Release- Port to 1.17.1展开版本: 1.0.3+mc1.17.1支持游戏: 1.17.1类型:FabricRelease下载次数: 68ServerReplay 1.0.3 for 1.18.2ServerReplay-1.0.3+mc1.18.2.jar下载1.0.3+mc1.18.2#Release- Port to 1.18.2展开版本: 1.0.3+mc1.18.2支持游戏: 1.18.2类型:FabricRelease下载次数: 64ServerReplay 1.0.3 for 1.19.4ServerReplay-1.0.3+mc1.19.4.jar下载1.0.3+mc1.19.4#Release- Port to 1.19.4展开版本: 1.0.3+mc1.19.4支持游戏: 1.19.4类型:FabricRelease下载次数: 62ServerReplay 1.0.3 for 1.20.1ServerReplay-1.0.3+mc1.20.1.jar下载1.0.3+mc1.20.1#Release- Port to 1.20.1展开版本: 1.0.3+mc1.20.1支持游戏: 1.20.1类型:FabricRelease下载次数: 105ServerReplay 1.0.3 for 1.20.2ServerReplay-1.0.3+mc1.20.2.jar下载1.0.3+mc1.20.2#Release- Ported to 1.20.2展开版本: 1.0.3+mc1.20.2支持游戏: 1.20.2类型:FabricRelease下载次数: 76ServerReplay 1.0.3 for 1.20.4ServerReplay-1.0.3+mc1.20.4.jar下载1.0.3+mc1.20.4#Release展开版本: 1.0.3+mc1.20.4支持游戏: 1.20.4类型:FabricRelease下载次数: 124全部版本
文章类型:收录layui.use([\'form\'], function(){
var form = layui.form;
});

**** Hidden Message ***** ServerReplay
页: [1]
查看完整版本: ServerReplay (ServerReplay)-MOD模组