Ejemplo n.º 1
0
 public StartMirrorTimer(MirrorTimerType timer, int value, int maxValue, int scale, int spellID, bool paused) : base(ServerOpcodes.StartMirrorTimer)
 {
     Timer    = timer;
     Value    = value;
     MaxValue = maxValue;
     Scale    = scale;
     SpellID  = spellID;
     Paused   = paused;
 }
Ejemplo n.º 2
0
 public StopMirrorTimer(MirrorTimerType timer) : base(ServerOpcodes.StopMirrorTimer)
 {
     Timer = timer;
 }
Ejemplo n.º 3
0
 public PauseMirrorTimer(MirrorTimerType timer, bool paused) : base(ServerOpcodes.PauseMirrorTimer)
 {
     Timer  = timer;
     Paused = paused;
 }