Exemplo n.º 1
0
 public BotConnectStage(Regulus.Project.SamebestKeys.IUser _User, string ip, int port)
 {
     // TODO: Complete member initialization
     this._User = _User;
     this.ip = ip;
     this.port = port;
 }
Exemplo n.º 2
0
 public BotMapStage(Regulus.Project.SamebestKeys.IUser _User)
 {
     this._User = _User;
     _SceneBorns = new SceneBorn[]
     {
         new SceneBorn() { Name = "SC_1A" , Points = new Regulus.CustomType.Point[]
             {
                 new Regulus.CustomType.Point(41,420 ),
                 new Regulus.CustomType.Point(41,320 ),
                 new Regulus.CustomType.Point(37,80 ),
                 new Regulus.CustomType.Point(26,63 ),
                 new Regulus.CustomType.Point(105,290 )
             }},
         /*new SceneBorn() { Name = "SL_1B_2" , Points = new Regulus.Types.Point[]
             {
                 new Regulus.Types.Point(264,438),
                 new Regulus.Types.Point(265,250),
                 new Regulus.Types.Point(82,545),
                 new Regulus.Types.Point(80,477),
                 new Regulus.Types.Point(185,247)
             }},
         new SceneBorn() { Name = "SL_1C" , Points = new Regulus.Types.Point[]
             {
                 new Regulus.Types.Point(72,267),
                 new Regulus.Types.Point(128,198),
                 new Regulus.Types.Point(176,330),
                 new Regulus.Types.Point(184,115),
                 new Regulus.Types.Point(265,101)
             }},
         new SceneBorn() { Name = "SL_1K" , Points = new Regulus.Types.Point[]
             {
                 new Regulus.Types.Point(99,172),
                 new Regulus.Types.Point(213,200),
                 new Regulus.Types.Point(336,182),
                 new Regulus.Types.Point(434,170),
                 new Regulus.Types.Point(534,183)
             }},*/
     };
     _Machine = new Regulus.Utility.StageMachine();
 }
Exemplo n.º 3
0
 public BotVerifyStage(Regulus.Project.SamebestKeys.IUser _User, string account)
 {
     // TODO: Complete member initialization
     this._User = _User;
     this.account = account;
 }
Exemplo n.º 4
0
 public BotRunStage(Regulus.Project.SamebestKeys.IUser _User, Regulus.CustomType.Point? _BornPoint)
     : this()
 {
     this._User = _User;
     this._BornPoint = _BornPoint;
 }
Exemplo n.º 5
0
 public BotCreateActorStage(Regulus.Project.SamebestKeys.IUser _User, string account)
 {
     _Account = account;
     this._User = _User;
 }
Exemplo n.º 6
0
 public Bot(Regulus.Project.SamebestKeys.IUser user,string account)
 {
     _Machine = new Regulus.Utility.StageMachine();
     this._User = user;
     _Account = account;
 }
Exemplo n.º 7
0
 public BotMapStage(Regulus.Project.SamebestKeys.IUser _User)
 {
     this._User = _User;
     _TimeCounter = new Regulus.Utility.TimeCounter();
     _Timeup = Regulus.Utility.Random.Next(1, 10);
 }
Exemplo n.º 8
0
 public BotRoomStage(Regulus.Project.SamebestKeys.IUser user)
 {
     _User = user;
 }