Yoko

All sides of Injection
It is currently 2025-10-17 23:46:37

All times are UTC+02:00




Post new topic  Reply to topic  [ 13 posts ] 
Author Message
PostPosted: 2009-01-27 23:13:10 
Offline

Joined: 2009-01-06 21:20:02
Posts: 16
Приветствую всех ..
Не надеюсь но поробую :D
Имеется скрипт на автомедитацию..

sub autoMedit()
var LastTimer
while not uo.Dead()
uo.DeleteJournal()
while uo.Mana >=4
wait (100)
wend
while uo.Mana <=4
LastTimer=uo.Timer()
if uo.Warmode()==1 then
uo.WarMode(0)
uo.UseSkill('Meditation')
repeat
wait(100)
until uo.InJournal("You are") or uo.InJournal("You lose") or uo.InJournal("You stop") or uo.Timer()>LastTimer+200
uo.DeleteJournal()
wend
wend
end if
end sub

Мучился пытался сам , но понял что не смогу наверно сам все сделать верно..

Прошу Вас подправить данный скрипт , в частности замутка такая , чар в варе тут проходит Мана вампир или Мана драйн и мана становится 0 , так вот хотелось бы чтоб чар выключал вар , включал медитацию , медитировал до 4-5 маны (чтоб хватало на стрелку) и опять атачил по ласттаргету..
Был бы очень признателен за Вашу подправку..
Заранее спасибо.. :D


Top
   
 Post subject:
PostPosted: 2009-01-28 09:50:05 
Offline
Expert!
User avatar

Joined: 2004-04-04 11:13:54
Posts: 1205
Location: Балаково, Саратовская обл.
Code:
sub autoMedit() 
   var LastTimer
   
   while not uo.Dead()
      uo.DeleteJournal()
      while uo.Mana >= 4
         wait (200)
      wend

      while uo.Mana < 4
         LastTimer=uo.Timer()
         if uo.Warmode()==1 then
            uo.Exec('warMode 0')
            uo.UseSkill('Meditation')
            repeat
               wait(100)
            until uo.InJournal("You") or uo.Timer()>LastTimer+200
         end if
      wend
      uo.Exec('warMode 1')
      UO.Attack('lasttarget') ;лучше атачить по ластатак, ласттаргет будешь сам после стрелки
   wend
end sub


Top
   
 Post subject:
PostPosted: 2009-01-28 17:52:02 
Offline

Joined: 2009-01-06 21:20:02
Posts: 16
Все бы хорошо , но не выключет вар :( и не атачит .. :roll:


Top
   
 Post subject:
PostPosted: 2009-01-28 18:43:17 
Offline
Expert!
User avatar

Joined: 2004-04-04 11:13:54
Posts: 1205
Location: Балаково, Саратовская обл.
Что значит "всё бы хорошо"?
попробуй так.
Code:
sub autoMedit() 
   var LastTimer
   
   while not uo.Dead()
      uo.DeleteJournal()
      while uo.Mana >= 4
         wait (200)
      wend

      while uo.Mana < 4
         LastTimer=uo.Timer()
         uo.Exec('warmode 0')
         uo.UseSkill('Meditation')
         repeat
        wait(100)
         until uo.InJournal("You") or uo.Timer()>LastTimer+200
      wend
      uo.Exec('warmode 1')
      UO.Attack('lastattack')
   wend
end sub


Top
   
 Post subject:
PostPosted: 2009-03-17 09:16:45 
Offline

Joined: 2009-01-06 21:20:02
Posts: 16
:? Не помогло всеравно не хочет..
Если только в ручную отключаешь вар - начинает медитировать ..
И не атачит чара..


Top
   
 Post subject:
PostPosted: 2009-04-03 14:12:33 
Offline

Joined: 2009-01-06 21:20:02
Posts: 16
Уважаемые , прошу помощи.. :)


Top
   
 Post subject:
PostPosted: 2009-04-03 14:41:19 
Offline
Expert!
User avatar

Joined: 2004-04-04 11:13:54
Posts: 1205
Location: Балаково, Саратовская обл.
Попробуй в клиенте ,warmode 1 ,warmode 0


Top
   
 Post subject:
PostPosted: 2009-04-03 19:06:18 
Offline

Joined: 2009-01-06 21:20:02
Posts: 16
Странно пишет неизвестная команда :(


Top
   
 Post subject:
PostPosted: 2009-04-04 15:01:16 
Offline
Expert!
User avatar

Joined: 2004-04-04 11:13:54
Posts: 1205
Location: Балаково, Саратовская обл.
Я так думаю что форумом ошибся. Наверное разор стоит а не инжект :D


Top
   
 Post subject:
PostPosted: 2009-04-04 18:38:57 
Offline

Joined: 2009-01-06 21:20:02
Posts: 16
Да нет не ощибся стоит инж 312,19 версия.. :roll:


Top
   
 Post subject:
PostPosted: 2009-04-05 09:59:00 
Offline
Expert!
User avatar

Joined: 2004-04-04 11:13:54
Posts: 1205
Location: Балаково, Саратовская обл.
Смешно. А чего же ты тогда другие новые команды не пытаешься использовать?


Top
   
 Post subject:
PostPosted: 2009-04-05 12:43:55 
Offline

Joined: 2008-08-12 20:21:55
Posts: 7
Code:
sub autoMedit() 
   var LastTimer
   
   while not uo.Dead()
      uo.DeleteJournal()
      while uo.Mana >= 4
         wait (200)
      wend

      while uo.Mana < 4
         LastTimer=uo.Timer()
         uo.Press(9)
         uo.UseSkill('Meditation')
         repeat
        wait(100)
         until uo.InJournal("You") or uo.Timer()>LastTimer+200
      wend
      uo.Press(9)
      UO.Attack('lastattack')
   wend
end sub

Может так ?


Top
   
 Post subject:
PostPosted: 2009-04-08 11:09:51 
Offline

Joined: 2009-01-06 21:20:02
Posts: 16
Играю на клиенте 2 0 3 , на удивление эта версия не крашит , другие проБывал но краш каждые 5-10 минут стаБильно , может и не в инжекте дело но эта версия устраивает полностью.. :?


Top
   
Display posts from previous:  Sort by  
Post new topic  Reply to topic  [ 13 posts ] 

All times are UTC+02:00


Who is online

Users browsing this forum: No registered users and 2 guests


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