Exemplo n.º 1
0
		// These are the various ways in which the message attachment can be constructed.
		// These can be called via the [addatt interface, via scripts, via the spawner ATTACH keyword.
		// Other overloads could be defined to handle other types of arguments

		// a serial constructor is REQUIRED
		public XmlDynamicFaction(ASerial serial) : base(serial)
		{
		}
Exemplo n.º 2
0
        private string m_TestString = null; // Test condition to see if mobile is an enemy of the object this is attached to

        #endregion Fields

        #region Constructors

        public XmlIsEnemy(ASerial serial)
            : base(serial)
        {
        }
Exemplo n.º 3
0
		// These are the various ways in which the message attachment can be constructed.  
		// These can be called via the [addatt interface, via scripts, via the spawner ATTACH keyword.
		// Other overloads could be defined to handle other types of arguments

		// a serial constructor is REQUIRED
		public XmlQuestAttachment(ASerial serial)
			: base(serial)
		{
		}
Exemplo n.º 4
0
        private string m_Title = null;// title string

        // a serial constructor is REQUIRED
        public XmlTitle(ASerial serial)
            : base(serial)
        {
        }
Exemplo n.º 5
0
 public XmlSoulEater(ASerial serial)
     : base(serial)
 {
 }
Exemplo n.º 6
0
 // a serial constructor is REQUIRED
 public XmlSocketable(ASerial serial)
     : base(serial)
 {
 }
Exemplo n.º 7
0
  // These are the various ways in which the message attachment can be constructed.  
  // These can be called via the [addatt interface, via scripts, via the spawner ATTACH keyword.
  // Other overloads could be defined to handle other types of arguments
 
  // a serial constructor is REQUIRED
  public TemporaryQuestObject(ASerial serial) : base(serial)
  {
  }
Exemplo n.º 8
0
        private int proximityrange = 5;// default movement activation from 5 tiles away

        // a serial constructor is REQUIRED
        public XmlLifeDrain(ASerial serial)
            : base(serial)
        {
        }
Exemplo n.º 9
0
        private int m_Value = 10;// default value of 10

        // These are the various ways in which the message attachment can be constructed.  
        // These can be called via the [addatt interface, via scripts, via the spawner ATTACH keyword.
        // Other overloads could be defined to handle other types of arguments

        // a serial constructor is REQUIRED
        public XmlInt(ASerial serial)
            : base(serial)
        {
        }
Exemplo n.º 10
0
		// These are the various ways in which the message attachment can be constructed.
		// These can be called via the [addatt interface, via scripts, via the spawner ATTACH keyword.
		// Other overloads could be defined to handle other types of arguments

		// a serial constructor is REQUIRED
		public XmlMobFactions(ASerial serial) : base(serial)
		{
		}
Exemplo n.º 11
0
        private bool m_RequireIdentification = false;// by default no identification is required for the mod to be activatable

        // a serial constructor is REQUIRED
        public XmlMagicWord(ASerial serial)
            : base(serial)
        {
        }
Exemplo n.º 12
0
		// These are the various ways in which the message attachment can be constructed.
		// These can be called via the [addatt interface, via scripts, via the spawner ATTACH keyword
		// Other overloads could be defined to handle other types of arguments

		// a serial constructor is REQUIRED
		public XmlSkill(ASerial serial) : base(serial)
		{
		}
Exemplo n.º 13
0
		// These are the various ways in which the message attachment can be constructed.
		// These can be called via the [addatt interface, via scripts, via the spawner ATTACH keyword.
		// Other overloads could be defined to handle other types of arguments

		// a serial constructor is REQUIRED
		public XmlFire(ASerial serial) : base(serial)
		{
		}
Exemplo n.º 14
0
		// These are the various ways in which the message attachment can be constructed.  
		// These can be called via the [addatt interface, via scripts, via the spawner ATTACH keyword.
		// Other overloads could be defined to handle other types of arguments

		// a serial constructor is REQUIRED
		public XmlMessage(ASerial serial) : base(serial)
		{
		}
Exemplo n.º 15
0
 // a serial constructor is REQUIRED
 public XmlDialog(ASerial serial)
     : base(serial)
 {
 }
Exemplo n.º 16
0
		//serial constructor
		public Keyguard( ASerial serial ) : base( serial )
		{
		}
Exemplo n.º 17
0
        private string m_Condition;// condition string

        // a serial constructor is REQUIRED
        public XmlDeathAction(ASerial serial)
            : base(serial)
        {
        }
Exemplo n.º 18
0
 // a serial constructor is REQUIRED
 public XmlTeam(ASerial serial)
     : base(serial)
 {
 }
Exemplo n.º 19
0
 public CustomParagon(ASerial serial)
     : base(serial)
 {
 }
Exemplo n.º 20
0
        private DateTime m_CreationTime;// when the attachment was made

        // ----------------------------------------------
        // Constructors
        // ----------------------------------------------
        public XmlAttachment()
        {
            this.m_CreationTime = DateTime.UtcNow;

            // get the next unique serial id
            this.m_Serial = ASerial.NewSerial();

            // register the attachment in the serial keyed hashtable
            XmlAttach.HashSerial(this.m_Serial, this);
        }
Exemplo n.º 21
0
		// These are the various ways in which the message attachment can be constructed.  
		// These can be called via the [addatt interface, via scripts, via the spawner ATTACH keyword.
		// Other overloads could be defined to handle other types of arguments
       
		// a serial constructor is REQUIRED
		public XmlAddKarma(ASerial serial) : base(serial)
		{
		}
Exemplo n.º 22
0
 // needed for deserialization
 public XmlAttachment(ASerial serial)
 {
     this.m_Serial = serial;
 }
Exemplo n.º 23
0
 public XmlUse(ASerial serial)
     : base(serial)
 {
 }
Exemplo n.º 24
0
		// These are the various ways in which the message attachment can be constructed.
		// These can be called via the [addatt interface, via scripts, via the spawner ATTACH keyword.
		// Other overloads could be defined to handle other types of arguments

		// a serial constructor is REQUIRED
		public XmlMinionStrike(ASerial serial) : base(serial)
		{
		}
Exemplo n.º 25
0
 public XmlQuestPoints(ASerial serial)
     : base(serial)
 {
 }
Exemplo n.º 26
0
 public XmlDateCount( ASerial serial ) : base( serial )
 {
 }
Exemplo n.º 27
0
        // These are the various ways in which the message attachment can be constructed.
        // These can be called via the [addatt interface, via scripts, via the spawner ATTACH keyword.
        // Other overloads could be defined to handle other types of arguments

        // a serial constructor is REQUIRED
        public XmlPoints(ASerial serial)
            : base(serial)
        {
        }
Exemplo n.º 28
0
		// These are the various ways in which the message attachment can be constructed.
		// These can be called via the [addatt interface, via scripts, via the spawner ATTACH keyword.
		// Other overloads could be defined to handle other types of arguments

		// a serial constructor is REQUIRED
		public XmlManaDrain(ASerial serial) :  base(serial)
		{
		}
Exemplo n.º 29
0
 public XmlParagon(ASerial serial)
     : base(serial)
 {
 }
Exemplo n.º 30
0
		// These are the various ways in which the message attachment can be constructed.  
		// These can be called via the [addatt interface, via scripts, via the spawner ATTACH keyword.
		// Other overloads could be defined to handle other types of arguments

		// a serial constructor is REQUIRED
		public HandSiegeAttack(ASerial serial)
			: base(serial)
		{
		}