///////////////////////////////////////////////////////////////////////// // // www.ultima.smoce.net // Name: Vendor // ///////////////////////////////////////////////////////////////////////// using System; using System.Collections.Generic; using System.Text; using Phoenix; using Phoenix.WorldData; namespace Phoenix.Scripts { public class vendors { [Command("vendor2")] public static void VENDOR() { /* zobere laststatus a printne*/ UOCharacter vendor = new UOCharacter(Aliases.GetObject("laststatus")); UO.Print(0x00B3, " {0} buy",vendor.Name); } [Command("vendor3")] public static void VENDOR() { /* hotovej script targetnes a napise print*/ UOCharacter vendor = new UOCharacter(UIManager.TargetObject()); UO.Print(0x00B3, " {0} buy",vendor.Name); } } }