CampahApp.Interaction.GotoBidMenu C# (CSharp) 메소드

GotoBidMenu() 개인적인 메소드

private GotoBidMenu ( ) : void
리턴 void
        private void GotoBidMenu()
        {
            CloseMenu();
            while (!IsTargetValid(FFACEInstance.Instance.Target.Name) || FFACEInstance.Instance.NPC.Distance((short)FFACEInstance.Instance.Target.ID) >= 6.0)
            {
                FFACEInstance.Instance.Windower.SendKeyPress(KeyCode.TabKey);
                Thread.Sleep((int)CampahStatus.Instance.GlobalDelay);
            }
            FFACEInstance.Instance.Windower.SendKeyPress(KeyCode.NP_EnterKey);
            Thread.Sleep((int)CampahStatus.Instance.GlobalDelay * 4);
            AuctionHouse.MenuIndex = 1;
            Thread.Sleep((int)CampahStatus.Instance.GlobalDelay);
            FFACEInstance.Instance.Windower.SendKeyPress(KeyCode.NP_EnterKey);
            Thread.Sleep((int)CampahStatus.Instance.GlobalDelay);
            _currentAddress.Clear();
            _currentAddress.Push(1);
        }