///////////////////////////////////////////////////////////////////////// // // www.ultima.smoce.net // Name: Řezání těl (body) :-D // ///////////////////////////////////////////////////////////////////////// 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 {[Executable] public void nbs() { UO.WaitTargetObject(Aliases.GetObject("lastcorpse")); UOItem dykanb = World.Player.Layers.FindType(0x0F51, 0x0B80); dykanb.Use(); } [Command("rezaniarm")] public void rezanicomavruce() { Serial rukaleft = World.Player.Layers[Layer.LeftHand].Serial; UO.WaitTargetObject(Aliases.GetObject("lastcorpse")); UO.UseObject(rukaleft); } } }