You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://www.nuget.org/packages/MiNET-CobwebSMP/)
7
6
8
7
## What is this?
9
8
10
-
This is fork of [MiNET](https://github.com/NiclasOlofsson/MiNET), it's continuation project, that includes additional changes and features:
9
+
This is fork of [MiNET](https://github.com/NiclasOlofsson/MiNET), that includes additional changes and features:
11
10
12
11
- Latest Minecraft Bedrock Edition support
13
12
- 1.13 world format support
@@ -16,8 +15,22 @@ This is fork of [MiNET](https://github.com/NiclasOlofsson/MiNET), it's continuat
16
15
- Emotes
17
16
- And more
18
17
18
+
## Getting started
19
+
Download minet.zip from [Releases](https://github.com/CobwebSMP/MiNET/releases), extract MiNET folder, run MiNET.Console.exe.
20
+
This action will also create Worlds, Plugins and ResourcePacks folders.
21
+
**Worlds** - You can load world LevelDB files exported with Minecraft Bedrock Edition 1.13 or converted to 1.13 format with [Chunker.app](https://chunker.app/). World data (level.dat, .... ) have to extracted in Worlds folder.
22
+
**Plugins** - There isn't many plugins for MiNET but here and there you may find some or you can made one. Useful links: [Plugin documention](https://github.com/NiclasOlofsson/MiNET/wiki/Plugin-API-Documentation), [MiNET TestPlugin](https://github.com/NiclasOlofsson/MiNET/tree/master/src/MiNET/TestPlugin)
23
+
**ResourcePacks** - Resource packs made for the latest game version should work also here. If you got pack with .mcpack extension, just rename it to .zip and it's good to go.
24
+
25
+
## Stability
26
+
Since this software is used and maintained for our server purposes, this may not contain all features, updates and fixes.
27
+
But if you found something you can always open an issue or pull request if you have solution.
28
+
**Known problems** :
29
+
- Saving isn't working properly, block entities may fail to save, blockstates may change values on save. Solution: Disable saving in server.conf.
Copy file name to clipboardExpand all lines: src/MiNET/MiNET/Plugins/Commands/VanillaCommands.cs
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -25,8 +25,10 @@
25
25
26
26
usingSystem;
27
27
usingSystem.Collections.Generic;
28
+
usingSystem.Diagnostics;
28
29
usingSystem.Linq;
29
30
usingSystem.Numerics;
31
+
usingSystem.Reflection;
30
32
usingSystem.Threading;
31
33
usinglog4net;
32
34
usingMiNET.Entities;
@@ -53,7 +55,7 @@ public VanillaCommands()
53
55
[Command(Name="about",Description="About the server")]
54
56
publicstringAbout()
55
57
{
56
-
return$"This server is running on MiNETfor Minecraft Bedrock Edition {McpeProtocolInfo.GameVersion} ({McpeProtocolInfo.ProtocolVersion})";
58
+
return$"This server is running on MiNET-CobwebSMP {FileVersionInfo.GetVersionInfo(Assembly.GetAssembly(typeof(MiNetServer)).Location).ProductVersion}for Minecraft Bedrock Edition {McpeProtocolInfo.GameVersion} ({McpeProtocolInfo.ProtocolVersion}). https://github.com/CobwebSMP/MiNET ";
57
59
}
58
60
59
61
[Command(Name="op",Description="Make player an operator")]
0 commit comments