Yoko

All sides of Injection
It is currently 2026-01-18 10:11:47

All times are UTC+02:00




Post new topic  This topic is locked, you cannot edit posts or make further replies.  [ 14 posts ] 
Author Message
 Post subject: Как.....
PostPosted: 2005-02-01 12:09:16 
Offline
User avatar

Joined: 2005-01-13 08:40:40
Posts: 56
Как к этому скрипту ещё медитацию прибавить??
sub a()
while UO.Count('0x1F37','0x0000') > 0
uo.waittargetself()
uo.usetype('0x1F37','0x0000')
wait(1000)
wend
end sub


Top
   
 
 Post subject:
PostPosted: 2005-02-01 13:11:35 
Offline
User avatar

Joined: 2004-12-29 15:16:45
Posts: 112
для кого темы "Скрипты..." прикреплены?
Ояень советую заглядывать туда и в поиск: http://yoko.netroof.net/forum/viewtopic ... 4838#14838


Top
   
 
 Post subject: Re: Как.....
PostPosted: 2005-02-01 13:13:16 
Offline
User avatar

Joined: 2004-12-29 15:16:45
Posts: 112
Попробуй так
Code:
sub a() 
while UO.Count('0x1F37','0x0000') > 0
   uo.waittargetself()
   uo.usetype('0x1F37','0x0000')
   wait(1000)
wend

Repeat
uo.deletejournal()
uo.useskill('Meditation')
Wait(3000)
Until UO.InJournal("You must wait to perform another action") or uo.mana >= uo.int

While uo.mana < uo.int
Wait(100)
Wend
Wait(100)

Wend
end sub


Top
   
 
 Post subject: Re: Как.....
PostPosted: 2005-02-01 13:20:58 
Offline
User avatar

Joined: 2005-01-13 08:40:40
Posts: 56
JIupus wrote:
Попробуй так
Code:
sub a() 
while UO.Count('0x1F37','0x0000') > 0
   uo.waittargetself()
   uo.usetype('0x1F37','0x0000')
   wait(1000)
wend

Repeat
uo.deletejournal()
uo.useskill('Meditation')
Wait(3000)
Until UO.InJournal("You must wait to perform another action") or uo.mana >= uo.int
While uo.mana < uo.int
Wait(100)
Wend
Wait(100)

Wend
end sub

Не....Не работает медитациа.


Top
   
 
 Post subject: Re: Как.....
PostPosted: 2005-02-01 13:32:58 
Offline
User avatar

Joined: 2004-12-29 15:16:45
Posts: 112
Так должна работать
Code:
sub a() 
while UO.Count('0x1F37','0x0000') > 0
   uo.waittargetself()
   uo.usetype('0x1F37','0x0000')
   wait(1000)
wend

      while UO.Mana<UO.Int
         LastTimer=UO.Timer()
         UO.UseSkill('Meditation')
         repeat
            wait(100)
         until UO.InJournal("You are") OR UO.InJournal("You lose") OR UO.Timer()>LastTimer+200
         UO.DeleteJournal()
         wait(2000)
      wend
end sub


Top
   
 
 Post subject: Re: Как.....
PostPosted: 2005-02-01 13:39:05 
Offline
User avatar

Joined: 2005-01-13 08:40:40
Posts: 56
JIupus wrote:
Так должна работать
Code:
sub a() 
while UO.Count('0x1F37','0x0000') > 0
   uo.waittargetself()
   uo.usetype('0x1F37','0x0000')
   wait(1000)
wend

      while UO.Mana<UO.Int
         LastTimer=UO.Timer()
         UO.UseSkill('Meditation')
         repeat
            wait(100)
         until UO.InJournal("You are") OR UO.InJournal("You lose") OR UO.Timer()>LastTimer+200
         UO.DeleteJournal()
         wait(2000)
      wend
end sub

"Line 13: Variable undefind-LASTTIMER


Top
   
 
 Post subject: Re: Как.....
PostPosted: 2005-02-01 14:10:43 
Offline
Sphere expert
User avatar

Joined: 2004-10-01 08:27:38
Posts: 1143
Location: Уфа
Code:
sub a() 
Var LastTimer
while UO.Count('0x1F37','0x0000') > 0
   uo.waittargetself()
   uo.usetype('0x1F37','0x0000')
   wait(1000)
wend

      while UO.Mana<UO.Int
         LastTimer=UO.Timer()
         UO.UseSkill('Meditation')
         repeat
            wait(100)
         until UO.InJournal("You are") OR UO.InJournal("You lose") OR UO.Timer()>LastTimer+200
         UO.DeleteJournal()
         wait(2000)
      wend
end sub

_________________
Сделал дело - флуди смело !!!


Top
   
 
 Post subject: Re: Как.....
PostPosted: 2005-02-01 14:58:35 
Offline
User avatar

