Skip to content

Releases: CobwebSMP/MiNET

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.

MiNET-CobwebSMP 1.13.0.16 (1.21.20)

05 Sep 21:21
Compare
Choose a tag to compare

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)

13 Aug 17:03
Compare
Choose a tag to compare

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)

10 Jul 10:16
Compare
Choose a tag to compare

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)

13 Jun 17:36
Compare
Choose a tag to compare

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)

04 May 10:43
Compare
Choose a tag to compare

.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.