Skip to content

Releases: CobwebSMP/MiNET

MiNET-CobwebSMP 1.13.0.27 (1.21.70)

30 Mar 16:28
Compare
Choose a tag to compare

bugfix release.

Fixed incorrect mob (cow, chicken, pig) variants.

Download MiNET.zip to get started.
Download MiNET.dll for updating.

MiNET-CobwebSMP 1.13.0.26 (1.21.70)

30 Mar 06:59
Compare
Choose a tag to compare

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)

12 Feb 06:53
e36ad86
Compare
Choose a tag to compare

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)

03 Dec 17:40
Compare
Choose a tag to compare

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)

02 Dec 20:50
Compare
Choose a tag to compare

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)

23 Oct 16:43
Compare
Choose a tag to compare

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)

22 Oct 16:23
Compare
Choose a tag to compare

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)

01 Oct 07:47
Compare
Choose a tag to compare

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)

30 Sep 08:29
Compare
Choose a tag to compare

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)

17 Sep 18:00
Compare
Choose a tag to compare

1.21.30 support release.

Download MiNET.zip to get started.
Download MiNET.dll for updating.