ExX
Member
So I made a custom welcomer NPC and I am trying to get him to spawn facing south so he is actually facing players. I tried setting Direciton = South, (and Direction = south right here.
public Welcomer() : base( AIType.AI_Melee, FightMode.Aggressor, 10, 1, 0.2, 0.4 )
{
Name = NameList.RandomName("male");
Title = "The Welcomer";
Body = 0x190;
SpeechHue = Utility.RandomDyedHue();
Hue = Utility.RandomSkinHue();
CantWalk = true;
Direction = south;
But it just errors out. I have checked the RunUO forums with no success in an answer. Is there any way at all to do this?
public Welcomer() : base( AIType.AI_Melee, FightMode.Aggressor, 10, 1, 0.2, 0.4 )
{
Name = NameList.RandomName("male");
Title = "The Welcomer";
Body = 0x190;
SpeechHue = Utility.RandomDyedHue();
Hue = Utility.RandomSkinHue();
CantWalk = true;
Direction = south;
But it just errors out. I have checked the RunUO forums with no success in an answer. Is there any way at all to do this?