Move many mods to Deprecated folder, fix spelling

This commit is contained in:
NotAKidoS 2025-04-03 02:57:35 -05:00
parent 5e822cec8d
commit 0042590aa6
539 changed files with 7475 additions and 3120 deletions

View file

@ -0,0 +1,52 @@
using ABI_RC.Core.InteractionSystem;
using ABI_RC.Core.IO;
using MelonLoader;
using UnityEngine;
namespace NAK.Nevermind;
public class NevermindMod : MelonMod
{
#region Melon Preferences
private static readonly MelonPreferences_Category Category =
MelonPreferences.CreateCategory(nameof(NevermindMod));
private static readonly MelonPreferences_Entry<KeyCode> Entry_CancelKeybind =
Category.CreateEntry("keybind", KeyCode.Home, description: "Key to cancel world join.");
#endregion Melon Preferences
#region Melon Events
public override void OnUpdate()
{
if (!Input.GetKeyDown(Entry_CancelKeybind.Value))
return;
if (CVRObjectLoader.Instance == null
|| CVRDownloadManager.Instance == null)
return; // game is not ready
if (!CVRObjectLoader.Instance.IsLoadingWorldToJoin())
return; // no world to cancel
if (CVRObjectLoader.Instance.WorldBundleRequest != null)
return; // too late to cancel, world is being loaded
// Cancel world join if still downloading
foreach (var download in CVRDownloadManager.Instance._downloadTasks)
download.Value.JoinOnComplete = false;
// Cancel world join if still loading
CVRObjectLoader.Instance.ActiveWorldDownload = null;
CVRObjectLoader.Instance._isLoadingWorldToJoin = false;
CVRObjectLoader.Instance.worldLoadingState = CVRObjectLoader.WorldLoadingState.None;
// Notify user of successful cancellation
LoggerInstance.Msg("World Join Cancelled!");
ViewManager.Instance.NotifyUser("(Local) Client", "World Join Cancelled", 2f);
}
#endregion Melon Events
}

View file

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk"/>

View file

@ -0,0 +1,32 @@
using NAK.Nevermind.Properties;
using MelonLoader;
using System.Reflection;
[assembly: AssemblyVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyFileVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyInformationalVersion(AssemblyInfoParams.Version)]
[assembly: AssemblyTitle(nameof(NAK.Nevermind))]
[assembly: AssemblyCompany(AssemblyInfoParams.Author)]
[assembly: AssemblyProduct(nameof(NAK.Nevermind))]
[assembly: MelonInfo(
typeof(NAK.Nevermind.NevermindMod),
nameof(NAK.Nevermind),
AssemblyInfoParams.Version,
AssemblyInfoParams.Author,
downloadLink: "https://github.com/NotAKidoS/NAK_CVR_Mods/tree/main/Nevermind"
)]
[assembly: MelonGame("Alpha Blend Interactive", "ChilloutVR")]
[assembly: MelonPlatform(MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)]
[assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)]
[assembly: MelonColor(255, 246, 25, 99)] // red-pink
[assembly: MelonAuthorColor(255, 158, 21, 32)] // red
[assembly: HarmonyDontPatchAll]
namespace NAK.Nevermind.Properties;
internal static class AssemblyInfoParams
{
public const string Version = "1.0.1";
public const string Author = "NotAKidoS";
}

View file

@ -0,0 +1,14 @@
# Nevermind
Provides a cancel keybind for downloading/loading worlds on Desktop.
---
Here is the block of text where I tell you this mod is not affiliated with or endorsed by ABI.
https://documentation.abinteractive.net/official/legal/tos/#7-modding-our-games
> This mod is an independent creation not affiliated with, supported by, or approved by Alpha Blend Interactive.
> Use of this mod is done so at the user's own risk and the creator cannot be held responsible for any issues arising from its use.
> To the best of my knowledge, I have adhered to the Modding Guidelines established by Alpha Blend Interactive.

View file

@ -0,0 +1,23 @@
{
"_id": -1,
"name": "Nevermind",
"modversion": "1.0.1",
"gameversion": "2024r176",
"loaderversion": "0.6.1",
"modtype": "Mod",
"author": "NotAKidoS",
"description": "Simple mod that allows you to cancel joining a world in Desktop.",
"searchtags": [
"never",
"mind",
"download",
"cancel"
],
"requirements": [
"None"
],
"downloadlink": "https://github.com/NotAKidoS/NAK_CVR_Mods/releases/download/r25/Nevermind.dll",
"sourcelink": "https://github.com/NotAKidoS/NAK_CVR_Mods/tree/main/Nevermind/",
"changelog": "- Initial release",
"embedcolor": "#f61963"
}