///////////////////////////////////////////////////////////////////////// // // www.ultima.smoce.net // Name: Remove Traps // ///////////////////////////////////////////////////////////////////////// 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_1779634700 {[Executable] public void removetraps_trainw() { UO.PrintInformation("Vyber past."); UOItem past = new UOItem(UIManager.TargetObject()); int i = 1; while (i < 1000) { UO.WaitTargetObject(past); UO.UseSkill("Remove Trap"); UO.Wait(4000); i++; } } } }