Releases: CobwebSMP/MiNET
MiNET-CobwebSMP 1.13.0.27 (1.21.70)
MiNET-CobwebSMP 1.13.0.26 (1.21.70)
1.21.70 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:
log4net.dll
System.Security.Cryptography.ProtectedData.dll
SixLabors.ImageSharp.dll
MiNET-CobwebSMP 1.13.0.25 (1.21.60)
1.21.60 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
jose-jwt.dll
System.Security.Cryptography.ProtectedData.dll
SixLabors.ImageSharp.Drawing.dll
System.Text.Json.dll
MiNET.Console.deps.json
System.Text.Encodings.Web.dll
MiNET-CobwebSMP 1.13.0.24 (1.21.50)
1.21.50 support release.
Download MiNET.zip to get started.
Download MiNET.dll for updating.
MiNET-CobwebSMP 1.13.0.23 (1.21.40)
This release contains:
- Arrow fix
- Hunger fix
- Fixed weather manager and new api methods
- Added totem of undying
- Flame enchantment fix
- Effects and potion related fix
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.dll
jose-jwt.dll
log4net.dll
System.Security.Cryptography.ProtectedData.dll
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.