Joined: 2005-01-13 08:40:40
Posts: 56
Askaneli wrote:
Code:
sub a() 
Var LastTimer
while UO.Count('0x1F37','0x0000') > 0
   uo.waittargetself()
   uo.usetype('0x1F37','0x0000')
   wait(1000)
wend

      while UO.Mana<UO.Int
         LastTimer=UO.Timer()
         UO.UseSkill('Meditation')
         repeat
            wait(100)
         until UO.InJournal("You are") OR UO.InJournal("You lose") OR UO.Timer()>LastTimer+200
         UO.DeleteJournal()
         wait(2000)
      wend
end sub

Не как не медитирует...=((((


Top
   
 
 Post subject: Re: Как.....
PostPosted: 2005-02-01 15:03:10 
Offline
Expert!
User avatar

Joined: 2004-07-04 00:14:58
Posts: 1284
Ekkie wrote:
Askaneli wrote:
Code:
sub a() 
Var LastTimer
while UO.Count('0x1F37','0x0000') > 0
   uo.waittargetself()
   uo.usetype('0x1F37','0x0000')
   wait(1000)
while UO.Mana<UO.Int
         LastTimer=UO.Timer()
         UO.UseSkill('Meditation')
         repeat
            wait(100)
         until UO.InJournal("You are") OR UO.InJournal("You lose") OR UO.Timer()>LastTimer+200
         UO.DeleteJournal()
         wait(2000)
      wend

wend
end sub

Не как не медитирует...=((((
ну промазал человек ;) теперь прально.


Top
   
 
 Post subject: Re: Как.....
PostPosted: 2005-02-01 15:16:33 
Offline
User avatar

Joined: 2005-01-13 08:40:40
Posts: 56
Sfagnum wrote:
Ekkie wrote:
Askaneli wrote:
Code:
sub a() 
Var LastTimer
while UO.Count('0x1F37','0x0000') > 0
   uo.waittargetself()
   uo.usetype('0x1F37','0x0000')
   wait(1000)
while UO.Mana<UO.Int
         LastTimer=UO.Timer()
         UO.UseSkill('Meditation')
         repeat
            wait(100)
         until UO.InJournal("You are") OR UO.InJournal("You lose") OR UO.Timer()>LastTimer+200
         UO.DeleteJournal()
 
         wait(2000)
      wend

wend
end sub

Не как не медитирует...=((((
ну промазал человек ;) теперь прально.

Ура !!! Ти мои спасител!!!


Top
   
 
 Post subject: Re: Как.....
PostPosted: 2005-02-01 15:30:19 
Offline
Sphere expert
User avatar

Joined: 2004-10-01 08:27:38
Posts: 1143
Location: Уфа
Sfagnum wrote:
Ekkie wrote:
Askaneli wrote:
Code:
sub a() 
Var LastTimer
while UO.Count('0x1F37','0x0000') > 0
   uo.waittargetself()
   uo.usetype('0x1F37','0x0000')
   wait(1000)
while UO.Mana<UO.Int
         LastTimer=UO.Timer()
         UO.UseSkill('Meditation')
         repeat
            wait(100)
         until UO.InJournal("You are") OR UO.InJournal("You lose") OR UO.Timer()>LastTimer+200
         UO.DeleteJournal()
         wait(2000)
      wend

wend
end sub

Не как не медитирует...=((((
ну промазал человек ;) теперь прально.

Я исправлял Var LastTimer поставил
В циклы не вникал !!!

_________________
Сделал дело - флуди смело !!!


Top
   
 
 Post subject: Re: Как.....
PostPosted: 2005-02-01 15:51:50 
Offline
Expert!
User avatar

Joined: 2004-07-04 00:14:58
Posts: 1284
Askaneli wrote:
Я исправлял Var LastTimer поставил
В циклы не вникал !!!
будешь теперь отмазываться :lol:


Top
   
 
 Post subject: Re: Как.....
PostPosted: 2005-02-02 06:11:09 
Offline
Sphere expert
User avatar

Joined: 2004-10-01 08:27:38
Posts: 1143
Location: Уфа
Sfagnum wrote:
Askaneli wrote:
Я исправлял Var LastTimer поставил
В циклы не вникал !!!
будешь теперь отмазываться :lol:

Такой вот я !!!

_________________
Сделал дело - флуди смело !!!


Top
   
 
 Post subject:
PostPosted: 2005-02-02 11:42:32 
Offline
Expert!
User avatar

Joined: 2004-05-31 09:31:51
Posts: 838
Болтуны )))) топик Клоуз

_________________
Все просто.
BETEPAH ™


Top
   
 
Display posts from previous:  Sort by  
Post new topic  This topic is locked, you cannot edit posts or make further replies.  [ 14 posts ] 

All times are UTC+02:00


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Limited