Ejemplo n.º 1
0
 public static void StepAway(Game.Ent_Dynamic ent, Game.Ent_Static target, int?stop_dist)
 {
     if (stop_dist == null)
     {
         stop_dist = 5;
     }
     Logger.DebugMajor("map->step_away");
 }
Ejemplo n.º 2
0
 public static void WalkAway(Game.Ent_Dynamic ent, Game.Ent_Static target, int?stop_dist = null, int lag = 0)
 {
     if (stop_dist == null)
     {
         stop_dist = 5;
     }
     Logger.DebugMajor("map->walk_away");
 }
Ejemplo n.º 3
0
        protected override void list_add(object item)
        {
            if (!(item is Game.Ent_Dynamic))
            {
                throw new Exception("CAN NOT ADD STATIC ENT TO CONTENTS!");
            }

            Game.Ent_Dynamic item_ent = (Game.Ent_Dynamic)item;

            contents.Add(item_ent);
            item_ent.__SetLocInternal((Game.Ent_Static)owner);
        }
Ejemplo n.º 4
0
 public virtual void Uncrossed(Game.Ent_Dynamic O = null)
 {
     return;
 }
Ejemplo n.º 5
0
 public virtual dynamic Crossed(Game.Ent_Dynamic O = null, dynamic X = null)
 {
     return(null);
 }
Ejemplo n.º 6
0
 public virtual bool Exit(Game.Ent_Dynamic O, Game.Ent_Static new_loc)
 {
     return(false);
 }
Ejemplo n.º 7
0
 public static void StepRandom(Game.Ent_Dynamic ent)
 {
     Logger.DebugMajor("map->step_rand");
 }
Ejemplo n.º 8
0
 public static void StepTowardsSimple(Game.Ent_Dynamic ent, Game.Ent_Static target)
 {
     Logger.DebugMajor("map->step_twoards_stupid");
 }
Ejemplo n.º 9
0
 public static void StepTowards(Game.Ent_Dynamic ent, Game.Ent_Static target, int stop_dist = 0)
 {
     Logger.DebugMajor("map->step_towards");
 }
Ejemplo n.º 10
0
 public static void Step(Game.Ent_Dynamic ent, int dir)
 {
     Logger.DebugMajor("map->step");
 }
Ejemplo n.º 11
0
 public static void WalkTowardsSimple(Game.Ent_Dynamic ent, Game.Ent_Static target, int lag = 0)
 {
     Logger.DebugMajor("map->walk_towards_stupid");
 }
Ejemplo n.º 12
0
 // target can be a number -- in that case it will halt!
 public static void WalkTowards(Game.Ent_Dynamic ent, dynamic target, int stop_dist = 0, int lag = 0)
 {
     Logger.DebugMajor("map->walk_towards");
 }
Ejemplo n.º 13
0
        /////

        public static void Walk(Game.Ent_Dynamic ent, int dir, int lag = 0)
        {
            Logger.DebugMajor("map->walk");
        }