Working Hidden Blade (BONEHOLSTERS)
⚪ Last updated 2019Preview

🔍 Analysis
- 👍 1.8% endorsement rate — high engagement, a strong quality signal
- 🏆 #105 of 162 Weapons mods in this game by downloads
📋 About This Mod
Extending and retracting mounted blades using Boneholsters
PLEASE UPDATE BONEHOLSTERS TO THE LATEST VERSION OR THIS WILL NOT WORK
Found in Exotics
Trigger each blade with the trigger button, left and right respectively.
using UnityEngine;
namespace HiddenBladeL
public class BladeL : MonoBehaviour
bool stateClosed = true;
float animDelay = 2f;
public void Awake()
item = this. GetComponent<Item>();
public void Update()
bool triggerPressed = PlayerControl.handLeft.usePressed;
animDelay -= Time.deltaTime;
if (triggerPressed == true && animDelay <= 0f)
if (stateClosed == true)
item.definition. GetCustomReference("SoundOpen"). GetComponent<AudioSource>(). Play();
item.definition. GetCustomReference("AnimationOpen"). GetComponent<Animation>(). Play();
stateClosed = false;
animDelay = 0. 5f;
item.definition. GetCustomReference("SoundClose"). GetComponent<AudioSource>(). Play();
item.definition. GetCustomReference("AnimationClose"). GetComponent<Animation>(). Play();
stateClosed = true;
animDelay = 0. 5f;
📊 Mod Details
- Game
- Bladeandsorcery Mods
- Author
- Basalt
- Version
- 1
- Downloads
- 32,805
- Endorsements
- 587
- Category
- Weapons
- Created
- 11/15/2019
- Updated
- 11/15/2019
🔧 How to Install Bladeandsorcery Mods
Download from Nexus Mods.
📖 Full step-by-step install guide for Bladeandsorcery →
Visit the official mod page for specific installation instructions for this mod.
🎮 Need cheat codes or console commands? Check ur gaming wiki for Bladeandsorcery commands, item IDs, and more.
Keep browsing — more Bladeandsorcery mods await