People Playground

People Playground

Blood Eye 3 (Mod) [Beta verison 0.5] No update.
Aura Grabber 10 Dec, 2024 @ 9:06pm
manual fix for mod (for those who don't care about syringes)
  1. Find the location of the mod.
    Should be ?:\Steam\steamapps\workshop\content\1118200\2170110891
    1118200 - game app id
    2170110891 - mod id

  2. Open the scriptsbloodeye.cs with notepad++

  3. Find every syringe the mod has like red, green, yellow, ghost, life etc
    EXAMPLE OF COMMENTED RED SYRINGE:
    // ModAPI.Register( // new Modification() // { // OriginalItem = ModAPI.FindSpawnable("Life Syringe"), // NameOverride = "Paint (Red) (0.4)", // CategoryOverride = ModAPI.FindCategory("Biohazard"), // DescriptionOverride = "Red people", // ThumbnailOverride = ModAPI.LoadSprite("redsyringeICON.png"), // AfterSpawn = (Instance) => // { // Instance.GetComponent<SpriteRenderer>().sprite = ModAPI.LoadSprite("paintred.png"); // Instance.GetComponent<SpriteRenderer>().color = new Color(255f, 255f, 255f, 1f); // foreach (var syringebehaviour in Instance.GetComponents<SyringeBehaviour>()) // { // GameObject.Destroy(syringebehaviour); // } // Instance.AddComponent<RedSyringe>(); // } // } // );

  4. Comment it and save the file.

  5. Profit!

The problem is that the author of the game changed how syringes works, so there is no "syringebehaviour" thing anymore.