Skip to content

Releases: CobwebSMP/MiNET

MiNET-CobwebSMP 1.13.0.27 (1.21.70)

Choose a tag to compare

@laz1444 laz1444 released this 30 Mar 16:28

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)

Choose a tag to compare

@laz1444 laz1444 released this 30 Mar 06:59

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)

Choose a tag to compare

@laz1444 laz1444 released this 12 Feb 06:53
e36ad86

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)

Choose a tag to compare

@github-actions github-actions released this 03 Dec 17:40

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)

Choose a tag to compare

@github-actions github-actions released this 02 Dec 20:50

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)

Choose a tag to compare

@github-actions github-actions released this 23 Oct 16:43

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)

Choose a tag to compare

@github-actions github-actions released this 22 Oct 16:23

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)

Choose a tag to compare

@github-actions github-actions released this 01 Oct 07:47

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)

Choose a tag to compare

@github-actions github-actions released this 30 Sep 08:29

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)

Choose a tag to compare

@github-actions github-actions released this 17 Sep 18:00

1.21.30 support release.

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