Detect Hiden - train

Datum: 20/06/2012 23:39:31

Staženo: 732x

Popis:


Hodnocení: 3.8/10 (154 hlasy)

Download file:cs

Příkazy:

  • ,exec deteckhidtrening

Kód:

 [Executable]
        public void DeteckHidTrening()
        {
            while (!World.Player.Dead)
            {                
                using (JournalEventWaiter waiter = new JournalEventWaiter(true, "You can see nothing hidden there.", "You find", "You are preoccupied with thoughts of battle."))
                  {                    
                      UO.Print("Detekuji ...");
                      UO.UseSkill("Detecting Hidden");
                      UO.Wait(500);                                           
                      if (!waiter.Wait(10000)) UO.PrintWarning("Waiting for Skill timeout.");
                  }            
            }          
        }