http://www.runuo.com/community/resources/auto-sheathe-weapon.130/ Introduction This is an automatic system to make characters sheathe their weapons when they change from war to peace mode. It will also reequip their last used weapon when they get back to war mode. Installation You can put this into your shard in 2 easy steps: 1. Drop this script somewhere in your Scripts folder. 2. Open PlayerMobile.cs and find: Code (CSHARP): public override void OnWarmodeChanged() { if (!Warmode) Timer.DelayCall(TimeSpan.FromSeconds(10), new TimerCallback(RecoverAmmo)); } There, you just need to add the function "AutoSheatheWeapon.From(this)". Now your method should look like this: Code (CSHARP): public override void OnWarmodeChanged() { if (!Warmode) Timer.DelayCall(TimeSpan.FromSeconds(10), new TimerCallback(RecoverAmmo)); AutoSheatheWeapon.From(this); } Configuration You can configure the items that should not be unequiped when changing warmode. By default, the system will keep all kind of shields and spellbooks. You can easily add or remove type of items to keep equiped on the top of the script: Code (CSHARP): private static Type[] ItemTypesToKeepEquiped = new Type[] { typeof(BaseShield), typeof(Spellbook) };