Hide - Stealth

Ask for scripts here

Moderators: Murderator+, Murderator

Post Reply
murdoc89
Posts: 2
Joined: 2008-08-07 22:44:52

Hide - Stealth

Post by murdoc89 »

Нужен скрипт на хайд + стелс .Тоесть встал в хайд подождал 10 сек , если не встал то повтор хайда , если встал - то стелс , если стелс удачно то опять стелс ,..... я такого плана не могу найти в поисковике .
Если не утруждает , прошу помочь. Заранее благодарен.
murdoc89
Posts: 2
Joined: 2008-08-07 22:44:52

Re: Hide - Stealth

Post by murdoc89 »

ап
lpushech
Posts: 33
Joined: 2007-09-02 19:16:55

Post by lpushech »

Code: Select all

sub Stealth()
   var i=1
   repeat
      for i=1 to 8
         if not uo.hidden() then
            UO.DeleteJournal()
            UO.UseSkill("Hiding")
            Repeat
               Wait(10)
            Until UO.InJournal("You have hidden yourself well") or UO.InJournal("You can't seem to hide here.")
         end if
         uo.press(35)
         wait(200)
      next
      for i=1 to 8
         if not uo.hidden() then
            UO.DeleteJournal()
            UO.UseSkill("Hiding")
            Repeat
               Wait(10)
            Until UO.InJournal("You have hidden yourself well") or UO.InJournal("You can't seem to hide here.")
         end if
         uo.press(33)
         wait(200)
      next
      Wait(100)
   until UO.Dead()
end sub


попробуй этот
lobik
Posts: 10
Joined: 2007-12-06 11:00:24

Post by lobik »

sub hiding()
UO.Print('в хайд')

UO.UseSkill('Hiding')
VAR i = 1
While i < 5
If UO.InJournal("You have hidden yourself well") Then
wait(600)
stealth()
Else
wait(2500)
UO.print('alibaba')
Endif
i = i + 1
Wend
end sub

sub stealth()
UO.DeleteJournal()
VAR i = 1
While i < 100
UO.Print('I Mig 35')
UO.UseSkill('Stealth')
If UO.InJournal('You have revealed yourself') or UO.InJournal('You must be hidden to use Stealth') Then
wait(100)
hiding()
Else
wait(7500)
Endif
i = i + 1
Wend
end sub
Post Reply