Go Back   RunUO - Ultima Online Emulation > RunUO > General Discussion

General Discussion General discussion for the RunUO community, all off-topic posts will be deleted. This forum is NOT FOR SUPPORT!

Reply
 
Thread Tools Display Modes
Old 01-31-2003, 12:37 AM   #1 (permalink)
 
Join Date: Jan 2003
Posts: 128
Send a message via ICQ to helium Send a message via AIM to helium
Default Please Read, I have a few questions getting some stuff going

Its no lie, im as noob as they come. Although my skills are as bad as Al Gores sence of humor, I am determined to learn how to script and manage the world a little better. Here are some of the things I would like to accomplish so far. Granted that I have been running this for 3 days now, I think I have a good idea what I want.

1. I want to disable the guard autogank option in towns and instead have guards that walk around. Only way to get killed is to commit a crime within like a screen of their viewable area.

2. I was able to edit the new account script do it doesn't load you up with goodies. But for some reason it still says in the display thing that "your account has new stuff" message. I was wondering how I could get rid of that.

3. I posted something earlier about a good house design tool. I downloaded the new home designer, but im having problems placing the houses. I get server spam messages and invaild commands. Am I doing something wrong with this? is there a script I need to edit?

4. If there is any good program out there to create custom maps. I would eventually like to get rid of trammel for connection purposes.

Im sorry for being a boring noob, but if you can offer any good advice on any of these, your answers are greately appreciated.

Thanks
helium is offline   Reply With Quote
Old 01-31-2003, 01:43 AM   #2 (permalink)
Account Terminated
 
Join Date: Sep 2002
Age: 26
Posts: 3,846
Send a message via ICQ to Phantom Send a message via AIM to Phantom Send a message via MSN to Phantom
Default

Quote:
1. I want to disable the guard autogank option in towns and instead have guards that walk around. Only way to get killed is to commit a crime within like a screen of their viewable area.

2. I was able to edit the new account script do it doesn't load you up with goodies. But for some reason it still says in the display thing that "your account has new stuff" message. I was wondering how I could get rid of that.

3. I posted something earlier about a good house design tool. I downloaded the new home designer, but im having problems placing the houses. I get server spam messages and invaild commands. Am I doing something wrong with this? is there a script I need to edit?

4. If there is any good program out there to create custom maps. I would eventually like to get rid of trammel for connection purposes.
1) You would have to make the town no guarded. Then make a new class that would check for red's doing a crime.

2) Delete the Test Center Folder

3) I have no idea, try to figure it out.

4) Dragon is a good tool, several links have been posted also can use some other tools.
Phantom is offline   Reply With Quote
Old 01-31-2003, 01:58 AM   #3 (permalink)
 
Join Date: Jan 2003
Posts: 128
Send a message via ICQ to helium Send a message via AIM to helium
Default

thank you very much for your help, I will try the Dragon Tool

Thank you
helium is offline   Reply With Quote
Old 01-31-2003, 02:50 AM   #4 (permalink)
Forum Novice
 
Join Date: Dec 2002
Location: Latvia
Age: 24
Posts: 116
Send a message via MSN to Xacker Send a message via Skype™ to Xacker
Default

WelcomeTimer.cs
[code:1]
using System;
using Server.Network;

namespace Server.Misc
{
/// <summary>
/// This timer spouts some welcome messages to a user at a set interval. It is used on character creation and login.
/// </summary>
public class WelcomeTimer : Timer
{
private Mobile m_Mobile;
private int m_State, m_Count;

private static string[] m_Messages = new string[]
{
"write ther whot u wont."
};

public WelcomeTimer( Mobile m ) : this( m, m_Messages.Length )
{
}

public WelcomeTimer( Mobile m, int count ) : base( TimeSpan.FromSeconds( 5.0 ), TimeSpan.FromSeconds( 10.0 ) )
{
m_Mobile = m;
m_Count = count;
}

protected override void OnTick()
{
m_Mobile.SendMessage( 0x35, m_Messages[m_State++] );

if ( m_State == m_Count )
Stop();
}
}
}
[/code:1]
mesage fix
Xacker is offline   Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 RC5