Example #1
0
        private void PreparePrelims()
        {
            BotForm = new BotInterface(this)
            {
                MdiParent = Collections.ParentForm
            };
            BotForm.Show();
            BotForm.Text = Attributes.PlayerName;

            GameActions.Refresh(Client, (a, b) => true);
            GameActions.Refresh(Client, (a, b) => true);

            Client.ReleaseMovementLock();
        }
Example #2
0
        private void PreparePrelims()
        {
            BotForm = new BotInterface(this)
            {
                MdiParent = Collections.ParentForm
            };
            BotForm.Show();
            BotForm.Text = Attributes.PlayerName;

            GameActions.Refresh(Client, true, (a, b) => true);
            GameActions.Refresh(Client, true, (a, b) => true);


            //disable blind effects in client.
            if (_memory.Read <byte>((IntPtr)DAStaticPointers.NoBlind, false) != 0x75)
            {
                _memory.Write <byte>((IntPtr)DAStaticPointers.NoBlind, 0x75, false);
            }



            Client.ReleaseMovementLock();
        }