Ejemplo n.º 1
0
 public void Init()
 {
     this.Name           = string.Empty;
     this.Unique         = 0;
     this.MapIdx         = 0;
     this.Flag           = new EventTriggerFlag(0L);
     this.ATB            = EventTriggerInfo.EventTriggerATB.None;
     this.QuestTextIndex = string.Empty;
     this.Comment        = string.Empty;
 }
Ejemplo n.º 2
0
    public override void SetData(TsDataReader.Row tsRow)
    {
        short num = 0;

        this.Init();
        tsRow.GetColumn(0, out this.Unique);
        tsRow.GetColumn(1, out this.Name);
        tsRow.GetColumn(2, out this.MapIdx);
        tsRow.GetColumn(3, out num);
        this.Flag = new EventTriggerFlag((long)num);
        string empty = string.Empty;

        tsRow.GetColumn(4, out empty);
        this.ATB = EventTriggerInfo.ParseATB(empty);
        tsRow.GetColumn(5, out this.QuestTextIndex);
        tsRow.GetColumn(6, out this.Comment);
    }