#W# Initial Commit: Avatars Conquest
This commit is contained in:
commit
5df497787a
7510 changed files with 416048 additions and 0 deletions
34
Scripts/Mobiles/Base/AI/CitizenAI.cs
Normal file
34
Scripts/Mobiles/Base/AI/CitizenAI.cs
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
using Server.Targeting;
|
||||
using Server.Network;
|
||||
|
||||
namespace Server.Mobiles
|
||||
{
|
||||
public class CitizenAI : BaseAI
|
||||
{
|
||||
public CitizenAI(BaseCreature m) : base (m)
|
||||
{
|
||||
}
|
||||
|
||||
public override bool DoActionWander()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
public override bool DoActionCombat()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
public override bool DoActionBackoff()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
public override bool DoActionFlee()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue