///////////////////////////////////////////////////////////////////////// // // www.ultima.smoce.net // Name: Drop Bomb // ///////////////////////////////////////////////////////////////////////// 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_1779630825 { [Executable] public void dropBomb() { UOItem bomb = World.Player.Backpack.AllItems.FindType(0x0F0D, 0x000E); if (bomb.Exist) { bomb.DropHere(); UO.Print("Bomb dropped!"); } UO.Print("nemas bomby !"); } } }