Releases: CobwebSMP/MiNET
MiNET-CobwebSMP 1.13.0.22 (1.21.40)
crafting bugfix release.
Download MiNET.zip to get started.
Download MiNET.dll for updating.
Warning. This version contains updated libraries. To update to this version you need to update dll libraries from minet.zip:
log4net.dll
MiNET-CobwebSMP 1.13.0.21 (1.21.40)
1.21.40 support release.
Download MiNET.zip to get started.
Download MiNET.dll for updating.
Warning. This version contains updated libraries. To update to this version you need to update dll libraries from minet.zip:
MiNET.Console.dll
log4net.dll
MiNET-CobwebSMP 1.13.0.20 (1.21.30)
Added new item events: ItemTransaction, ItemDrop.
Download MiNET.zip to get started.
Download MiNET.dll for updating.
Examples:
player.ItemDrop += (o, eventArgs) =>
{
var item = eventArgs.Item;
if (item is ItemMap)
{
eventArgs.Cancel = true; // Player won't be able to drop ItemMap;
}
};
player.ItemTransaction += (o, eventArgs) =>
{
if (eventArgs.Action is TakeAction action) // specify action type if needed
{
if (action.Source.Slot == 8) // specify slot number if needed
{
eventArgs.Cancel = true; // Prevent player from taking things from inventory slot 8.
}
eventArgs.Cancel = true; // Prevent player from taking things.
}
if (eventArgs.Action is PlaceAction action2) // specify action type if needed
{
if (action2.Destination.ContainerId == 7) // ContainerId 7 = Dropper (ContainerId enum coming soon)
{
eventArgs.Cancel = true; // Prevent player from placing things in dropper.
}
}
eventArgs.Cancel = true; // Lock player inventory completely
};
};
MiNET-CobwebSMP 1.13.0.18 (1.21.30)
Added Server-Authoritative movement support.
Added Animate Entity packet.
Download MiNET.zip to get started.
Download MiNET.dll for updating.
Warning. This version contains updated libraries. To update to this version you need to update dll libraries from minet.zip:
log4net.dll
MiNET-CobwebSMP 1.13.0.17 (1.21.30)
1.21.30 support release.
Download MiNET.zip to get started.
Download MiNET.dll for updating.
MiNET-CobwebSMP 1.13.0.16 (1.21.20)
Bugfix release.
Various fixes and improvemets.
Added Splash potion particle.
Download MiNET.zip to get started.
Download MiNET.dll for updating.
MiNET-CobwebSMP 1.13.0.14 (1.21.20)
1.21.20 support release.
Download MiNET.zip to get started.
Download MiNET.dll for updating.
Warning. This version contains updated libraries. To update to this version you need to update dll libraries from minet.zip:
- SixLabors.ImageSharp.Drawing.dll
- SixLabors.ImageSharp.dll
MiNET-CobwebSMP 1.13.0.13 (1.21.2)
1.21.2 support release.
Due to protocol compability this version supports 1.21.0 and 1.21.2.
Download MiNET.zip to get started.
Warning. For updating. We moved from Drawing.Common to ImageSharp:
Delete:
System.Drawing.Common.dll
Add:
SixLabors.ImageSharp.dll
SixLabors.ImageSharp.Drawing.dll
Update:
MiNET.dll
MiNET.Console.runtimeconfig.json
Microsoft.IO.RecyclableMemoryStream.dll
MiNET-CobwebSMP 1.13.0.12 (1.21.0)
1.21.0 support release.
Download MiNET.zip to get started.
Download MiNET.dll for updating.
MiNET-CobwebSMP 1.13.0.11 (1.20.80)
.NET 8 update.
Warning: Plugin API changes:
- class pixels is now class pixelsData
Download MiNET.zip to get started.
Download MiNET.dll and MiNET.Console.dll, MiNET.Console.runtimeconfig.json from minet.zip for updating.