RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

[2.0] [find house [find boat

otimpyre

Sorceror
[2.0] [find house [find boat

Updated to run on 2.0.All credit goes to original creator Haazen & edits by Slayer1ss -> http://www.runuo.com/forums/showthread.php?t=59988&highlight=find+boat

Gives a gump showing all owners of houses and boats along with locations and allows staff to teleport there

Commands are
[findhouse
[findboat


Edited code

Code:
    //
 //  Written by Haazen June 2005
//   Edited by Busty in October 2005 to find houses
//This script does NOT include the findboat command!!!
using System;
using System.Collections;
using Server;
using Server.Items;
using Server.Network;
using Server.Prompts;
using Server.Multis;
using Server.Targeting;
using Server.Accounting;
[COLOR="red"]using Server.Commands;[/COLOR]

namespace Server.Gumps
{
	public class FindHouseGump : Gump
	{

		public static void Initialize()
		{
			[COLOR="Red"]CommandSystem.Register[/COLOR]( "FindHouse", AccessLevel.Counselor, new CommandEventHandler( FindHouse_OnCommand ) );
 

Attachments

  • Find house or boat.zip
    3.1 KB · Views: 309
Top