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!

What does this script snippet do?

kada20

Wanderer
What does this script snippet do?

public abstract class BaseGuard : Mobile
{
public static void Spawn( Mobile target )
{
Spawn( target, 1, false );
}

could someone enlighten me on the mechanics of what this is doing?
What is an 'abstract' class?
I understand public and private classes but dont know what abstract is.
Also, could this snippet be used as part of a item that will spawn a mobile?
Am I in the right direction?
 

Phantom

Knight
Yes I would guess that would spawn. You will have to go to a C# site to figure out what abtract I got no idea.
 
Top