using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Versioning;
using BepInEx;
using BepInEx.Logging;
using Configgy;
using UnityEngine;
using UnityEngine.SceneManagement;
[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: AssemblyTitle("UK_BloodPointsMod")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("UK_BloodPointsMod")]
[assembly: AssemblyCopyright("Copyright © 2025")]
[assembly: AssemblyTrademark("")]
[assembly: ComVisible(false)]
[assembly: Guid("153601bc-eb14-4536-adfc-fd74bfc1ec89")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: TargetFramework(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")]
[assembly: AssemblyVersion("1.0.0.0")]
namespace UK_BloodPointsMod;
[BepInPlugin("ultrakill.exmagikguy.bloodPointsMod", "Blood Vending Machines", "1.0.0")]
public class BloodPoints_Controller : BaseUnityPlugin
{
private BloodPoints_Controller ovenMeatgrinder;
[Configgable("", "How to use (read info)", 0, "Blood Vending Machines appear near checkpoints with randomized stock, come up to the Blood Vending Machine, press F to activate it and then press 1 to scroll down the menu or 2 to scroll up the menu. Find an empty cup entry and buy it by pressing 3, it will go to the drink inventory. Now you can select whatever drink you want, and buy it. The drink you bought will replace the empty cup in your drink inventory (maximum inventory slots: 5), press F to exit the vending machine, now you can open drink inventory by pressing a key, you can rebind this key in Config Menu, after opening the inventory, just select which slot you want by pressing a digit (1 - 5) and confirm your choice by pressing the same digit again, then you will drink the product, but you cannot drink when the enemies are alive, congrats, you learnead to drink! But to buy drinks you need points.")]
public static bool Instructions = false;
[Configgable("", "Open drink inventory", 1, "The key, that opens the drink inventory, will not work if enemies are nearby.")]
public static ConfigKeybind invKey = new ConfigKeybind((KeyCode)57);
public Dictionary<string, int> fullStock = new Dictionary<string, int>
{
{ "Empty Cup", 30 },
{ "Blood Mini", 9 },
{ "Classic Blood", 5 },
{ "Blood Extra", 3 },
{ "Red Dice", 25 },
{ "Minos Energy", 2 }
};
public Dictionary<string, string> Menu = new Dictionary<string, string>
{
{ "Empty Cup", "An empty cup, used \nto hold drinks" },
{ "Blood Mini", "Just recovers your \nhealth" },
{ "Classic Blood", "Recovers your hp,\n stamina and railcannon" },
{ "Blood Extra", "Overheals, recovers \nstamina and all cooldowns!" },
{ "Red Dice", "Triggers a random event\n let's go gambling!" },
{ "Minos Energy", "Makes you faster \nfor 1 level!" }
};
public Dictionary<string, int> Pricing = new Dictionary<string, int>
{
{ "Empty Cup", 50 },
{ "Blood Mini", 170 },
{ "Classic Blood", 320 },
{ "Blood Extra", 530 },
{ "Red Dice", 100 },
{ "Minos Energy", 850 }
};
public Dictionary<string, int> StyleReqs = new Dictionary<string, int>
{
{ "Empty Cup", 0 },
{ "Blood Mini", 0 },
{ "Classic Blood", 20000 },
{ "Blood Extra", 85000 },
{ "Red Dice", 100000 },
{ "Minos Energy", 200000 }
};
public Dictionary<int, string> Listing = new Dictionary<int, string>
{
{ 0, "Empty Cup" },
{ 1, "Blood Mini" },
{ 2, "Classic Blood" },
{ 3, "Blood Extra" },
{ 4, "Red Dice" },
{ 5, "Minos Energy" }
};
public List<string> ownedDrinks = new List<string> { "None", "None", "None", "None", "None" };
public int ownedDrinksNum = 0;
public float totalStyle = 0f;
public AudioClip payAudio;
public AudioClip drinkAudio;
public Sprite vendingMach_sprite;
public bool inventoryOpen = false;
public int cinventorySlot = -1;
public static ConfigBuilder ConfigMenu;
private HudMessageReceiver messageReceiver;
private void Awake()
{
//IL_000b: Unknown result type (might be due to invalid IL or missing references)
//IL_0015: Expected O, but got Unknown
ConfigMenu = new ConfigBuilder("ultrakill.exmagikguy.bloodPointsMod", "Blood Vending Machines");
ConfigMenu.BuildType(typeof(BloodPoints_Controller));
}
private void Start()
{
ovenMeatgrinder = this;
GlobalLog((LogLevel)16, "Oven Meatgrinder has arrived to your hell!");
AssetBundle val = AssetBundle.LoadFromFile(Path.Combine(Paths.PluginPath, "UK_BloodPointsMod", "bundles", "bloodpoint_main.bundle"));
payAudio = val.LoadAsset<AudioClip>("Payment");
drinkAudio = val.LoadAsset<AudioClip>("Drink");
vendingMach_sprite = val.LoadAsset<Sprite>("bloodPointSpr");
messageReceiver = MonoSingleton<HudMessageReceiver>.Instance;
SceneManager.sceneLoaded += OnSceneLoad;
}
private void OnSceneLoad(Scene scene, LoadSceneMode mode)
{
//IL_003c: Unknown result type (might be due to invalid IL or missing references)
totalStyle = 0f;
totalStyle = 1000000f;
GlobalLog((LogLevel)16, "Spawning Blood Vending Machines...");
CheckPoint[] array = Object.FindObjectsOfType<CheckPoint>();
foreach (CheckPoint val in array)
{
CreateBloodPoint(((Component)val).transform.position, RandomizeStock(fullStock));
}
}
private void Update()
{
//IL_0011: Unknown result type (might be due to invalid IL or missing references)
messageReceiver = MonoSingleton<HudMessageReceiver>.Instance;
if (Input.GetKeyDown(((ConfigValueElement<KeyCode>)(object)invKey).Value) && (Object)(object)messageReceiver != (Object)null)
{
inventoryOpen = !inventoryOpen;
cinventorySlot = -1;
if (inventoryOpen)
{
messageReceiver.SendHudMessage("Inventory Opened", "", "", 0, false, false, true);
}
else
{
messageReceiver.SendHudMessage("Inventory Closed", "", "", 0, false, false, true);
}
}
if (!inventoryOpen)
{
return;
}
if (Input.GetKeyDown((KeyCode)49))
{
int num = 1;
if (cinventorySlot != num - 1)
{
cinventorySlot = num - 1;
string text = ownedDrinks[cinventorySlot];
if (text == "None")
{
messageReceiver.SendHudMessage("No item in this slot.", "", "", 0, false, false, true);
cinventorySlot = -1;
return;
}
string text2 = "Drink it";
if (text == "Empty Cup")
{
text2 = "Trash it";
}
messageReceiver.SendHudMessage("Item: " + text + "\n" + text2 + "?", "", "", 0, false, false, true);
}
else
{
UseItem(ownedDrinks[cinventorySlot]);
ownedDrinks[cinventorySlot] = "None";
ownedDrinksNum--;
cinventorySlot = -1;
}
}
else if (Input.GetKeyDown((KeyCode)50))
{
int num2 = 2;
if (cinventorySlot != num2 - 1)
{
cinventorySlot = num2 - 1;
string text3 = ownedDrinks[cinventorySlot];
if (text3 == "None")
{
messageReceiver.SendHudMessage("No item in this slot.", "", "", 0, false, false, true);
cinventorySlot = -1;
return;
}
string text4 = "Drink it";
if (text3 == "Empty Cup")
{
text4 = "Trash it";
}
messageReceiver.SendHudMessage("Item: " + text3 + "\n" + text4 + "?", "", "", 0, false, false, true);
}
else
{
UseItem(ownedDrinks[cinventorySlot]);
ownedDrinks[cinventorySlot] = "None";
ownedDrinksNum--;
cinventorySlot = -1;
}
}
else if (Input.GetKeyDown((KeyCode)51))
{
int num3 = 3;
if (cinventorySlot != num3 - 1)
{
cinventorySlot = num3 - 1;
string text5 = ownedDrinks[cinventorySlot];
if (text5 == "None")
{
messageReceiver.SendHudMessage("No item in this slot.", "", "", 0, false, false, true);
cinventorySlot = -1;
return;
}
string text6 = "Drink it";
if (text5 == "Empty Cup")
{
text6 = "Trash it";
}
messageReceiver.SendHudMessage("Item: " + text5 + "\n" + text6 + "?", "", "", 0, false, false, true);
}
else
{
UseItem(ownedDrinks[cinventorySlot]);
ownedDrinks[cinventorySlot] = "None";
ownedDrinksNum--;
cinventorySlot = -1;
}
}
else if (Input.GetKeyDown((KeyCode)52))
{
int num4 = 4;
if (cinventorySlot != num4 - 1)
{
cinventorySlot = num4 - 1;
string text7 = ownedDrinks[cinventorySlot];
if (text7 == "None")
{
messageReceiver.SendHudMessage("No item in this slot.", "", "", 0, false, false, true);
cinventorySlot = -1;
return;
}
string text8 = "Drink it";
if (text7 == "Empty Cup")
{
text8 = "Trash it";
}
messageReceiver.SendHudMessage("Item: " + text7 + "\n" + text8 + "?", "", "", 0, false, false, true);
}
else
{
UseItem(ownedDrinks[cinventorySlot]);
ownedDrinks[cinventorySlot] = "None";
ownedDrinksNum--;
cinventorySlot = -1;
}
}
else
{
if (!Input.GetKeyDown((KeyCode)53))
{
return;
}
int num5 = 5;
if (cinventorySlot != num5 - 1)
{
cinventorySlot = num5 - 1;
string text9 = ownedDrinks[cinventorySlot];
if (text9 == "None")
{
messageReceiver.SendHudMessage("No item in this slot.", "", "", 0, false, false, true);
cinventorySlot = -1;
return;
}
string text10 = "Drink it";
if (text9 == "Empty Cup")
{
text10 = "Trash it";
}
messageReceiver.SendHudMessage("Item: " + text9 + "\n" + text10 + "?", "", "", 0, false, false, true);
}
else
{
UseItem(ownedDrinks[cinventorySlot]);
ownedDrinks[cinventorySlot] = "None";
ownedDrinksNum--;
cinventorySlot = -1;
}
}
}
private void GlobalLog(LogLevel level, string log)
{
//IL_000c: Unknown result type (might be due to invalid IL or missing references)
((BaseUnityPlugin)ovenMeatgrinder).Logger.Log(level, (object)log);
}
private GameObject CreateBloodPoint(Vector3 position, Dictionary<string, int> stockDict)
{
//IL_0001: Unknown result type (might be due to invalid IL or missing references)
//IL_0007: Expected O, but got Unknown
//IL_004a: Unknown result type (might be due to invalid IL or missing references)
//IL_005a: Unknown result type (might be due to invalid IL or missing references)
//IL_005f: Unknown result type (might be due to invalid IL or missing references)
//IL_007f: Unknown result type (might be due to invalid IL or missing references)
GameObject val = new GameObject();
val.AddComponent<SpriteRenderer>();
val.AddComponent<Blood_VendingMachine>();
val.GetComponent<SpriteRenderer>().sprite = vendingMach_sprite;
val.GetComponent<Blood_VendingMachine>().currentStock = stockDict;
val.GetComponent<Blood_VendingMachine>().controller = ovenMeatgrinder;
val.transform.position = position + new Vector3(0f, 1.5f, 0f);
val.transform.localScale = new Vector3(3f, 3f, 0f);
return val;
}
private Dictionary<string, int> RandomizeStock(Dictionary<string, int> fullStock)
{
int num = Random.Range(0, 1000);
if (num > 250)
{
return new Dictionary<string, int>
{
{
"Empty Cup",
Random.Range(1, 30)
},
{
"Blood Mini",
Random.Range(1, 9)
},
{
"Classic Blood",
Random.Range(1, 5)
},
{
"Blood Extra",
Random.Range(1, 3)
},
{
"Red Dice",
Random.Range(1, 25)
},
{
"Minos Energy",
Random.Range(1, 2)
}
};
}
return fullStock;
}
private void UseItem(string Item)
{
if (MonoSingleton<EnemyTracker>.Instance.GetCurrentEnemies().Count > 0)
{
return;
}
if (Item != "Empty Cup")
{
((Component)MonoSingleton<NewMovement>.Instance).GetComponent<AudioSource>().PlayOneShot(drinkAudio);
}
switch (Item)
{
case "Blood Mini":
MonoSingleton<NewMovement>.Instance.FullHeal(true);
break;
case "Classic Blood":
MonoSingleton<NewMovement>.Instance.FullHeal(true);
MonoSingleton<NewMovement>.Instance.FullStamina();
MonoSingleton<WeaponCharges>.Instance.raicharge = 5f;
break;
case "Blood Extra":
MonoSingleton<NewMovement>.Instance.SuperCharge();
MonoSingleton<NewMovement>.Instance.FullStamina();
MonoSingleton<WeaponCharges>.Instance.MaxCharges();
break;
case "Red Dice":
{
NewMovement instance2 = MonoSingleton<NewMovement>.Instance;
switch (Random.Range(0, 7))
{
case 0:
instance2.EmptyStamina();
instance2.walkSpeed /= 2f;
messageReceiver.SendHudMessage("You was slowed down.", "", "", 0, false, false, true);
break;
case 1:
instance2.GetHurt(instance2.hp - 1, false, 1f, false, false, 0.35f, false);
instance2.ForceAddAntiHP((float)(instance2.hp - 1), false, false, true, false);
instance2.EmptyStamina();
MonoSingleton<WeaponCharges>.Instance.Charge(-999999f);
messageReceiver.SendHudMessage("Super unlucky.", "", "", 0, false, false, true);
break;
case 2:
instance2.GetHurt(instance2.hp - 1, false, 1f, false, false, 0.35f, false);
instance2.EmptyStamina();
MonoSingleton<WeaponCharges>.Instance.raicharge = 0f;
messageReceiver.SendHudMessage("Pretty Unlucky.", "", "", 0, false, false, true);
break;
case 3:
instance2.GetHurt(instance2.hp - 1, false, 1f, false, false, 0.35f, false);
messageReceiver.SendHudMessage("Unlucky.", "", "", 0, false, false, true);
break;
case 4:
instance2.FullHeal(true);
messageReceiver.SendHudMessage("Full heal!", "", "", 0, false, false, true);
break;
case 5:
instance2.FullHeal(true);
instance2.FullStamina();
MonoSingleton<WeaponCharges>.Instance.raicharge = 5f;
messageReceiver.SendHudMessage("Full heal, stamina and \nrailcannon!", "", "", 0, false, false, true);
break;
case 6:
instance2.SuperCharge();
instance2.FullStamina();
MonoSingleton<WeaponCharges>.Instance.MaxCharges();
messageReceiver.SendHudMessage("Super lucky.", "", "", 0, false, false, true);
break;
case 7:
{
MonoSingleton<NewMovement>.Instance.FullStamina();
NewMovement instance3 = MonoSingleton<NewMovement>.Instance;
instance3.walkSpeed *= 2f;
messageReceiver.SendHudMessage("You became faster.", "", "", 0, false, false, true);
break;
}
}
break;
}
case "Minos Energy":
{
MonoSingleton<NewMovement>.Instance.FullStamina();
NewMovement instance = MonoSingleton<NewMovement>.Instance;
instance.walkSpeed *= 2f;
break;
}
}
}
}
public class Blood_VendingMachine : MonoBehaviour
{
public Dictionary<string, int> currentStock;
private bool beingUsed = false;
private bool canBeUsed = true;
private AudioSource aud;
public BloodPoints_Controller controller;
private HudMessageReceiver messageReceiver;
private CameraController cc;
private int[] selection = new int[3] { 0, 0, 5 };
private void Start()
{
aud = ((Component)this).gameObject.AddComponent<AudioSource>();
aud.spatialBlend = 1f;
aud.playOnAwake = false;
aud.loop = false;
messageReceiver = MonoSingleton<HudMessageReceiver>.Instance;
cc = MonoSingleton<CameraController>.Instance;
}
private void Update()
{
//IL_001d: Unknown result type (might be due to invalid IL or missing references)
//IL_0028: 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_00ef: Unknown result type (might be due to invalid IL or missing references)
//IL_00f4: Unknown result type (might be due to invalid IL or missing references)
//IL_00f9: Unknown result type (might be due to invalid IL or missing references)
NewMovement instance = MonoSingleton<NewMovement>.Instance;
if ((Object)(object)instance == (Object)null)
{
return;
}
if (Vector3.Distance(((Component)instance).transform.position, ((Component)this).transform.position) < 8f && canBeUsed)
{
if (Input.GetKeyDown((KeyCode)102))
{
beingUsed = !beingUsed;
if (beingUsed)
{
messageReceiver.SendHudMessage("<color=green>Welcome!</color> \nWhat can i make you? \n<color=orange>scroll menu with 1 and 2</color>", "", "", 0, false, false, true);
}
else
{
messageReceiver.SendHudMessage("<color=green>Have a nice day!</color>", "", "", 0, false, false, true);
}
}
}
else
{
beingUsed = false;
}
canBeUsed = MonoSingleton<EnemyTracker>.Instance.GetCurrentEnemies().Count < 1;
((Component)this).transform.rotation = Quaternion.LookRotation(((Component)this).transform.position - ((Component)cc).transform.position);
if (!beingUsed)
{
return;
}
controller.inventoryOpen = false;
controller.cinventorySlot = -1;
if (Input.GetKeyDown((KeyCode)49))
{
selection[0] = Mathf.Clamp(selection[0] - 1, selection[1], selection[2]);
string text = controller.Listing[selection[0]];
int num = controller.Pricing[text];
string text2 = controller.Menu[text];
int num2 = controller.StyleReqs[text];
int num3 = currentStock[text];
if (controller.totalStyle >= (float)num2)
{
messageReceiver.SendHudMessage(text + " (" + num + "<color=orange>P</color>," + num3 + " Left)\n" + text2, "", "", 0, false, false, true);
}
else
{
messageReceiver.SendHudMessage("<color=red>You are not stylish enough</color>", "", "", 0, false, false, true);
selection[0] = Mathf.Clamp(selection[0] + 1, selection[1], selection[2]);
}
}
else if (Input.GetKeyDown((KeyCode)50))
{
selection[0] = Mathf.Clamp(selection[0] + 1, selection[1], selection[2]);
string text3 = controller.Listing[selection[0]];
int num4 = controller.Pricing[text3];
string text4 = controller.Menu[text3];
int num5 = controller.StyleReqs[text3];
int num6 = currentStock[text3];
if (controller.totalStyle >= (float)num5)
{
messageReceiver.SendHudMessage(text3 + " (" + num4 + "<color=orange>P</color>," + num6 + " Left)\n" + text4, "", "", 0, false, false, true);
}
else
{
messageReceiver.SendHudMessage("<color=red>You are not stylish enough</color>", "", "", 0, false, false, true);
selection[0] = Mathf.Clamp(selection[0] - 1, selection[1], selection[2]);
}
}
else
{
if (!Input.GetKeyDown((KeyCode)51))
{
return;
}
string text5 = controller.Listing[selection[0]];
int num7 = controller.Pricing[text5];
int num8 = currentStock[text5];
if (controller.ownedDrinksNum < 5 || (controller.ownedDrinks.Contains("Empty Cup") && text5 != "Empty Cup"))
{
if (controller.ownedDrinks.Contains("Empty Cup") || text5 == "Empty Cup")
{
if (num8 > 0)
{
if (GameProgressSaver.GetMoney() >= num7)
{
messageReceiver.SendHudMessage("<color=green>Bought!</color>", "", "", 0, false, false, true);
if (text5 != "Empty Cup")
{
controller.ownedDrinks[controller.ownedDrinks.IndexOf("Empty Cup")] = text5;
MonoSingleton<StyleHUD>.Instance.AddPoints(num7, "<color=blue>ADVERTISING</color>", (GameObject)null, (EnemyIdentifier)null, -1, "", "");
}
else
{
controller.ownedDrinks[controller.ownedDrinks.IndexOf("None")] = text5;
controller.ownedDrinksNum++;
}
GameProgressSaver.AddMoney(-num7);
currentStock[text5]--;
aud.PlayOneShot(controller.payAudio);
}
else
{
messageReceiver.SendHudMessage("<color=red>Insufficent points.</color>", "", "", 0, false, false, true);
}
}
else
{
messageReceiver.SendHudMessage("<color=red>It was sold out!</color>", "", "", 0, false, false, true);
}
}
else
{
messageReceiver.SendHudMessage("<color=red>Nowhere to hold liquid!</color>", "", "", 0, false, false, true);
}
}
else
{
messageReceiver.SendHudMessage("<color=red>Inventory is full!</color>", "", "", 0, false, false, true);
}
}
}
}