Thank you Joeku
Okay, now another small problem, it tells me I'm missing a using directive for List, but I have never worked with Lists before - I have no idea which directive I'm missing
Code:
using Server;
using System;
using Server.Gumps;
using Server.Network;
using Server.Items;
using Server.Mobiles;
using Server.Accounting;
namespace Server.Items
{
public class UmbarianStone : Item
{
List<Mobile> m_List = new List<Mobile>();
[Constructable]
public UmbarianStone()
: base(3796)
{
Movable = false;
Name = "Umbarian Shadows Stone";
}
Errors:
+ Custom/Umbarian Shadows System/UmbarianStone.cs:
CS0246: Line 14: The type or namespace name 'List' could not be found (are y
ou missing a using directive or an assembly reference?)
Sorry, I'm usually not this noob with scripting at all, but this list thing is really all new to me
Regards