///////////////////////////////////////////////////////////////////////// // // www.ultima.smoce.net // Name: Sundání věcí s ruk // ///////////////////////////////////////////////////////////////////////// using System; using System.Collections.Generic; using System.Text; using Phoenix; using Phoenix.WorldData; using System.Linq; using Phoenix.Communication; using Phoenix.Runtime; using Phoenix.Runtime.Reflection; namespace Scripts.DarkParadise { public class ultima_smoce_net_1779638309 {[Command("disarm")] public void disarm() { if (World.Player.Layers[Layer.LeftHand].Exist) { UO.MoveItem(World.Player.Layers[Layer.LeftHand].Serial, 1, World.Player.Backpack, 25, 90); } if (World.Player.Layers[Layer.RightHand].Exist) { UO.MoveItem(World.Player.Layers[Layer.RightHand].Serial, 1, World.Player.Backpack, 25, 90); } UO.Print("Sundano!"); } } }