Example #1
0
 // Use this for initialization
 void Start()
 {
     sceneManager   = this.GetComponent <MySceneManager>();
     comboTimer     = this.GetComponent <ComboTimer>();
     scoreText.text = "Score: " +
                      sceneManager.score + "\nMoves: " +
                      sceneManager.numberOfMoves + "\nCombo Timer: " +
                      (int)comboTimer.comboEndTime
     ;
 }
Example #2
0
        public void DoComboTimer(Mobile from, TimeSpan delay)
        {
            if (this.m_ComboTimer != null)
            {
                this.m_ComboTimer.Stop();
            }

            this.m_ComboTimer = new ComboTimer(from, this, delay);

            this.m_ComboTimer.Start();
        }
        protected override void Setup64Bit(SigScanner scanner)
        {
            ComboTimer = scanner.GetStaticAddressFromSig("48 89 2D ?? ?? ?? ?? 85 C0 74 0F");

            GetIcon = scanner.ScanText("E8 ?? ?? ?? ?? 8B F8 3B DF");  // Client::Game::ActionManager.GetAdjustedActionId

            IsIconReplaceable = scanner.ScanText("81 F9 ?? ?? ?? ?? 7F 39 81 F9 ?? ?? ?? ??");

            GetActionCooldown = scanner.ScanText("E8 ?? ?? ?? ?? 0F 57 FF 48 85 C0");

            PluginLog.Verbose("===== H O T B A R S =====");
            PluginLog.Verbose($"GetIcon address   0x{GetIcon.ToInt64():X}");
            PluginLog.Verbose($"IsIconReplaceable 0x{IsIconReplaceable.ToInt64():X}");
            PluginLog.Verbose($"ComboTimer        0x{ComboTimer.ToInt64():X}");
            PluginLog.Verbose($"LastComboMove     0x{LastComboMove.ToInt64():X}");
        }
Example #4
0
        protected override void Setup64Bit(SigScanner scanner)
        {
            ComboTimer = scanner.GetStaticAddressFromSig("E8 ?? ?? ?? ?? 80 7E 21 00", 0x178);

            // this.GetIcon = scanner.ScanText("48 89 5c 24 08 48 89 6c 24 10 48 89 74 24 18 57 48 83 ec 30 8b da be dd 1c 00 00 bd d3 0d 00 00");  // 5.35
            GetIcon = scanner.ScanText("E8 ?? ?? ?? ?? 8B F8 3B DF"); // 5.4

            // this.IsIconReplaceable = scanner.ScanText("81 f9 2e 01 00 00 7f 39 81 f9 2d 01 00 00 0f 8d 11 02 00 00 83 c1 eb");  // 5.35
            IsIconReplaceable = scanner.ScanText("81 F9 ?? ?? ?? ?? 7F 39 81 F9 ?? ?? ?? ??"); // 5.4

            BuffVTableAddr = scanner.GetStaticAddressFromSig("48 89 05 ?? ?? ?? ?? 88 05 ?? ?? ?? ?? 88 05 ?? ?? ?? ??");

            PluginLog.Verbose("===== H O T B A R S =====");
            PluginLog.Verbose($"GetIcon address   0x{GetIcon.ToInt64():X}");
            PluginLog.Verbose($"IsIconReplaceable 0x{IsIconReplaceable.ToInt64():X}");
            PluginLog.Verbose($"ComboTimer        0x{ComboTimer.ToInt64():X}");
            PluginLog.Verbose($"LastComboMove     0x{LastComboMove.ToInt64():X}");
        }
Example #5
0
 private void Start()
 {
     sceneManager = this.GetComponent <MySceneManager>();
     comboTimer   = this.GetComponent <ComboTimer>();
 }
        public void DoComboTimer(Mobile from, TimeSpan delay)
        {
            if ( m_ComboTimer != null )
                m_ComboTimer.Stop();

            m_ComboTimer = new ComboTimer(from, this, delay);

            m_ComboTimer.Start();
        }
Example #7
0
 public void OnEnable()
 {
     instance = this;
     StartCoroutine(ComboChecker());
 }