using System;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Versioning;
using BoneLab_modding;
using BoneLib;
using BoneLib.BoneMenu;
using BoneLib.Notifications;
using BoneLib.RandomShit;
using Il2CppSLZ.Marrow;
using Il2CppSLZ.Marrow.SceneStreaming;
using Il2CppSLZ.Marrow.Warehouse;
using MelonLoader;
using UnityEngine;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: MelonInfo(typeof(BonelabModding), "MeowUI", "0.0.5", "DingusSherry", null)]
[assembly: MelonGame("Stress Level Zero", "BONELAB")]
[assembly: AssemblyTitle("BoneLab modding")]
[assembly: AssemblyDescription("dingussherry can show u a @%!@$!#.")]
[assembly: AssemblyConfiguration("IsT3k = null, IsDingus = null, IsStepan = null, IsPripezduchi=null end end")]
[assembly: AssemblyCompany("-0")]
[assembly: AssemblyProduct("BoneLab modding")]
[assembly: AssemblyCopyright("Copyright Dinglberrya1488Shenok © 2025")]
[assembly: AssemblyTrademark("")]
[assembly: ComVisible(true)]
[assembly: Guid("858fbadc-9614-4b14-8925-7e16c14eff58")]
[assembly: AssemblyFileVersion("0.0.0.0")]
[assembly: TargetFramework(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]
[assembly: AssemblyVersion("0.0.0.0")]
namespace BoneLab_modding;
internal class BonelabModding : MelonMod
{
private int mediumAmmoValue;
private int lightAmmoValue;
private int heavyAmmoValue;
private string textValue;
private static Instance logger;
private static AmmoInventory AmmoInventory => AmmoInventory.Instance;
private static AmmoGroup LightAmmo => AmmoInventory.lightAmmoGroup;
private static AmmoGroup MediumAmmo => AmmoInventory.mediumAmmoGroup;
private static AmmoGroup HeavyAmmo => AmmoInventory.heavyAmmoGroup;
public override void OnUpdate()
{
((MelonBase)this).OnUpdate();
MelonUtils.SetConsoleTitle("Kitty");
}
public override void OnApplicationStart()
{
//IL_0012: Unknown result type (might be due to invalid IL or missing references)
//IL_0025: Unknown result type (might be due to invalid IL or missing references)
//IL_0038: Unknown result type (might be due to invalid IL or missing references)
//IL_004b: Unknown result type (might be due to invalid IL or missing references)
//IL_005e: Unknown result type (might be due to invalid IL or missing references)
//IL_0072: Unknown result type (might be due to invalid IL or missing references)
//IL_0086: Unknown result type (might be due to invalid IL or missing references)
//IL_009a: Unknown result type (might be due to invalid IL or missing references)
//IL_00ae: Unknown result type (might be due to invalid IL or missing references)
//IL_00c2: Unknown result type (might be due to invalid IL or missing references)
//IL_00df: Unknown result type (might be due to invalid IL or missing references)
//IL_00fc: Unknown result type (might be due to invalid IL or missing references)
//IL_0119: Unknown result type (might be due to invalid IL or missing references)
//IL_0144: Unknown result type (might be due to invalid IL or missing references)
//IL_016f: Unknown result type (might be due to invalid IL or missing references)
//IL_019a: Unknown result type (might be due to invalid IL or missing references)
//IL_01b7: Unknown result type (might be due to invalid IL or missing references)
//IL_01d4: Unknown result type (might be due to invalid IL or missing references)
//IL_01f1: Unknown result type (might be due to invalid IL or missing references)
//IL_020e: Unknown result type (might be due to invalid IL or missing references)
//IL_022b: Unknown result type (might be due to invalid IL or missing references)
//IL_0249: Unknown result type (might be due to invalid IL or missing references)
//IL_0267: Unknown result type (might be due to invalid IL or missing references)
//IL_0285: Unknown result type (might be due to invalid IL or missing references)
//IL_02a2: Unknown result type (might be due to invalid IL or missing references)
//IL_02c0: Unknown result type (might be due to invalid IL or missing references)
//IL_02de: Unknown result type (might be due to invalid IL or missing references)
//IL_02fb: Unknown result type (might be due to invalid IL or missing references)
//IL_032b: Unknown result type (might be due to invalid IL or missing references)
//IL_035b: Unknown result type (might be due to invalid IL or missing references)
//IL_038b: Unknown result type (might be due to invalid IL or missing references)
//IL_03bb: Unknown result type (might be due to invalid IL or missing references)
//IL_03dd: Unknown result type (might be due to invalid IL or missing references)
((MelonBase)this).OnDeinitializeMelon();
Page val = Page.Root.CreatePage("MeowUI", Color.blue, 0, true);
Page val2 = val.CreatePage("Ammo Settings", Color.yellow, 0, true);
Page val3 = val.CreatePage("Item Spawning", Color.white, 0, true);
Page val4 = val.CreatePage("Fun Stuff", Color.white, 0, true);
Page val5 = val.CreatePage("Options", Color.green, 0, true);
Page val6 = val.CreatePage("Start game", Color.cyan, 0, true);
Page val7 = val.CreatePage("Quit Game", Color.cyan, 0, true);
Page val8 = val.CreatePage("Debug", Color.red, 0, true);
Page val9 = val.CreatePage("Video Items", Color.green, 0, true);
val2.CreateFunction("Add Light Ammo", Color.white, (Action)delegate
{
AmmoInventory.AddCartridge(LightAmmo, lightAmmoValue);
});
val2.CreateFunction("Add Medium Ammo", Color.white, (Action)delegate
{
AmmoInventory.AddCartridge(MediumAmmo, mediumAmmoValue);
});
val2.CreateFunction("Add Heavy Ammo", Color.white, (Action)delegate
{
AmmoInventory.AddCartridge(HeavyAmmo, heavyAmmoValue);
});
val2.CreateInt("Light Ammo", Color.white, lightAmmoValue, 100, 0, int.MaxValue, (Action<int>)delegate(int value)
{
lightAmmoValue = value;
});
val2.CreateInt("Medium Ammo", Color.white, mediumAmmoValue, 100, 0, int.MaxValue, (Action<int>)delegate(int value)
{
mediumAmmoValue = value;
});
val2.CreateInt("Heavy Ammo", Color.white, heavyAmmoValue, 100, 0, int.MaxValue, (Action<int>)delegate(int value)
{
heavyAmmoValue = value;
});
val3.CreateFunction("Spawn Utility Gun", Color.white, (Action)SpawnUtilityGun);
val3.CreateFunction("Spawn Nimbus Gun", Color.white, (Action)SpawnNimbusGun);
val3.CreateFunction("Spawn Random Gun", Color.white, (Action)SpawnRandomGun);
val3.CreateFunction("Spawn Random Melee", Color.white, (Action)SpawnRandomMelee);
val3.CreateFunction("Spawn Random NPC", Color.white, (Action)SpawnRandomNPC);
val3.CreateFunction("Load Random Level", Color.white, (Action)LoadRandomLevel);
val5.CreateFunction("Skibidy Rizz", Color.white, (Action)SkibidyRizz);
val6.CreateFunction("start", Color.yellow, (Action)Kitty);
val7.CreateFunction("quit", Color.black, (Action)Exit);
val3.CreateFunction("it's a Burger Rain --scam.", Color.magenta, (Action)TransportToTuscany);
val8.CreateFunction("EnableDingusAI mooving path", Color.grey, (Action)DingusPath);
val9.CreateFunction("Start a Cutscene", Color.yellow, (Action)CutsceneStart);
val4.CreateFunction("Spawn Ad", Color.white, (Action)delegate
{
PopupBoxManager.CreateNewPopupBox();
});
val4.CreateFunction("Spawn Shibe Ad", Color.white, (Action)delegate
{
PopupBoxManager.CreateNewShibePopup((Action<GameObject>)null);
});
val4.CreateFunction("Spawn Bird Ad", Color.white, (Action)delegate
{
PopupBoxManager.CreateNewBirdPopup((Action<GameObject>)null);
});
val4.CreateFunction("Spawn Cat Ad", Color.white, (Action)delegate
{
PopupBoxManager.CreateNewCatPopup((Action<GameObject>)null);
});
val4.CreateString("Notification Text", Color.white, "None", (Action<string>)delegate(string input)
{
textValue = input;
});
val4.CreateFunction("Notification Test", Color.white, (Action)delegate
{
//IL_0001: Unknown result type (might be due to invalid IL or missing references)
//IL_0006: Unknown result type (might be due to invalid IL or missing references)
//IL_000c: Unknown result type (might be due to invalid IL or missing references)
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
//IL_0016: Unknown result type (might be due to invalid IL or missing references)
//IL_001d: Unknown result type (might be due to invalid IL or missing references)
//IL_0022: Unknown result type (might be due to invalid IL or missing references)
//IL_0027: Unknown result type (might be due to invalid IL or missing references)
//IL_0029: Unknown result type (might be due to invalid IL or missing references)
//IL_002e: Unknown result type (might be due to invalid IL or missing references)
//IL_0035: Unknown result type (might be due to invalid IL or missing references)
//IL_0041: Expected O, but got Unknown
Notification val10 = new Notification
{
Title = NotificationText.op_Implicit("Hello!"),
Message = NotificationText.op_Implicit(textValue),
Type = (NotificationType)4,
ShowTitleOnPopup = true,
PopupLength = 5f
};
Notifier.Send(val10);
});
}
internal static void SpawnUtilityGun()
{
//IL_000d: Unknown result type (might be due to invalid IL or missing references)
//IL_0013: Unknown result type (might be due to invalid IL or missing references)
//IL_0018: Unknown result type (might be due to invalid IL or missing references)
//IL_001f: Unknown result type (might be due to invalid IL or missing references)
//IL_0025: Unknown result type (might be due to invalid IL or missing references)
//IL_0026: Unknown result type (might be due to invalid IL or missing references)
Transform head = Player.Head;
HelperMethods.SpawnCrate("c1534c5a-5747-42a2-bd08-ab3b47616467", head.position + head.forward, default(Quaternion), Vector3.one, false, (Action<GameObject>)null, (Action<GameObject>)null);
}
internal static void SpawnNimbusGun()
{
//IL_000d: Unknown result type (might be due to invalid IL or missing references)
//IL_0013: Unknown result type (might be due to invalid IL or missing references)
//IL_0018: Unknown result type (might be due to invalid IL or missing references)
//IL_001f: Unknown result type (might be due to invalid IL or missing references)
//IL_0025: Unknown result type (might be due to invalid IL or missing references)
//IL_0026: Unknown result type (might be due to invalid IL or missing references)
Transform head = Player.Head;
HelperMethods.SpawnCrate("c1534c5a-6b38-438a-a324-d7e147616467", head.position + head.forward, default(Quaternion), Vector3.one, false, (Action<GameObject>)null, (Action<GameObject>)null);
}
internal static void SpawnRandomGun()
{
//IL_0026: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0031: Unknown result type (might be due to invalid IL or missing references)
//IL_0038: Unknown result type (might be due to invalid IL or missing references)
//IL_003e: Unknown result type (might be due to invalid IL or missing references)
//IL_003f: Unknown result type (might be due to invalid IL or missing references)
Transform head = Player.Head;
int index = Random.RandomRangeInt(0, Guns.All.Count);
string text = Guns.All[index];
HelperMethods.SpawnCrate(text, head.position + head.forward, default(Quaternion), Vector3.one, false, (Action<GameObject>)null, (Action<GameObject>)null);
}
internal static void SpawnRandomMelee()
{
//IL_0026: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
//IL_0031: Unknown result type (might be due to invalid IL or missing references)
//IL_0038: Unknown result type (might be due to invalid IL or missing references)
//IL_003e: Unknown result type (might be due to invalid IL or missing references)
//IL_003f: Unknown result type (might be due to invalid IL or missing references)
Transform head = Player.Head;
int index = Random.RandomRangeInt(0, Melee.All.Count);
string text = Melee.All[index];
HelperMethods.SpawnCrate(text, head.position + head.forward, default(Quaternion), Vector3.one, false, (Action<GameObject>)null, (Action<GameObject>)null);
}
internal static void SpawnRandomNPC()
{
//IL_0030: Unknown result type (might be due to invalid IL or missing references)
//IL_0036: Unknown result type (might be due to invalid IL or missing references)
//IL_003b: Unknown result type (might be due to invalid IL or missing references)
//IL_0042: Unknown result type (might be due to invalid IL or missing references)
//IL_0048: Unknown result type (might be due to invalid IL or missing references)
//IL_0049: Unknown result type (might be due to invalid IL or missing references)
Transform transform = ((Component)Player.PhysicsRig.artOutput).transform;
int index = Random.RandomRangeInt(0, NPCs.All.Count);
string text = NPCs.All[index];
HelperMethods.SpawnCrate(text, transform.position + transform.forward, default(Quaternion), Vector3.one, false, (Action<GameObject>)null, (Action<GameObject>)null);
}
internal static void LoadRandomLevel()
{
//IL_001f: Unknown result type (might be due to invalid IL or missing references)
//IL_0029: Unknown result type (might be due to invalid IL or missing references)
//IL_0033: Expected O, but got Unknown
//IL_0033: Expected O, but got Unknown
int index = Random.RandomRangeInt(0, Maps.All.Count);
string text = Maps.All[index];
SceneStreamer.Load(new Barcode(text), new Barcode("fa534c5a83ee4ec6bd641fec424c4142.Level.DefaultLoad"));
}
internal static void SkibidyRizz()
{
//IL_000d: Unknown result type (might be due to invalid IL or missing references)
//IL_0013: Unknown result type (might be due to invalid IL or missing references)
//IL_0018: Unknown result type (might be due to invalid IL or missing references)
//IL_001f: Unknown result type (might be due to invalid IL or missing references)
//IL_0025: Unknown result type (might be due to invalid IL or missing references)
//IL_0026: Unknown result type (might be due to invalid IL or missing references)
Transform head = Player.Head;
HelperMethods.SpawnCrate("fa534c5a83ee4ec6bd641fec424c4142.Spawnable.VehicleGokart", head.position + head.forward, default(Quaternion), Vector3.one, false, (Action<GameObject>)null, (Action<GameObject>)null);
}
internal static void Kitty()
{
//IL_000d: Unknown result type (might be due to invalid IL or missing references)
//IL_0013: Unknown result type (might be due to invalid IL or missing references)
//IL_0018: Unknown result type (might be due to invalid IL or missing references)
//IL_001f: Unknown result type (might be due to invalid IL or missing references)
//IL_0025: Unknown result type (might be due to invalid IL or missing references)
//IL_0026: Unknown result type (might be due to invalid IL or missing references)
Transform head = Player.Head;
HelperMethods.SpawnCrate("c1534c5a-3fd8-4d50-9eaf-0695466f7264", head.position + head.forward, default(Quaternion), Vector3.one, false, (Action<GameObject>)null, (Action<GameObject>)null);
}
internal static void Exit()
{
Application.Quit();
}
internal static void TransportToTuscany()
{
//IL_000d: Unknown result type (might be due to invalid IL or missing references)
//IL_0013: Unknown result type (might be due to invalid IL or missing references)
//IL_0018: Unknown result type (might be due to invalid IL or missing references)
//IL_001f: Unknown result type (might be due to invalid IL or missing references)
//IL_0025: Unknown result type (might be due to invalid IL or missing references)
//IL_0026: Unknown result type (might be due to invalid IL or missing references)
Transform head = Player.Head;
HelperMethods.SpawnCrate("c2534c5a-2c4c-4b44-b076-203b5363656e", head.position + head.forward, default(Quaternion), Vector3.one, false, (Action<GameObject>)null, (Action<GameObject>)null);
}
internal static void DingusPath()
{
//IL_000d: Unknown result type (might be due to invalid IL or missing references)
//IL_0013: Unknown result type (might be due to invalid IL or missing references)
//IL_0018: Unknown result type (might be due to invalid IL or missing references)
//IL_001f: Unknown result type (might be due to invalid IL or missing references)
//IL_0025: Unknown result type (might be due to invalid IL or missing references)
//IL_0026: Unknown result type (might be due to invalid IL or missing references)
Transform head = Player.Head;
HelperMethods.SpawnCrate("c1534c5a-481a-45d8-8bc1-d810466f7264", head.position + head.forward, default(Quaternion), Vector3.one, false, (Action<GameObject>)null, (Action<GameObject>)null);
}
internal static void loieuf()
{
//IL_000d: Unknown result type (might be due to invalid IL or missing references)
//IL_0013: Unknown result type (might be due to invalid IL or missing references)
//IL_0018: Unknown result type (might be due to invalid IL or missing references)
//IL_001f: Unknown result type (might be due to invalid IL or missing references)
//IL_0025: Unknown result type (might be due to invalid IL or missing references)
//IL_0026: Unknown result type (might be due to invalid IL or missing references)
Transform head = Player.Head;
HelperMethods.SpawnCrate("c1534c5a-3fd8-4d50-9eaf-0695466f7264", head.position + head.forward, default(Quaternion), Vector3.one, false, (Action<GameObject>)null, (Action<GameObject>)null);
}
internal static void CutsceneStart()
{
//IL_0013: Unknown result type (might be due to invalid IL or missing references)
//IL_0019: Unknown result type (might be due to invalid IL or missing references)
//IL_001e: Unknown result type (might be due to invalid IL or missing references)
//IL_0025: Unknown result type (might be due to invalid IL or missing references)
//IL_002b: Unknown result type (might be due to invalid IL or missing references)
//IL_002c: Unknown result type (might be due to invalid IL or missing references)
Transform head = Player.Head;
Transform chest = Player.Chest;
HelperMethods.SpawnCrate("SLZ.BONELAB.Content.Avatar.DogDuckSeason", head.position + head.forward, default(Quaternion), Vector3.one, true, (Action<GameObject>)null, (Action<GameObject>)null);
}
}
internal class BonelabModule
{
}